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

CreateCloudFormationChangeSetRequest

import type { CreateCloudFormationChangeSetRequest } from "https://aws-api.deno.dev/v0.4/services/serverlessapplicationrepository.ts?docs=full";
interface CreateCloudFormationChangeSetRequest {
ApplicationId: string;
Capabilities?: string[] | null;
ChangeSetName?: string | null;
ClientToken?: string | null;
Description?: string | null;
NotificationArns?: string[] | null;
ParameterOverrides?: ParameterValue[] | null;
ResourceTypes?: string[] | null;
RollbackConfiguration?: RollbackConfiguration | null;
SemanticVersion?: string | null;
StackName: string;
Tags?: Tag[] | null;
TemplateId?: string | null;
}

§Properties

§
ApplicationId: string
[src]

The Amazon Resource Name (ARN) of the application.

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

A list of values that you must specify before you can deploy certain applications. Some applications might include resources that can affect permissions in your AWS account, for example, by creating new AWS Identity and Access Management (IAM) users. For those applications, you must explicitly acknowledge their capabilities by specifying this parameter.

The only valid values are CAPABILITY_IAM, CAPABILITY_NAMED_IAM, CAPABILITY_RESOURCE_POLICY, and CAPABILITY_AUTO_EXPAND.

The following resources require you to specify CAPABILITY_IAM or CAPABILITY_NAMED_IAM: AWS::IAM::Group, AWS::IAM::InstanceProfile, AWS::IAM::Policy, and AWS::IAM::Role. If the application contains IAM resources, you can specify either CAPABILITY_IAM or CAPABILITY_NAMED_IAM. If the application contains IAM resources with custom names, you must specify CAPABILITY_NAMED_IAM.

The following resources require you to specify CAPABILITY_RESOURCE_POLICY: AWS::Lambda::Permission, AWS::IAM:Policy, AWS::ApplicationAutoScaling::ScalingPolicy, AWS::S3::BucketPolicy, AWS::SQS::QueuePolicy, and AWS::SNS:TopicPolicy.

Applications that contain one or more nested applications require you to specify CAPABILITY_AUTO_EXPAND.

If your application template contains any of the above resources, we recommend that you review all permissions associated with the application before deploying. If you don't specify this parameter for an application that requires capabilities, the call will fail.

§
ChangeSetName?: string | null
[src]

This property corresponds to the parameter of the same name for the AWS CloudFormation CreateChangeSet API.

§
ClientToken?: string | null
[src]

This property corresponds to the parameter of the same name for the AWS CloudFormation CreateChangeSet API.

§
Description?: string | null
[src]

This property corresponds to the parameter of the same name for the AWS CloudFormation CreateChangeSet API.

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

This property corresponds to the parameter of the same name for the AWS CloudFormation CreateChangeSet API.

§
ParameterOverrides?: ParameterValue[] | null
[src]

A list of parameter values for the parameters of the application.

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

This property corresponds to the parameter of the same name for the AWS CloudFormation CreateChangeSet API.

§
RollbackConfiguration?: RollbackConfiguration | null
[src]

This property corresponds to the parameter of the same name for the AWS CloudFormation CreateChangeSet API.

§
SemanticVersion?: string | null
[src]

The semantic version of the application:

https://semver.org/

§
StackName: string
[src]

This property corresponds to the parameter of the same name for the AWS CloudFormation CreateChangeSet API.

§
Tags?: Tag[] | null
[src]

This property corresponds to the parameter of the same name for the AWS CloudFormation CreateChangeSet API.

§
TemplateId?: string | null
[src]

The UUID returned by CreateCloudFormationTemplate.

Pattern: [0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}