[][src]Struct rusoto_cloudformation::StackSet

pub struct StackSet {
    pub administration_role_arn: Option<String>,
    pub capabilities: Option<Vec<String>>,
    pub description: Option<String>,
    pub execution_role_name: Option<String>,
    pub parameters: Option<Vec<Parameter>>,
    pub stack_set_arn: Option<String>,
    pub stack_set_id: Option<String>,
    pub stack_set_name: Option<String>,
    pub status: Option<String>,
    pub tags: Option<Vec<Tag>>,
    pub template_body: Option<String>,
}

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.

Fields

The Amazon Resource Number (ARN) of the IAM role used to create or update the stack set.

Use customized administrator roles to control which users or groups can manage specific stack sets within the same administrator account. For more information, see Prerequisites: Granting Permissions for Stack Set Operations in the AWS CloudFormation User Guide.

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.

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

The name of the IAM execution role used to create or update the stack set.

Use customized execution roles to control which stack resources users and groups can include in their stack sets.

A list of input parameters for a stack set.

The Amazon Resource Number (ARN) of the stack set.

The ID of the stack set.

The name that's associated with the stack set.

The status of the stack set.

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

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

Trait Implementations

impl Default for StackSet
[src]

Returns the "default value" for a type. Read more

impl PartialEq<StackSet> for StackSet
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for StackSet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for StackSet
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for StackSet

impl Sync for StackSet

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut for T where
    T: ?Sized
[src]

Mutably borrows from an owned value. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> Same for T

Should always be Self

impl<T> Erased for T