interface CfnAppInstanceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Chime.CfnAppInstanceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awschime#CfnAppInstanceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.chime.CfnAppInstanceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_chime.CfnAppInstanceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_chime » CfnAppInstanceMixinProps |
Properties for CfnAppInstancePropsMixin.
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/cfn-property-mixins';
const cfnAppInstanceMixinProps: chime.CfnAppInstanceMixinProps = {
metadata: 'metadata',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| metadata? | string | The metadata of the AppInstance. |
| name? | string | The name of the AppInstance. |
| tags? | Cfn[] | Tags assigned to the AppInstance. |
metadata?
Type:
string
(optional)
The metadata of the AppInstance.
Limited to a 1KB string in UTF-8.
name?
Type:
string
(optional)
The name of the AppInstance.
tags?
Type:
Cfn[]
(optional)
Tags assigned to the AppInstance.

.NET
Go
Java
Python
TypeScript