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
,ArtifactManifest
]]) – The set of artifacts in this assembly. Default: - no artifacts.missing (
Optional
[Sequence
[MissingContext
]]) – 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 (
Optional
[RuntimeInfo
]) – Runtime information. Default: - no info.
Attributes
-
artifacts
¶ The set of artifacts in this assembly.
- Default
no artifacts.
- Return type
Optional
[Mapping
[str
,ArtifactManifest
]]
-
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.
- Return type
Optional
[List
[MissingContext
]]
-
runtime
¶ Runtime information.
- Default
no info.
- Return type
Optional
[RuntimeInfo
]
-
version
¶ Protocol version.
- Return type
str