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
A string that identifies the next page of stack resource drift results.
-
#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.
3062 3063 3064 3065 3066 3067 3068 3069 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 3062 class DescribeStackResourceDriftsInput < Struct.new( :stack_name, :stack_resource_drift_status_filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A string that identifies the next page of stack resource drift results.
3062 3063 3064 3065 3066 3067 3068 3069 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 3062 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.
3062 3063 3064 3065 3066 3067 3068 3069 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 3062 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.
3062 3063 3064 3065 3066 3067 3068 3069 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 3062 class DescribeStackResourceDriftsInput < Struct.new( :stack_name, :stack_resource_drift_status_filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |