Class: Aws::CloudFormation::Types::DescribeStackResourceDriftsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::DescribeStackResourceDriftsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results to be returned with a single call.
-
#next_token ⇒ String
The token for the next set of items to return.
-
#stack_name ⇒ String
The name of the stack for which you want drift information.
-
#stack_resource_drift_status_filters ⇒ Array<String>
The resource drift status values to use as filters for the resource drift results returned.
Instance Attribute Details
#max_results ⇒ Integer
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.
3398 3399 3400 3401 3402 3403 3404 3405 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 3398 class DescribeStackResourceDriftsInput < Struct.new( :stack_name, :stack_resource_drift_status_filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token for the next set of items to return. (You received this token from a previous call.)
3398 3399 3400 3401 3402 3403 3404 3405 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 3398 class DescribeStackResourceDriftsInput < Struct.new( :stack_name, :stack_resource_drift_status_filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#stack_name ⇒ String
The name of the stack for which you want drift information.
3398 3399 3400 3401 3402 3403 3404 3405 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 3398 class DescribeStackResourceDriftsInput < Struct.new( :stack_name, :stack_resource_drift_status_filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#stack_resource_drift_status_filters ⇒ Array<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 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.
3398 3399 3400 3401 3402 3403 3404 3405 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 3398 class DescribeStackResourceDriftsInput < Struct.new( :stack_name, :stack_resource_drift_status_filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |