Returns 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 AWS CloudFormation detects configuration drift.
cloudformation_describe_stack_resource_drifts(StackName,
StackResourceDriftStatusFilters, NextToken, MaxResults)
[required] The name of the stack for which you want drift information.
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 resources\'s actual configuration matches its
expected template configuration.
NOT_CHECKED
: AWS CloudFormation does not currently return this
value.
A string that identifies the next page of stack resource drift results.
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 NextToken
value that you can assign to the NextToken
request
parameter to get the next set of results.
svc$describe_stack_resource_drifts( StackName = "string", StackResourceDriftStatusFilters = list( "IN_SYNC"|"MODIFIED"|"DELETED"|"NOT_CHECKED" ), NextToken = "string", MaxResults = 123 )
For a given stack, there will be one StackResourceDrift
for each stack
resource that has been checked for drift. Resources that have not yet
been checked for drift are not included. Resources that do not currently
support drift detection are not checked, and so not included. For a list
of resources that support drift detection, see Resources that Support Drift Detection.
Use DetectStackResourceDrift to detect drift on individual resources, or DetectStackDrift to detect drift on all supported resources for a given stack.