Show / Hide Table of Contents

Class CfnUser.LoginProfileProperty

Creates a password for the specified user, giving the user the ability to access AWS services through the AWS Management Console .

Inheritance
object
CfnUser.LoginProfileProperty
Implements
CfnUser.ILoginProfileProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.IAM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnUser.LoginProfileProperty : CfnUser.ILoginProfileProperty
Syntax (vb)
Public Class CfnUser.LoginProfileProperty Implements CfnUser.ILoginProfileProperty
Remarks

For more information about managing passwords, see Managing Passwords in the IAM User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.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.AWS.IAM;

             var loginProfileProperty = new LoginProfileProperty {
                 Password = "password",

                 // the properties below are optional
                 PasswordResetRequired = false
             };

Synopsis

Constructors

LoginProfileProperty()

Creates a password for the specified user, giving the user the ability to access AWS services through the AWS Management Console .

Properties

Password

The user's password.

PasswordResetRequired

Specifies whether the user is required to set a new password on next sign-in.

Constructors

LoginProfileProperty()

Creates a password for the specified user, giving the user the ability to access AWS services through the AWS Management Console .

public LoginProfileProperty()
Remarks

For more information about managing passwords, see Managing Passwords in the IAM User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.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.AWS.IAM;

             var loginProfileProperty = new LoginProfileProperty {
                 Password = "password",

                 // the properties below are optional
                 PasswordResetRequired = false
             };

Properties

Password

The user's password.

public string Password { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-password

PasswordResetRequired

Specifies whether the user is required to set a new password on next sign-in.

public object? PasswordResetRequired { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html#cfn-iam-user-loginprofile-passwordresetrequired

Type union: either bool or IResolvable

Implements

CfnUser.ILoginProfileProperty
Back to top Generated by DocFX