@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)",
date="2023-01-31T18:36:49.445Z")
public interface CfnApplicationInstanceProps
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnApplicationInstanceProps.Builder
A builder for
CfnApplicationInstanceProps |
static class |
CfnApplicationInstanceProps.Jsii$Proxy
An implementation for
CfnApplicationInstanceProps |
Modifier and Type | Method and Description |
---|---|
static CfnApplicationInstanceProps.Builder |
builder() |
default java.lang.String |
getApplicationInstanceIdToReplace()
The ID of an application instance to replace with the new instance.
|
java.lang.String |
getDefaultRuntimeContextDevice()
The device's ID.
|
default java.lang.String |
getDescription()
A description for the application instance.
|
default java.lang.String |
getDeviceId()
A device's ID.
|
default java.lang.Object |
getManifestOverridesPayload()
Setting overrides for the application manifest.
|
java.lang.Object |
getManifestPayload()
The application's manifest document.
|
default java.lang.String |
getName()
A name for the application instance.
|
default java.lang.String |
getRuntimeRoleArn()
The ARN of a runtime role for the application instance.
|
default java.lang.String |
getStatusFilter()
Only include instances with a specific status.
|
default java.util.List<CfnTag> |
getTags()
Tags for the application instance.
|
java.lang.String getDefaultRuntimeContextDevice()
java.lang.Object getManifestPayload()
default java.lang.String getApplicationInstanceIdToReplace()
default java.lang.String getDescription()
default java.lang.String getDeviceId()
default java.lang.Object getManifestOverridesPayload()
default java.lang.String getName()
default java.lang.String getRuntimeRoleArn()
default java.lang.String getStatusFilter()
default java.util.List<CfnTag> getTags()
static CfnApplicationInstanceProps.Builder builder()