RuntimeInfo

class aws_cdk.cloud_assembly_schema.RuntimeInfo(*, libraries)

Bases: object

Information about the application’s runtime components.

Parameters:

libraries (Mapping[str, str]) – The list of libraries loaded in the application, associated with their versions.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.cloud_assembly_schema as cloud_assembly_schema

runtime_info = cloud_assembly_schema.RuntimeInfo(
    libraries={
        "libraries_key": "libraries"
    }
)

Attributes

libraries

The list of libraries loaded in the application, associated with their versions.