Skip to main content

AWS CDK Programmatic CLI library

Project description

AWS CDK CLI Library

---

cdk-constructs: Experimental

The APIs of higher level constructs in this module are experimental and under active development. They are subject to non-backward compatible changes or removal in any future version. These are not subject to the Semantic Versioning model and breaking changes will be announced in the release notes. This means that while you may use them, you may need to update your source code when upgrading to a newer version of this package.


⚠️ Experimental module

This package is highly experimental. Expect frequent API changes and incomplete features. Known issues include:

  • JavaScript/TypeScript only
    The jsii packages are currently not in a working state.
  • No useful return values
    All output is currently printed to stdout/stderr
  • Missing or Broken options
    Some CLI options might not be available in this package or broken

Overview

Provides a library to interact with the AWS CDK CLI programmatically from jsii supported languages. Currently the package includes implementations for:

  • cdk deploy
  • cdk synth
  • cdk destroy
  • cdk list

Setup

AWS CDK app directory

Obtain an AwsCdkCli class from an AWS CDK app directory (containing a cdk.json file):

cli = AwsCdkCli.from_cdk_app_directory("/path/to/cdk/app")

Cloud Assembly Directory Producer

You can also create AwsCdkCli from a class implementing ICloudAssemblyDirectoryProducer. AWS CDK apps might need to be synthesized multiple times with additional context values before they are ready.

The produce() method of the ICloudAssemblyDirectoryProducer interface provides this multi-pass ability. It is invoked with the context values of the current iteration and should use these values to synthesize a Cloud Assembly. The return value is the path to the assembly directory.

A basic implementation would look like this:

@jsii.implements(ICloudAssemblyDirectoryProducer)
class MyProducer:
    def produce(self, context):
        app = cdk.App(context=context)
        stack = cdk.Stack(app)
        return app.synth().directory

For all features (e.g. lookups) to work correctly, cdk.App() must be instantiated with the received context values. Since it is not possible to update the context of an app, it must be created as part of the produce() method.

The producer can than be used like this:

cli = AwsCdkCli.from_cloud_assembly_directory_producer(MyProducer())

Commands

list

# await this asynchronous method call using a language feature
cli.list()

synth

# await this asynchronous method call using a language feature
cli.synth(
    stacks=["MyTestStack"]
)

deploy

# await this asynchronous method call using a language feature
cli.deploy(
    stacks=["MyTestStack"]
)

destroy

# await this asynchronous method call using a language feature
cli.destroy(
    stacks=["MyTestStack"]
)

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aws-cdk.cli-lib-alpha-2.81.0a0.tar.gz (3.7 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aws_cdk.cli_lib_alpha-2.81.0a0-py3-none-any.whl (3.7 MB view details)

Uploaded Python 3

File details

Details for the file aws-cdk.cli-lib-alpha-2.81.0a0.tar.gz.

File metadata

  • Download URL: aws-cdk.cli-lib-alpha-2.81.0a0.tar.gz
  • Upload date:
  • Size: 3.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for aws-cdk.cli-lib-alpha-2.81.0a0.tar.gz
Algorithm Hash digest
SHA256 ffd348f3d1d52aed50c13253f4b20de07c5f3c30710794c308fbe6164a3ed7bb
MD5 b30b57e88e15afdfd45fb98ee77235f5
BLAKE2b-256 1883dbc3bbfaddf81d5ee62ded9d86dae16ff0c58a4d70688c2235db82e9c14b

See more details on using hashes here.

File details

Details for the file aws_cdk.cli_lib_alpha-2.81.0a0-py3-none-any.whl.

File metadata

File hashes

Hashes for aws_cdk.cli_lib_alpha-2.81.0a0-py3-none-any.whl
Algorithm Hash digest
SHA256 5a4ac2936ec35165e8d278c7537f07218fc9fa3ca2c0de9253e33be6051fe77b
MD5 e648f857b802214126740feb19427402
BLAKE2b-256 625075aef1ed648e5230ffba532de47ce8b9622d437d818f5d7a0b8d76064cd8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page