#[non_exhaustive]
pub struct StackSet {
Show 16 fields pub stack_set_name: Option<String>, pub stack_set_id: Option<String>, pub description: Option<String>, pub status: Option<StackSetStatus>, pub template_body: Option<String>, pub parameters: Option<Vec<Parameter>>, pub capabilities: Option<Vec<Capability>>, pub tags: Option<Vec<Tag>>, pub stack_set_arn: Option<String>, pub administration_role_arn: Option<String>, pub execution_role_name: Option<String>, pub stack_set_drift_detection_details: Option<StackSetDriftDetectionDetails>, pub auto_deployment: Option<AutoDeployment>, pub permission_model: Option<PermissionModels>, pub organizational_unit_ids: Option<Vec<String>>, pub managed_execution: Option<ManagedExecution>,
}
Expand description

A structure that contains information about a stack set. A stack set enables you to provision stacks into Amazon Web Services accounts and across Regions by using a single CloudFormation template. In the stack set, you specify the template to use, in addition to any parameters and capabilities that the template requires.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
stack_set_name: Option<String>

The name that's associated with the stack set.

stack_set_id: Option<String>

The ID of the stack set.

description: Option<String>

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

status: Option<StackSetStatus>

The status of the stack set.

template_body: Option<String>

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

parameters: Option<Vec<Parameter>>

A list of input parameters for a stack set.

capabilities: Option<Vec<Capability>>

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

tags: Option<Vec<Tag>>

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

stack_set_arn: Option<String>

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

administration_role_arn: Option<String>

The Amazon Resource Name (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 CloudFormation User Guide.

execution_role_name: Option<String>

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.

stack_set_drift_detection_details: Option<StackSetDriftDetectionDetails>

Detailed information about the drift status of the stack set.

For stack sets, contains information about the last completed drift operation performed on the stack set. Information about drift operations currently in progress isn't included.

auto_deployment: Option<AutoDeployment>

[Service-managed permissions] Describes whether StackSets automatically deploys to Organizations accounts that are added to a target organization or organizational unit (OU).

permission_model: Option<PermissionModels>

Describes how the IAM roles required for stack set operations are created.

organizational_unit_ids: Option<Vec<String>>

[Service-managed permissions] The organization root ID or organizational unit (OU) IDs that you specified for DeploymentTargets.

managed_execution: Option<ManagedExecution>

Describes whether StackSets performs non-conflicting operations concurrently and queues conflicting operations.

Implementations

The name that's associated with the stack set.

The ID of the stack set.

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

The status of the stack set.

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

A list of input parameters for a stack set.

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

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

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

The Amazon Resource Name (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 CloudFormation User Guide.

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.

Detailed information about the drift status of the stack set.

For stack sets, contains information about the last completed drift operation performed on the stack set. Information about drift operations currently in progress isn't included.

[Service-managed permissions] Describes whether StackSets automatically deploys to Organizations accounts that are added to a target organization or organizational unit (OU).

Describes how the IAM roles required for stack set operations are created.

[Service-managed permissions] The organization root ID or organizational unit (OU) IDs that you specified for DeploymentTargets.

Describes whether StackSets performs non-conflicting operations concurrently and queues conflicting operations.

Creates a new builder-style object to manufacture StackSet

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

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

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more