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

StackSetSummary

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

The structures that contain summary information about the specified stack set.

interface StackSetSummary {
AutoDeployment?: AutoDeployment | null;
Description?: string | null;
DriftStatus?: StackDriftStatus | null;
LastDriftCheckTimestamp?: Date | number | null;
ManagedExecution?: ManagedExecution | null;
PermissionModel?: PermissionModels | null;
StackSetId?: string | null;
StackSetName?: string | null;
Status?: StackSetStatus | null;
}

§Properties

§
AutoDeployment?: AutoDeployment | null
[src]

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

§
Description?: string | null
[src]

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

§
DriftStatus?: StackDriftStatus | null
[src]

Status of the stack set's actual configuration compared to its expected template and parameter configuration. A stack set is considered to have drifted if one or more of its stack instances have drifted from their expected template and parameter configuration.

  • DRIFTED: One or more of the stack instances belonging to the stack set stack differs from the expected template and parameter configuration. A stack instance is considered to have drifted if one or more of the resources in the associated stack have drifted.
  • NOT_CHECKED: CloudFormation has not checked the stack set for drift.
  • IN_SYNC: All of the stack instances belonging to the stack set stack match from the expected template and parameter configuration.
  • UNKNOWN: This value is reserved for future use.
§
LastDriftCheckTimestamp?: Date | number | null
[src]

Most recent time when CloudFormation performed a drift detection operation on the stack set. This value will be NULL for any stack set on which drift detection has not yet been performed.

§
ManagedExecution?: ManagedExecution | null
[src]

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

§
PermissionModel?: PermissionModels | null
[src]

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

§
StackSetId?: string | null
[src]

The ID of the stack set.

§
StackSetName?: string | null
[src]

The name of the stack set.

§
Status?: StackSetStatus | null
[src]

The status of the stack set.