DeployOptions

class aws_cdk.cloud_assembly_schema.DeployOptions(*, all=None, app=None, asset_metadata=None, ca_bundle_path=None, color=None, context=None, debug=None, ec2_creds=None, ignore_errors=None, json=None, lookups=None, notices=None, output=None, path_metadata=None, profile=None, proxy=None, role_arn=None, stacks=None, staging=None, strict=None, trace=None, verbose=None, version_reporting=None, change_set_name=None, ci=None, concurrency=None, exclusively=None, execute=None, force=None, notification_arns=None, outputs_file=None, parameters=None, require_approval=None, reuse_assets=None, rollback=None, toolkit_stack_name=None, use_previous_parameters=None)

Bases: DefaultCdkOptions

Options to use with cdk deploy.

Parameters:
  • all (Optional[bool]) – Deploy all stacks. Requried if stacks is not set Default: - false

  • app (Optional[str]) – command-line for executing your app or a cloud assembly directory e.g. “node bin/my-app.js” or “cdk.out”. Default: - read from cdk.json

  • asset_metadata (Optional[bool]) – Include “aws:asset:*” CloudFormation metadata for resources that use assets. Default: true

  • ca_bundle_path (Optional[str]) – Path to CA certificate to use when validating HTTPS requests. Default: - read from AWS_CA_BUNDLE environment variable

  • color (Optional[bool]) – Show colors and other style from console output. Default: true

  • context (Optional[Mapping[str, str]]) – Additional context. Default: - no additional context

  • debug (Optional[bool]) – enable emission of additional debugging information, such as creation stack traces of tokens. Default: false

  • ec2_creds (Optional[bool]) – Force trying to fetch EC2 instance credentials. Default: - guess EC2 instance status

  • ignore_errors (Optional[bool]) – Ignores synthesis errors, which will likely produce an invalid output. Default: false

  • json (Optional[bool]) – Use JSON output instead of YAML when templates are printed to STDOUT. Default: false

  • lookups (Optional[bool]) – Perform context lookups. Synthesis fails if this is disabled and context lookups need to be performed Default: true

  • notices (Optional[bool]) – Show relevant notices. Default: true

  • output (Optional[str]) – Emits the synthesized cloud assembly into a directory. Default: cdk.out

  • path_metadata (Optional[bool]) – Include “aws:cdk:path” CloudFormation metadata for each resource. Default: true

  • profile (Optional[str]) – Use the indicated AWS profile as the default environment. Default: - no profile is used

  • proxy (Optional[str]) – Use the indicated proxy. Will read from HTTPS_PROXY environment if specified Default: - no proxy

  • role_arn (Optional[str]) – Role to pass to CloudFormation for deployment. Default: - use the bootstrap cfn-exec role

  • stacks (Optional[Sequence[str]]) – List of stacks to deploy. Requried if all is not set Default: - []

  • staging (Optional[bool]) – Copy assets to the output directory. Needed for local debugging the source files with SAM CLI Default: false

  • strict (Optional[bool]) – Do not construct stacks with warnings. Default: false

  • trace (Optional[bool]) – Print trace for stack warnings. Default: false

  • verbose (Optional[bool]) – show debug logs. Default: false

  • version_reporting (Optional[bool]) – Include “AWS::CDK::Metadata” resource in synthesized templates. Default: true

  • change_set_name (Optional[str]) – Optional name to use for the CloudFormation change set. If not provided, a name will be generated automatically. Default: - auto generate a name

  • ci (Optional[bool]) – Whether we are on a CI system. Default: false

  • concurrency (Union[int, float, None]) – Deploy multiple stacks in parallel. Default: 1

  • exclusively (Optional[bool]) – Only perform action on the given stack. Default: false

  • execute (Optional[bool]) – Whether to execute the ChangeSet Not providing execute parameter will result in execution of ChangeSet. Default: true

  • force (Optional[bool]) – Always deploy, even if templates are identical. Default: false

  • notification_arns (Optional[Sequence[str]]) – ARNs of SNS topics that CloudFormation will notify with stack related events. Default: - no notifications

  • outputs_file (Optional[str]) – Path to file where stack outputs will be written after a successful deploy as JSON. Default: - Outputs are not written to any file

  • parameters (Optional[Mapping[str, str]]) – Additional parameters for CloudFormation at deploy time. Default: {}

  • require_approval (Optional[RequireApproval]) – What kind of security changes require approval. Default: RequireApproval.Never

  • reuse_assets (Optional[Sequence[str]]) – Reuse the assets with the given asset IDs. Default: - do not reuse assets

  • rollback (Optional[bool]) – Rollback failed deployments. Default: true

  • toolkit_stack_name (Optional[str]) – Name of the toolkit stack to use/deploy. Default: CDKToolkit

  • use_previous_parameters (Optional[bool]) – Use previous values for unspecified parameters. If not set, all parameters must be specified for every deployment. Default: true

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.cloud_assembly_schema as cloud_assembly_schema

