Class: Aws::CloudFormation::Types::DetectStackDriftInput

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

{
  stack_name: "StackNameOrId", # required
  logical_resource_ids: ["LogicalResourceId"],
}

Instance Attribute Summary collapse

Instance Attribute Details

#logical_resource_idsArray<String>

The logical names of any resources you want to use as filters.

Returns:

  • (Array<String>)


2282
2283
2284
2285
2286
# File 'lib/aws-sdk-cloudformation/types.rb', line 2282

class DetectStackDriftInput < Struct.new(
  :stack_name,
  :logical_resource_ids)
  include Aws::Structure
end

#stack_nameString

The name of the stack for which you want to detect drift.

Returns:

  • (String)


2282
2283
2284
2285
2286
# File 'lib/aws-sdk-cloudformation/types.rb', line 2282

class DetectStackDriftInput < Struct.new(
  :stack_name,
  :logical_resource_ids)
  include Aws::Structure
end