AssemblyManifest

class aws_cdk.cloud_assembly_schema.AssemblyManifest(*, version, artifacts=None, missing=None, runtime=None)

Bases: object

A manifest which describes the cloud assembly.

Parameters:
  • version (str) – Protocol version.

  • artifacts (Optional[Mapping[str, Union[ArtifactManifest, Dict[str, Any]]]]) – The set of artifacts in this assembly. Default: - no artifacts.

  • missing (Optional[Sequence[Union[MissingContext, Dict[str, Any]]]]) – Missing context information. If this field has values, it means that the cloud assembly is not complete and should not be deployed. Default: - no missing context.

  • runtime (Union[RuntimeInfo, Dict[str, Any], None]) – Runtime information. Default: - no info.

Attributes

artifacts

The set of artifacts in this assembly.

Default:
  • no artifacts.

missing

Missing context information.

If this field has values, it means that the cloud assembly is not complete and should not be deployed.

Default:
  • no missing context.

runtime

Runtime information.

Default:
  • no info.

version

Protocol version.