Class: Aws::CloudFormation::Types::StackSet

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudformation/types.rb

Overview

A structure that contains information about a stack set. A stack set enables you to provision stacks into AWS accounts and across regions by using a single CloudFormation template. In the stack set, you specify the template to use, as well as any parameters and capabilities that the template requires.

Instance Attribute Summary collapse

Instance Attribute Details

#capabilitiesArray<String>

The capabilities that are allowed in the stack set. Some stack set templates might include resources that can affect permissions in your AWS account—for example, by creating new AWS Identity and Access Management (IAM) users. For more information, see

Acknowledging IAM Resources in AWS CloudFormation Templates.][1

[1]: docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities

Returns:

  • (Array<String>)


3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
# File 'lib/aws-sdk-cloudformation/types.rb', line 3808

class StackSet < Struct.new(
  :stack_set_name,
  :stack_set_id,
  :description,
  :status,
  :template_body,
  :parameters,
  :capabilities,
  :tags)
  include Aws::Structure
end

#descriptionString

A description of the stack set that you specify when the stack set is created or updated.

Returns:

  • (String)


3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
# File 'lib/aws-sdk-cloudformation/types.rb', line 3808

class StackSet < Struct.new(
  :stack_set_name,
  :stack_set_id,
  :description,
  :status,
  :template_body,
  :parameters,
  :capabilities,
  :tags)
  include Aws::Structure
end

#parametersArray<Types::Parameter>

A list of input parameters for a stack set.

Returns:



3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
# File 'lib/aws-sdk-cloudformation/types.rb', line 3808

class StackSet < Struct.new(
  :stack_set_name,
  :stack_set_id,
  :description,
  :status,
  :template_body,
  :parameters,
  :capabilities,
  :tags)
  include Aws::Structure
end

#stack_set_idString

The ID of the stack set.

Returns:

  • (String)


3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
# File 'lib/aws-sdk-cloudformation/types.rb', line 3808

class StackSet < Struct.new(
  :stack_set_name,
  :stack_set_id,
  :description,
  :status,
  :template_body,
  :parameters,
  :capabilities,
  :tags)
  include Aws::Structure
end

#stack_set_nameString

The name that’s associated with the stack set.

Returns:

  • (String)


3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
# File 'lib/aws-sdk-cloudformation/types.rb', line 3808

class StackSet < Struct.new(
  :stack_set_name,
  :stack_set_id,
  :description,
  :status,
  :template_body,
  :parameters,
  :capabilities,
  :tags)
  include Aws::Structure
end

#statusString

The status of the stack set.

Returns:

  • (String)


3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
# File 'lib/aws-sdk-cloudformation/types.rb', line 3808

class StackSet < Struct.new(
  :stack_set_name,
  :stack_set_id,
  :description,
  :status,
  :template_body,
  :parameters,
  :capabilities,
  :tags)
  include Aws::Structure
end

#tagsArray<Types::Tag>

A list of tags that specify information about the stack set. A maximum number of 50 tags can be specified.

Returns:



3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
# File 'lib/aws-sdk-cloudformation/types.rb', line 3808

class StackSet < Struct.new(
  :stack_set_name,
  :stack_set_id,
  :description,
  :status,
  :template_body,
  :parameters,
  :capabilities,
  :tags)
  include Aws::Structure
end

#template_bodyString

The structure that contains the body of the template that was used to create or update the stack set.

Returns:

  • (String)


3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
# File 'lib/aws-sdk-cloudformation/types.rb', line 3808

class StackSet < Struct.new(
  :stack_set_name,
  :stack_set_id,
  :description,
  :status,
  :template_body,
  :parameters,
  :capabilities,
  :tags)
  include Aws::Structure
end