Class: Aws::CloudFormation::Types::DetectStackResourceDriftInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::DetectStackResourceDriftInput
- Defined in:
- gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb
Overview
Note:
When making an API call, you may pass DetectStackResourceDriftInput data as a hash:
{
stack_name: "StackNameOrId", # required
logical_resource_id: "LogicalResourceId", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#logical_resource_id ⇒ String
The logical name of the resource for which to return drift information.
-
#stack_name ⇒ String
The name of the stack to which the resource belongs.
Instance Attribute Details
#logical_resource_id ⇒ String
The logical name of the resource for which to return drift information.
2916 2917 2918 2919 2920 2921 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 2916 class DetectStackResourceDriftInput < Struct.new( :stack_name, :logical_resource_id) SENSITIVE = [] include Aws::Structure end |
#stack_name ⇒ String
The name of the stack to which the resource belongs.
2916 2917 2918 2919 2920 2921 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 2916 class DetectStackResourceDriftInput < Struct.new( :stack_name, :logical_resource_id) SENSITIVE = [] include Aws::Structure end |