paws.compute (version 0.1.0)

serverlessapplicationrepository_create_cloud_formation_change_set: Creates an AWS CloudFormation change set for the given application

Description

Creates an AWS CloudFormation change set for the given application.

Usage

serverlessapplicationrepository_create_cloud_formation_change_set(
  ApplicationId, Capabilities, ChangeSetName, ClientToken, Description,
  NotificationArns, ParameterOverrides, ResourceTypes,
  RollbackConfiguration, SemanticVersion, StackName, Tags, TemplateId)

Arguments

ApplicationId

[required] The Amazon Resource Name (ARN) of the application.

Capabilities

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

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

ClientToken

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

Description

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

NotificationArns

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

ParameterOverrides

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

ResourceTypes

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

RollbackConfiguration

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

SemanticVersion

The semantic version of the application:

https://semver.org/

StackName

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

Tags

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

TemplateId

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

Request syntax

svc$create_cloud_formation_change_set(
  ApplicationId = "string",
  Capabilities = list(
    "string"
  ),
  ChangeSetName = "string",
  ClientToken = "string",
  Description = "string",
  NotificationArns = list(
    "string"
  ),
  ParameterOverrides = list(
    list(
      Name = "string",
      Value = "string"
    )
  ),
  ResourceTypes = list(
    "string"
  ),
  RollbackConfiguration = list(
    MonitoringTimeInMinutes = 123,
    RollbackTriggers = list(
      list(
        Arn = "string",
        Type = "string"
      )
    )
  ),
  SemanticVersion = "string",
  StackName = "string",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  ),
  TemplateId = "string"
)