interface CfnApplicationInstanceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Panorama.CfnApplicationInstanceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspanorama#CfnApplicationInstanceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.panorama.CfnApplicationInstanceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_panorama.CfnApplicationInstanceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_panorama » CfnApplicationInstanceMixinProps |
Properties for CfnApplicationInstancePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_panorama as panorama } from '@aws-cdk/cfn-property-mixins';
const cfnApplicationInstanceMixinProps: panorama.CfnApplicationInstanceMixinProps = {
applicationInstanceIdToReplace: 'applicationInstanceIdToReplace',
defaultRuntimeContextDevice: 'defaultRuntimeContextDevice',
description: 'description',
manifestOverridesPayload: {
payloadData: 'payloadData',
},
manifestPayload: {
payloadData: 'payloadData',
},
name: 'name',
runtimeRoleArn: 'runtimeRoleArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ID of an application instance to replace with the new instance. |
| default | string | The device's ID. |
| description? | string | A description for the application instance. |
| manifest | IResolvable | Manifest | Setting overrides for the application manifest. |
| manifest | IResolvable | Manifest | The application's manifest document. |
| name? | string | A name for the application instance. |
| runtime | string | The ARN of a runtime role for the application instance. |
| tags? | Cfn[] | Tags for the application instance. |
applicationInstanceIdToReplace?
Type:
string
(optional)
The ID of an application instance to replace with the new instance.
defaultRuntimeContextDevice?
Type:
string
(optional)
The device's ID.
description?
Type:
string
(optional)
A description for the application instance.
manifestOverridesPayload?
Type:
IResolvable | Manifest
(optional)
Setting overrides for the application manifest.
manifestPayload?
Type:
IResolvable | Manifest
(optional)
The application's manifest document.
name?
Type:
string
(optional)
A name for the application instance.
runtimeRoleArn?
Type:
string
(optional)
The ARN of a runtime role for the application instance.
tags?
Type:
Cfn[]
(optional)
Tags for the application instance.

.NET
Go
Java
Python
TypeScript