Show / Hide Table of Contents

Class CfnUserMixinProps

Properties for CfnUserPropsMixin.

Inheritance
object
CfnUserMixinProps
Implements
ICfnUserMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.AppStream.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnUserMixinProps : ICfnUserMixinProps
Syntax (vb)
Public Class CfnUserMixinProps Implements ICfnUserMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.AppStream.Mixins;

             var cfnUserMixinProps = new CfnUserMixinProps {
                 AuthenticationType = "authenticationType",
                 FirstName = "firstName",
                 LastName = "lastName",
                 MessageAction = "messageAction",
                 UserName = "userName"
             };

Synopsis

Constructors

CfnUserMixinProps()

Properties for CfnUserPropsMixin.

Properties

AuthenticationType

The authentication type for the user.

FirstName

The first name, or given name, of the user.

LastName

The last name, or surname, of the user.

MessageAction

The action to take for the welcome email that is sent to a user after the user is created in the user pool.

UserName

The email address of the user.

Constructors

CfnUserMixinProps()

Properties for CfnUserPropsMixin.

public CfnUserMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.AppStream.Mixins;

             var cfnUserMixinProps = new CfnUserMixinProps {
                 AuthenticationType = "authenticationType",
                 FirstName = "firstName",
                 LastName = "lastName",
                 MessageAction = "messageAction",
                 UserName = "userName"
             };

Properties

AuthenticationType

The authentication type for the user.

public string? AuthenticationType { get; set; }
Property Value

string

Remarks

You must specify USERPOOL.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-authenticationtype

FirstName

The first name, or given name, of the user.

public string? FirstName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-firstname

LastName

The last name, or surname, of the user.

public string? LastName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-lastname

MessageAction

The action to take for the welcome email that is sent to a user after the user is created in the user pool.

public string? MessageAction { get; set; }
Property Value

string

Remarks

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-messageaction

UserName

The email address of the user.

public string? UserName { get; set; }
Property Value

string

Remarks

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-username

Implements

ICfnUserMixinProps
Back to top Generated by DocFX