Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

StackSet

import type { StackSet } from "https://aws-api.deno.dev/v0.4/services/cloudformation.ts?docs=full";

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.

interface StackSet {
AdministrationRoleARN?: string | null;
AutoDeployment?: AutoDeployment | null;
Capabilities: Capability[];
Description?: string | null;
ExecutionRoleName?: string | null;
ManagedExecution?: ManagedExecution | null;
OrganizationalUnitIds: string[];
Parameters: Parameter[];
PermissionModel?: PermissionModels | null;
Regions: string[];
StackSetARN?: string | null;
StackSetDriftDetectionDetails?: StackSetDriftDetectionDetails | null;
StackSetId?: string | null;
StackSetName?: string | null;
Status?: StackSetStatus | null;
Tags: Tag[];
TemplateBody?: string | null;
}

§Properties

§
AdministrationRoleARN?: string | null
[src]

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.

§
AutoDeployment?: AutoDeployment | null
[src]

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

§
Capabilities: Capability[]
[src]

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.

§
Description?: string | null
[src]

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

§
ExecutionRoleName?: string | null
[src]

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.

§
ManagedExecution?: ManagedExecution | null
[src]

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

§
OrganizationalUnitIds: string[]
[src]

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

§
Parameters: Parameter[]
[src]

A list of input parameters for a stack set.

§
PermissionModel?: PermissionModels | null
[src]

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

§
Regions: string[]
[src]
§
StackSetARN?: string | null
[src]

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

§
StackSetDriftDetectionDetails?: StackSetDriftDetectionDetails | null
[src]

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.

§
StackSetId?: string | null
[src]

The ID of the stack set.

§
StackSetName?: string | null
[src]

The name that's associated with the stack set.

§
Status?: StackSetStatus | null
[src]

The status of the stack set.

§
Tags: Tag[]
[src]

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

§
TemplateBody?: string | null
[src]

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