Interface CfnApplicationInstanceMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationInstanceMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:02.154Z")
@Stability(Stable)
public interface CfnApplicationInstanceMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnApplicationInstancePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.panorama.*;
CfnApplicationInstanceMixinProps cfnApplicationInstanceMixinProps = CfnApplicationInstanceMixinProps.builder()
.applicationInstanceIdToReplace("applicationInstanceIdToReplace")
.defaultRuntimeContextDevice("defaultRuntimeContextDevice")
.description("description")
.manifestOverridesPayload(ManifestOverridesPayloadProperty.builder()
.payloadData("payloadData")
.build())
.manifestPayload(ManifestPayloadProperty.builder()
.payloadData("payloadData")
.build())
.name("name")
.runtimeRoleArn("runtimeRoleArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationInstanceMixinPropsstatic final classAn implementation forCfnApplicationInstanceMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe ID of an application instance to replace with the new instance.default StringThe device's ID.default StringA description for the application instance.default ObjectSetting overrides for the application manifest.default ObjectThe application's manifest document.default StringgetName()A name for the application instance.default StringThe ARN of a runtime role for the application instance.getTags()Tags for the application instance.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationInstanceIdToReplace
The ID of an application instance to replace with the new instance.- See Also:
-
getDefaultRuntimeContextDevice
The device's ID.- See Also:
-
getDescription
A description for the application instance.- See Also:
-
getManifestOverridesPayload
Setting overrides for the application manifest.Returns union: either
IResolvableorCfnApplicationInstancePropsMixin.ManifestOverridesPayloadProperty- See Also:
-
getManifestPayload
The application's manifest document.Returns union: either
IResolvableorCfnApplicationInstancePropsMixin.ManifestPayloadProperty- See Also:
-
getName
A name for the application instance.- See Also:
-
getRuntimeRoleArn
The ARN of a runtime role for the application instance.- See Also:
-
getTags
Tags for the application instance.- See Also:
-
builder
-