AssemblyManifest
- class aws_cdk.cloud_assembly_schema.AssemblyManifest(*, version, artifacts=None, minimum_cli_version=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.minimum_cli_version (
Optional
[str
]) – Required CLI version, if available. If the manifest producer knows, it can put the minimum version of the CLI here that supports reading this assembly. If set, it can be used to show a more informative error message to users. Default: - Minimum CLI version unknownmissing (
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.
- minimum_cli_version
Required CLI version, if available.
If the manifest producer knows, it can put the minimum version of the CLI here that supports reading this assembly.
If set, it can be used to show a more informative error message to users.
- Default:
Minimum CLI version unknown
- 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.