Package software.amazon.awscdk.cloudassembly.schema
Cloud Assembly Schema
---
AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2.
For more information on how to migrate, see the Migrating to AWS CDK v2 guide.
This module is part of the AWS Cloud Development Kit project.
Cloud Assembly
The Cloud Assembly is the output of the synthesis operation. It is produced as part of the
cdk synth
command, or the app.synth() method invocation.
Its essentially a set of files and directories, one of which is the manifest.json file. It defines the set of instructions that are
needed in order to deploy the assembly directory.
For example, when
cdk deployis executed, the CLI reads this file and performs its instructions:
- Build container images.
- Upload assets.
- Deploy CloudFormation templates.
Therefore, the assembly is how the CDK class library and CDK CLI (or any other consumer) communicate. To ensure compatibility between the assembly and its consumers, we treat the manifest file as a well defined, versioned schema.
Schema
This module contains the typescript structs that comprise the manifest.json file, as well as the
generated json-schema.
Versioning
The schema version is specified in the cloud-assembly.version.json file, under the version property.
It follows semantic versioning, but with a small twist.
When we add instructions to the assembly, they are reflected in the manifest file and the json-schema accordingly. Every such instruction, is crucial for ensuring the correct deployment behavior. This means that to properly deploy a cloud assembly, consumers must be aware of every such instruction modification.
For this reason, every change to the schema, even though it might not strictly break validation of the json-schema format,
is considered major version bump.
How to consume
If you'd like to consume the schema file in order to do validations on manifest.json files,
simply download it from this repo and run it against standard json-schema validators, such as jsonschema.
Consumers must take into account the major version of the schema they are consuming. They should reject cloud assemblies
with a major version that is higher than what they expect. While schema validation might pass on such assemblies, the deployment integrity
cannot be guaranteed because some instructions will be ignored.
For example, if your consumer was built when the schema version was 2.0.0, you should reject deploying cloud assemblies with a manifest version of 3.0.0.
Contributing
See Contribution Guide Deprecated: AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html
-
ClassDescriptionQuery to AMI context provider.A builder for
AmiContextQueryAn implementation forAmiContextQueryA manifest for a single artifact within the cloud assembly.A builder forArtifactManifestAn implementation forArtifactManifestType of artifact metadata entry.Type of cloud artifact.A manifest which describes the cloud assembly.A builder forAssemblyManifestAn implementation forAssemblyManifestDefinitions for the asset manifest.A builder forAssetManifestAn implementation forAssetManifestArtifact properties for the Asset Manifest.A builder forAssetManifestPropertiesAn implementation forAssetManifestPropertiesQuery to availability zone context provider.A builder forAvailabilityZonesContextQueryAn implementation forAvailabilityZonesContextQueryArtifact properties for CloudFormation stacks.A builder forAwsCloudFormationStackPropertiesAn implementation forAwsCloudFormationStackPropertiesDestination for assets that need to be uploaded to AWS.A builder forAwsDestinationAn implementation forAwsDestinationInformation needed to access an IAM role created as part of the bootstrap process.A builder forBootstrapRoleAn implementation forBootstrapRoleRepresents a cdk command i.e.A builder forCdkCommandAn implementation forCdkCommandOptions for specific cdk commands that are run as part of the integration test workflow.A builder forCdkCommandsAn implementation forCdkCommandsMetadata Entry spec for container images.A builder forContainerImageAssetMetadataEntryAn implementation forContainerImageAssetMetadataEntryIdentifier for the context provider.Default CDK CLI options that apply to all commands.A builder forDefaultCdkOptionsAn implementation forDefaultCdkOptionsRepresents a cdk deploy command.A builder forDeployCommandAn implementation forDeployCommandOptions to use with cdk deploy.A builder forDeployOptionsAn implementation forDeployOptionsRepresents a cdk destroy command.A builder forDestroyCommandAn implementation forDestroyCommandOptions to use with cdk destroy.A builder forDestroyOptionsAn implementation forDestroyOptionsA file asset.A builder forDockerImageAssetAn implementation forDockerImageAssetWhere to publish docker images.A builder forDockerImageDestinationAn implementation forDockerImageDestinationProperties for how to produce a Docker image from a source.A builder forDockerImageSourceAn implementation forDockerImageSourceQuery to endpoint service context provider.A builder forEndpointServiceAvailabilityZonesContextQueryAn implementation forEndpointServiceAvailabilityZonesContextQueryA file asset.A builder forFileAssetAn implementation forFileAssetMetadata Entry spec for files.A builder forFileAssetMetadataEntryAn implementation forFileAssetMetadataEntryPackaging strategy for file assets.Where in S3 a file asset needs to be published.A builder forFileDestinationAn implementation forFileDestinationDescribe the source of a file asset.A builder forFileSourceAn implementation forFileSourceCommands to run at predefined points during the integration test workflow.A builder forHooksAn implementation forHooksQuery to hosted zone context provider.A builder forHostedZoneContextQueryAn implementation forHostedZoneContextQueryDefinitions for the integration testing manifest.A builder forIntegManifestAn implementation forIntegManifestQuery input for looking up a KMS Key.A builder forKeyContextQueryAn implementation forKeyContextQueryQuery input for looking up a load balancer.A builder forLoadBalancerContextQueryAn implementation forLoadBalancerContextQueryFilters for selecting load balancers.A builder forLoadBalancerFilterAn implementation forLoadBalancerFilterQuery input for looking up a load balancer listener.A builder forLoadBalancerListenerContextQueryAn implementation forLoadBalancerListenerContextQueryThe protocol for connections from clients to the load balancer.Type of load balancer.Options for the loadManifest operation.A builder forLoadManifestOptionsAn implementation forLoadManifestOptionsProtocol utility class.A metadata entry in a cloud assembly artifact.A builder forMetadataEntryAn implementation forMetadataEntryRepresents a missing piece of context.A builder forMissingContextAn implementation forMissingContextArtifact properties for nested cloud assemblies.A builder forNestedCloudAssemblyPropertiesAn implementation forNestedCloudAssemblyPropertiesQuery input for plugins.A builder forPluginContextQueryAn implementation forPluginContextQueryIn what scenarios should the CLI ask for approval.Information about the application's runtime components.A builder forRuntimeInfoAn implementation forRuntimeInfoQuery input for looking up a security group.A builder forSecurityGroupContextQueryAn implementation forSecurityGroupContextQueryQuery to SSM Parameter Context Provider.A builder forSSMParameterContextQueryAn implementation forSSMParameterContextQueryMetadata Entry spec for stack tag.A builder forTagAn implementation forTagRepresents an integration test case.A builder forTestCaseAn implementation forTestCaseThe set of options to control the workflow of the test runner.A builder forTestOptionsAn implementation forTestOptionsArtifact properties for the Construct Tree Artifact.A builder forTreeArtifactPropertiesAn implementation forTreeArtifactPropertiesQuery input for looking up a VPC.A builder forVpcContextQueryAn implementation forVpcContextQuery