Show / Hide Table of Contents

Interface CfnUser.ILoginProfileProperty

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

Namespace: Amazon.CDK.AWS.IAM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnUser.ILoginProfileProperty
Syntax (vb)
Public Interface 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

Properties

Password

The user's password.

PasswordResetRequired

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

Properties

Password

The user's password.

string Password { get; }
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.

object? PasswordResetRequired { get; }
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

Back to top Generated by DocFX