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();
 
  • Method Details

    • getDefaultRuntimeContextDevice

      @Stability(Stable) @NotNull String getDefaultRuntimeContextDevice()
      The device's ID.
    • getManifestPayload

      @Stability(Stable) @NotNull Object getManifestPayload()
      The application's manifest document.
    • getApplicationInstanceIdToReplace

      @Stability(Stable) @Nullable default String getApplicationInstanceIdToReplace()
      The ID of an application instance to replace with the new instance.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      A description for the application instance.
    • getDeviceId

      @Stability(Stable) @Nullable default String getDeviceId()
      A device's ID.
    • getManifestOverridesPayload

      @Stability(Stable) @Nullable default Object getManifestOverridesPayload()
      Setting overrides for the application manifest.
    • getName

      @Stability(Stable) @Nullable default String getName()
      A name for the application instance.
    • getRuntimeRoleArn

      @Stability(Stable) @Nullable default String getRuntimeRoleArn()
      The ARN of a runtime role for the application instance.
    • getStatusFilter

      @Stability(Stable) @Nullable default String getStatusFilter()
      Only include instances with a specific status.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      Tags for the application instance.
    • builder

      @Stability(Stable) static CfnApplicationInstanceProps.Builder builder()
      Returns:
      a CfnApplicationInstanceProps.Builder of CfnApplicationInstanceProps