@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.171Z") @Stability(value=Stable) public interface CfnApplicationInstanceProps extends software.amazon.jsii.JsiiSerializable
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 String |
getApplicationInstanceIdToReplace()
The ID of an application instance to replace with the new instance.
|
String |
getDefaultRuntimeContextDevice()
The device's ID.
|
default String |
getDescription()
A description for the application instance.
|
default String |
getDeviceId()
A device's ID.
|
default Object |
getManifestOverridesPayload()
Setting overrides for the application manifest.
|
Object |
getManifestPayload()
The application's manifest document.
|
default String |
getName()
A name for the application instance.
|
default String |
getRuntimeRoleArn()
The ARN of a runtime role for the application instance.
|
default String |
getStatusFilter()
Only include instances with a specific status.
|
default List<CfnTag> |
getTags()
Tags for the application instance.
|
@Stability(value=Stable) @NotNull String getDefaultRuntimeContextDevice()
@Stability(value=Stable) @NotNull Object getManifestPayload()
@Stability(value=Stable) @Nullable default String getApplicationInstanceIdToReplace()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default String getDeviceId()
@Stability(value=Stable) @Nullable default Object getManifestOverridesPayload()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default String getRuntimeRoleArn()
@Stability(value=Stable) @Nullable default String getStatusFilter()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnApplicationInstanceProps.Builder builder()
Copyright © 2022. All rights reserved.