interface CfnAppInstanceUserMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Chime.CfnAppInstanceUserMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awschime#CfnAppInstanceUserMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.chime.CfnAppInstanceUserMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_chime.CfnAppInstanceUserMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_chime » CfnAppInstanceUserMixinProps |
Properties for CfnAppInstanceUserPropsMixin.
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 cfnAppInstanceUserMixinProps: chime.CfnAppInstanceUserMixinProps = {
appInstanceArn: 'appInstanceArn',
appInstanceUserId: 'appInstanceUserId',
expirationSettings: {
expirationCriterion: 'expirationCriterion',
expirationDays: 123,
},
metadata: 'metadata',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| app | string | |
| app | string | |
| expiration | IResolvable | Expiration | |
| metadata? | string | |
| name? | string | |
| tags? | Cfn[] |
appInstanceArn?
Type:
string
(optional)
appInstanceUserId?
Type:
string
(optional)
expirationSettings?
Type:
IResolvable | Expiration
(optional)
metadata?
Type:
string
(optional)
name?
Type:
string
(optional)
tags?
Type:
Cfn[]
(optional)

.NET
Go
Java
Python
TypeScript