interface CfnApplicationInstanceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Panorama.Mixins.CfnApplicationInstanceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspanorama/mixins#CfnApplicationInstanceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.panorama.mixins.CfnApplicationInstanceMixinProps |
Python | aws_cdk.mixins_preview.aws_panorama.mixins.CfnApplicationInstanceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_panorama » mixins » 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 { mixins as panorama_mixins } from '@aws-cdk/mixins-preview/aws-panorama';
const cfnApplicationInstanceMixinProps: panorama_mixins.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