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 bootstrap
  • 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"]
)

bootstrap

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

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.169.0a0.tar.gz (5.9 MB view details)

Uploaded Source

Built Distribution

File details

Details for the file aws_cdk_cli_lib_alpha-2.169.0a0.tar.gz.

File metadata

File hashes

Hashes for aws_cdk_cli_lib_alpha-2.169.0a0.tar.gz
Algorithm Hash digest
SHA256 2d8b53e4b5e32817a66de2e77ace204720eb34950c0b71d94740b2b64b7063cb
MD5 0392664da8af4e9f005f0a225191e18b
BLAKE2b-256 1eb202f08fd9ab3da44f8bf2616046abd02e69ef2d27779fdde7f286cbbe0a75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aws_cdk.cli_lib_alpha-2.169.0a0-py3-none-any.whl
Algorithm Hash digest
SHA256 0462bfd87a6bb5b8fe131b2035c77d9ffc8fadea1e11297fdd4286b5b2deb872
MD5 6acbc815db980fe688a9eab785d0455c
BLAKE2b-256 30241ed25abd77b3ee6c515d0be57e2c581d210a100b46d38087f74186ca5e7a

See more details on using hashes here.

Supported by

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