Class: Aws::CloudFormation::Types::DescribeStackSetOperationInput

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

{
  stack_set_name: "StackSetName", # required
  operation_id: "ClientRequestToken", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#operation_idString

The unique ID of the stack set operation.

Returns:

  • (String)


2274
2275
2276
2277
2278
# File 'lib/aws-sdk-cloudformation/types.rb', line 2274

class DescribeStackSetOperationInput < Struct.new(
  :stack_set_name,
  :operation_id)
  include Aws::Structure
end

#stack_set_nameString

The name or the unique stack ID of the stack set for the stack operation.

Returns:

  • (String)


2274
2275
2276
2277
2278
# File 'lib/aws-sdk-cloudformation/types.rb', line 2274

class DescribeStackSetOperationInput < Struct.new(
  :stack_set_name,
  :operation_id)
  include Aws::Structure
end