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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudformation/types.rb

Overview

Note:

When making an API call, you may pass DescribeStackResourceDriftsInput data as a 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)


1982
1983
1984
1985
1986
1987
1988
# File 'lib/aws-sdk-cloudformation/types.rb', line 1982

class DescribeStackResourceDriftsInput < Struct.new(
  :stack_name,
  :stack_resource_drift_status_filters,
  :next_token,
  :max_results)
  include Aws::Structure
end

#next_tokenString

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

Returns:

  • (String)


1982
1983
1984
1985
1986
1987
1988
# File 'lib/aws-sdk-cloudformation/types.rb', line 1982

class DescribeStackResourceDriftsInput < Struct.new(
  :stack_name,
  :stack_resource_drift_status_filters,
  :next_token,
  :max_results)
  include Aws::Structure
end

#stack_nameString

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

Returns:

  • (String)


1982
1983
1984
1985
1986
1987
1988
# File 'lib/aws-sdk-cloudformation/types.rb', line 1982

class DescribeStackResourceDriftsInput < Struct.new(
  :stack_name,
  :stack_resource_drift_status_filters,
  :next_token,
  :max_results)
  include Aws::Structure
end

#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>)


1982
1983
1984
1985
1986
1987
1988
# File 'lib/aws-sdk-cloudformation/types.rb', line 1982

class DescribeStackResourceDriftsInput < Struct.new(
  :stack_name,
  :stack_resource_drift_status_filters,
  :next_token,
  :max_results)
  include Aws::Structure
end