Show / Hide Table of Contents

Interface IRuntimeInfo

Information about the application's runtime components.

Namespace: Amazon.CDK.CloudAssembly.Schema
Assembly: Amazon.CDK.CloudAssembly.Schema.dll
Syntax (csharp)
public interface IRuntimeInfo
Syntax (vb)
Public Interface IRuntimeInfo
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CloudAssembly.Schema;

RuntimeInfo runtimeInfo = new RuntimeInfo {
    Libraries = new Dictionary<string, string> {
        { "librariesKey", "libraries" }
    }
};

Synopsis

Properties

Libraries

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

Properties

Libraries

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

IDictionary<string, string> Libraries { get; }
Property Value

System.Collections.Generic.IDictionary<System.String, System.String>

Back to top Generated by DocFX