You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CloudFormation::Types::DescribeStackResourceDriftsInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DescribeStackResourceDriftsInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  stack_name: "StackNameOrId", # required
  stack_resource_drift_status_filters: ["IN_SYNC"], # accepts IN_SYNC, MODIFIED, DELETED, NOT_CHECKED
  next_token: "NextToken",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

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.

Returns:

  • (Integer)

    The maximum number of results to be returned with a single call.

#next_tokenString

A string that identifies the next page of stack resource drift results.

Returns:

  • (String)

    A string that identifies the next page of stack resource drift results.

#stack_nameString

The name of the stack for which you want drift information.

Returns:

  • (String)

    The name of the stack for which you want drift information.

#stack_resource_drift_status_filtersArray<String>

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.

Returns:

  • (Array<String>)

    The resource drift status values to use as filters for the resource drift results returned.