interface CfnAppInstanceUserProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Chime.CfnAppInstanceUserProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awschime#CfnAppInstanceUserProps |
Java | software.amazon.awscdk.services.chime.CfnAppInstanceUserProps |
Python | aws_cdk.aws_chime.CfnAppInstanceUserProps |
TypeScript | aws-cdk-lib » aws_chime » CfnAppInstanceUserProps |
Properties for defining a CfnAppInstanceUser.
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 cfnAppInstanceUserProps: chime.CfnAppInstanceUserProps = {
appInstanceArn: 'appInstanceArn',
appInstanceUserId: 'appInstanceUserId',
// the properties below are optional
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
appInstanceUserId
Type:
string
expirationSettings?
Type:
IResolvable | Expiration
(optional)
metadata?
Type:
string
(optional)
name?
Type:
string
(optional)
tags?
Type:
Cfn[]
(optional)

.NET
Go
Java
Python
TypeScript