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

ImportStacksToStackSetInput

import type { ImportStacksToStackSetInput } from "https://aws-api.deno.dev/v0.4/services/cloudformation.ts?docs=full";
interface ImportStacksToStackSetInput {
CallAs?: CallAs | null;
OperationId?: string | null;
OperationPreferences?: StackSetOperationPreferences | null;
OrganizationalUnitIds?: string[] | null;
StackIds?: string[] | null;
StackIdsUrl?: string | null;
StackSetName: string;
}

§Properties

§
CallAs?: CallAs | null
[src]

By default, SELF is specified. Use SELF for stack sets with self-managed permissions.

  • If you are signed in to the management account, specify SELF.
  • For service managed stack sets, specify DELEGATED_ADMIN.
§
OperationId?: string | null
[src]

A unique, user defined, identifier for the stack set operation.

§
OperationPreferences?: StackSetOperationPreferences | null
[src]
§
OrganizationalUnitIds?: string[] | null
[src]

The list of OU ID's to which the stacks being imported has to be mapped as deployment target.

§
StackIds?: string[] | null
[src]

The IDs of the stacks you are importing into a stack set. You import up to 10 stacks per stack set at a time.

Specify either StackIds or StackIdsUrl.

§
StackIdsUrl?: string | null
[src]

The Amazon S3 URL which contains list of stack ids to be inputted.

Specify either StackIds or StackIdsUrl.

§
StackSetName: string
[src]

The name of the stack set. The name must be unique in the Region where you create your stack set.