deploy_options = cloud_assembly_schema.DeployOptions(
    all=False,
    app="app",
    asset_metadata=False,
    ca_bundle_path="caBundlePath",
    change_set_name="changeSetName",
    ci=False,
    color=False,
    concurrency=123,
    context={
        "context_key": "context"
    },
    debug=False,
    ec2_creds=False,
    exclusively=False,
    execute=False,
    force=False,
    ignore_errors=False,
    json=False,
    lookups=False,
    notices=False,
    notification_arns=["notificationArns"],
    output="output",
    outputs_file="outputsFile",
    parameters={
        "parameters_key": "parameters"
    },
    path_metadata=False,
    profile="profile",
    proxy="proxy",
    require_approval=cloud_assembly_schema.RequireApproval.NEVER,
    reuse_assets=["reuseAssets"],
    role_arn="roleArn",
    rollback=False,
    stacks=["stacks"],
    staging=False,
    strict=False,
    toolkit_stack_name="toolkitStackName",
    trace=False,
    use_previous_parameters=False,
    verbose=False,
    version_reporting=False
)

Attributes

all

Deploy all stacks.

Requried if stacks is not set

Default:
  • false

app

command-line for executing your app or a cloud assembly directory e.g. “node bin/my-app.js” or “cdk.out”.

Default:
  • read from cdk.json

asset_metadata

*” CloudFormation metadata for resources that use assets.

Default:

true

Type:

Include “aws

Type:

asset

ca_bundle_path

Path to CA certificate to use when validating HTTPS requests.

Default:
  • read from AWS_CA_BUNDLE environment variable

change_set_name

Optional name to use for the CloudFormation change set.

If not provided, a name will be generated automatically.

Default:
  • auto generate a name

ci

Whether we are on a CI system.

Default:

false

color

Show colors and other style from console output.

Default:

true

concurrency

Deploy multiple stacks in parallel.

Default:

1

context

Additional context.

Default:
  • no additional context

debug

enable emission of additional debugging information, such as creation stack traces of tokens.

Default:

false

ec2_creds

Force trying to fetch EC2 instance credentials.

Default:
  • guess EC2 instance status

exclusively

Only perform action on the given stack.

Default:

false

execute

Whether to execute the ChangeSet Not providing execute parameter will result in execution of ChangeSet.

Default:

true

force

Always deploy, even if templates are identical.

Default:

false

ignore_errors

Ignores synthesis errors, which will likely produce an invalid output.

Default:

false

json

Use JSON output instead of YAML when templates are printed to STDOUT.

Default:

false

lookups

Perform context lookups.

Synthesis fails if this is disabled and context lookups need to be performed

Default:

true

notices

Show relevant notices.

Default:

true

notification_arns

ARNs of SNS topics that CloudFormation will notify with stack related events.

Default:
  • no notifications

output

Emits the synthesized cloud assembly into a directory.

Default:

cdk.out

outputs_file

Path to file where stack outputs will be written after a successful deploy as JSON.

Default:
  • Outputs are not written to any file

parameters

Additional parameters for CloudFormation at deploy time.

Default:

{}

path_metadata

path” CloudFormation metadata for each resource.

Default:

true

Type:

Include “aws

Type:

cdk

profile

Use the indicated AWS profile as the default environment.

Default:
  • no profile is used

proxy

Use the indicated proxy.

Will read from HTTPS_PROXY environment if specified

Default:
  • no proxy

require_approval

What kind of security changes require approval.

Default:

RequireApproval.Never

reuse_assets

Reuse the assets with the given asset IDs.

Default:
  • do not reuse assets

role_arn

Role to pass to CloudFormation for deployment.

Default:
  • use the bootstrap cfn-exec role

rollback

Rollback failed deployments.

Default:

true

stacks

List of stacks to deploy.

Requried if all is not set

Default:
  • []

staging

Copy assets to the output directory.

Needed for local debugging the source files with SAM CLI

Default:

false

strict

Do not construct stacks with warnings.

Default:

false

toolkit_stack_name

Name of the toolkit stack to use/deploy.

Default:

CDKToolkit

trace

Print trace for stack warnings.

Default:

false

use_previous_parameters

Use previous values for unspecified parameters.

If not set, all parameters must be specified for every deployment.

Default:

true

verbose

show debug logs.

Default:

false

version_reporting

Include “AWS::CDK::Metadata” resource in synthesized templates.

Default:

true