interface CfnAppInstanceProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Chime.CfnAppInstanceProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awschime#CfnAppInstanceProps |
Java | software.amazon.awscdk.services.chime.CfnAppInstanceProps |
Python | aws_cdk.aws_chime.CfnAppInstanceProps |
TypeScript | aws-cdk-lib » aws_chime » CfnAppInstanceProps |
Properties for defining a CfnAppInstance.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chime-appinstance.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_chime as chime } from 'aws-cdk-lib';
const cfnAppInstanceProps: chime.CfnAppInstanceProps = {
name: 'name',
// the properties below are optional
metadata: 'metadata',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the AppInstance. |
| metadata? | string | The metadata of the AppInstance. |
| tags? | Cfn[] | Tags assigned to the AppInstance. |
name
Type:
string
The name of the AppInstance.
metadata?
Type:
string
(optional)
The metadata of the AppInstance.
Limited to a 1KB string in UTF-8.
tags?
Type:
Cfn[]
(optional)
Tags assigned to the AppInstance.

.NET
Go
Java
Python
TypeScript