Class: Aws::CloudFormation::Types::DeleteChangeSetInput

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

{
  change_set_name: "ChangeSetNameOrId", # required
  stack_name: "StackNameOrId",
}

The input for the DeleteChangeSet action.

Instance Attribute Summary collapse

Instance Attribute Details

#change_set_nameString

The name or Amazon Resource Name (ARN) of the change set that you want to delete.

Returns:

  • (String)


1354
1355
1356
1357
1358
# File 'lib/aws-sdk-cloudformation/types.rb', line 1354

class DeleteChangeSetInput < Struct.new(
  :change_set_name,
  :stack_name)
  include Aws::Structure
end

#stack_nameString

If you specified the name of a change set to delete, specify the stack name or ID (ARN) that is associated with it.

Returns:

  • (String)


1354
1355
1356
1357
1358
# File 'lib/aws-sdk-cloudformation/types.rb', line 1354

class DeleteChangeSetInput < Struct.new(
  :change_set_name,
  :stack_name)
  include Aws::Structure
end