Interface CfnApplicationInstanceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationInstanceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:00.700Z")
@Stability(Stable)
public interface CfnApplicationInstanceProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnApplicationInstance
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.panorama.*; CfnApplicationInstanceProps cfnApplicationInstanceProps = CfnApplicationInstanceProps.builder() .defaultRuntimeContextDevice("defaultRuntimeContextDevice") .manifestPayload(ManifestPayloadProperty.builder() .payloadData("payloadData") .build()) // the properties below are optional .applicationInstanceIdToReplace("applicationInstanceIdToReplace") .description("description") .deviceId("deviceId") .manifestOverridesPayload(ManifestOverridesPayloadProperty.builder() .payloadData("payloadData") .build()) .name("name") .runtimeRoleArn("runtimeRoleArn") .statusFilter("statusFilter") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplicationInstanceProps
static final class
An implementation forCfnApplicationInstanceProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The ID of an application instance to replace with the new instance.The device's ID.default String
A description for the application instance.default String
A device's ID.default Object
Setting overrides for the application manifest.The application's manifest document.default String
getName()
A name for the application instance.default String
The ARN of a runtime role for the application instance.default String
Only include instances with a specific status.getTags()
Tags for the application instance.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefaultRuntimeContextDevice
The device's ID. -
getManifestPayload
The application's manifest document. -
getApplicationInstanceIdToReplace
The ID of an application instance to replace with the new instance. -
getDescription
A description for the application instance. -
getDeviceId
A device's ID. -
getManifestOverridesPayload
Setting overrides for the application manifest. -
getName
A name for the application instance. -
getRuntimeRoleArn
The ARN of a runtime role for the application instance. -
getStatusFilter
Only include instances with a specific status. -
getTags
Tags for the application instance. -
builder
-