interface CfnUserMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppStream.Mixins.CfnUserMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappstream/mixins#CfnUserMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.appstream.mixins.CfnUserMixinProps |
Python | aws_cdk.mixins_preview.aws_appstream.mixins.CfnUserMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_appstream » mixins » CfnUserMixinProps |
Properties for CfnUserPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appstream_mixins } from '@aws-cdk/mixins-preview/aws-appstream';
const cfnUserMixinProps: appstream_mixins.CfnUserMixinProps = {
authenticationType: 'authenticationType',
firstName: 'firstName',
lastName: 'lastName',
messageAction: 'messageAction',
userName: 'userName',
};
Properties
| Name | Type | Description |
|---|---|---|
| authentication | string | The authentication type for the user. |
| first | string | The first name, or given name, of the user. |
| last | string | The last name, or surname, of the user. |
| message | string | The action to take for the welcome email that is sent to a user after the user is created in the user pool. |
| user | string | The email address of the user. |
authenticationType?
Type:
string
(optional)
The authentication type for the user.
You must specify USERPOOL.
firstName?
Type:
string
(optional)
The first name, or given name, of the user.
lastName?
Type:
string
(optional)
The last name, or surname, of the user.
messageAction?
Type:
string
(optional)
The action to take for the welcome email that is sent to a user after the user is created in the user pool.
If you specify SUPPRESS, no email is sent. If you specify RESEND, do not specify the first name or last name of the user. If the value is null, the email is sent.
The temporary password in the welcome email is valid for only 7 days. If users don’t set their passwords within 7 days, you must send them a new welcome email.
userName?
Type:
string
(optional)
The email address of the user.
Users' email addresses are case-sensitive. During login, if they specify an email address that doesn't use the same capitalization as the email address specified when their user pool account was created, a "user does not exist" error message displays.

.NET
Go
Java
Python
TypeScript