Class: Aws::CloudFormation::Types::DetectStackResourceDriftInput

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 DetectStackResourceDriftInput data as a hash:

{
  stack_name: "StackNameOrId", # required
  logical_resource_id: "LogicalResourceId", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#logical_resource_idString

The logical name of the resource for which to return drift information.

Returns:

  • (String)


2323
2324
2325
2326
2327
# File 'lib/aws-sdk-cloudformation/types.rb', line 2323

class DetectStackResourceDriftInput < Struct.new(
  :stack_name,
  :logical_resource_id)
  include Aws::Structure
end

#stack_nameString

The name of the stack to which the resource belongs.

Returns:

  • (String)


2323
2324
2325
2326
2327
# File 'lib/aws-sdk-cloudformation/types.rb', line 2323

class DetectStackResourceDriftInput < Struct.new(
  :stack_name,
  :logical_resource_id)
  include Aws::Structure
end