Interface ICfnApplicationInstanceProps
Properties for defining a CfnApplicationInstance
.
Namespace: Amazon.CDK.AWS.Panorama
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnApplicationInstanceProps
Syntax (vb)
Public Interface ICfnApplicationInstanceProps
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.AWS.Panorama;
var cfnApplicationInstanceProps = new CfnApplicationInstanceProps {
DefaultRuntimeContextDevice = "defaultRuntimeContextDevice",
ManifestPayload = new ManifestPayloadProperty {
PayloadData = "payloadData"
},
// the properties below are optional
ApplicationInstanceIdToReplace = "applicationInstanceIdToReplace",
Description = "description",
ManifestOverridesPayload = new ManifestOverridesPayloadProperty {
PayloadData = "payloadData"
},
Name = "name",
RuntimeRoleArn = "runtimeRoleArn",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
Application |
The ID of an application instance to replace with the new instance. |
Default |
The device's ID. |
Description | A description for the application instance. |
Manifest |
Setting overrides for the application manifest. |
Manifest |
The application's manifest document. |
Name | A name for the application instance. |
Runtime |
The ARN of a runtime role for the application instance. |
Tags | Tags for the application instance. |
Properties
ApplicationInstanceIdToReplace
The ID of an application instance to replace with the new instance.
virtual string ApplicationInstanceIdToReplace { get; }
Property Value
System.
Remarks
DefaultRuntimeContextDevice
The device's ID.
string DefaultRuntimeContextDevice { get; }
Property Value
System.
Remarks
Description
A description for the application instance.
virtual string Description { get; }
Property Value
System.
Remarks
ManifestOverridesPayload
Setting overrides for the application manifest.
virtual object ManifestOverridesPayload { get; }
Property Value
System.
Remarks
ManifestPayload
The application's manifest document.
object ManifestPayload { get; }
Property Value
System.
Remarks
Name
A name for the application instance.
virtual string Name { get; }
Property Value
System.
Remarks
RuntimeRoleArn
The ARN of a runtime role for the application instance.
virtual string RuntimeRoleArn { get; }
Property Value
System.