StackSet

public struct StackSet : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • 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.

    Declaration

    Swift

    public let administrationRoleARN: String?
  • [Service-managed permissions] Describes whether StackSets automatically deploys to AWS Organizations accounts that are added to a target organization or organizational unit (OU).

    Declaration

    Swift

    public let autoDeployment: AutoDeployment?
  • 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.

    Declaration

    Swift

    public let capabilities: [Capability]?
  • A description of the stack set that you specify when the stack set is created or updated.

    Declaration

    Swift

    public let description: 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.

    Declaration

    Swift

    public let executionRoleName: String?
  • [Service-managed permissions] The organization root ID or organizational unit (OU) IDs that you specified for DeploymentTargets.

    Declaration

    Swift

    public let organizationalUnitIds: [String]?
  • A list of input parameters for a stack set.

    Declaration

    Swift

    public let parameters: [Parameter]?
  • Describes how the IAM roles required for stack set operations are created. With self-managed permissions, you must create the administrator and execution roles required to deploy to target accounts. For more information, see Grant Self-Managed Stack Set Permissions. With service-managed permissions, StackSets automatically creates the IAM roles required to deploy to accounts managed by AWS Organizations. For more information, see Grant Service-Managed Stack Set Permissions.

    Declaration

    Swift

    public let permissionModel: PermissionModels?
  • The Amazon Resource Number (ARN) of the stack set.

    Declaration

    Swift

    public let stackSetARN: String?
  • 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 is not included.

    Declaration

    Swift

    public let stackSetDriftDetectionDetails: StackSetDriftDetectionDetails?
  • The ID of the stack set.

    Declaration

    Swift

    public let stackSetId: String?
  • The name that’s associated with the stack set.

    Declaration

    Swift

    public let stackSetName: String?
  • The status of the stack set.

    Declaration

    Swift

    public let status: StackSetStatus?
  • A list of tags that specify information about the stack set. A maximum number of 50 tags can be specified.

    Declaration

    Swift

    public let tags: [Tag]?
  • The structure that contains the body of the template that was used to create or update the stack set.

    Declaration

    Swift

    public let templateBody: String?
  • Undocumented

    Declaration

    Swift

    public init(administrationRoleARN: String? = nil, autoDeployment: AutoDeployment? = nil, capabilities: [Capability]? = nil, description: String? = nil, executionRoleName: String? = nil, organizationalUnitIds: [String]? = nil, parameters: [Parameter]? = nil, permissionModel: PermissionModels? = nil, stackSetARN: String? = nil, stackSetDriftDetectionDetails: StackSetDriftDetectionDetails? = nil, stackSetId: String? = nil, stackSetName: String? = nil, status: StackSetStatus? = nil, tags: [Tag]? = nil, templateBody: String? = nil)