Returns drift information for the resources that have been checked for drift in the specified stack
Source:R/cloudformation_operations.R
cloudformation_describe_stack_resource_drifts.RdReturns drift information for the resources that have been checked for drift in the specified stack. This includes actual and expected configuration values for resources where CloudFormation detects configuration drift.
See https://www.paws-r-sdk.com/docs/cloudformation_describe_stack_resource_drifts/ for full documentation.
Usage
cloudformation_describe_stack_resource_drifts(
StackName,
StackResourceDriftStatusFilters = NULL,
NextToken = NULL,
MaxResults = NULL
)Arguments
- StackName
[required] The name of the stack for which you want drift information.
- StackResourceDriftStatusFilters
The resource drift status values to use as filters for the resource drift results returned.
DELETED: The resource differs from its expected template configuration in that the resource has been deleted.MODIFIED: One or more resource properties differ from their expected template values.IN_SYNC: The resource's actual configuration matches its expected template configuration.NOT_CHECKED: CloudFormation doesn't currently return this value.UNKNOWN: CloudFormation could not run drift detection for the resource.
- NextToken
The token for the next set of items to return. (You received this token from a previous call.)
- MaxResults
The maximum number of results to be returned with a single call. If the number of available results exceeds this maximum, the response includes a
NextTokenvalue that you can assign to theNextTokenrequest parameter to get the next set of results.