Interface CfnUser.LoginProfileProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUser.LoginProfileProperty.Jsii$Proxy
Enclosing class:
CfnUser

@Stability(Stable) public static interface CfnUser.LoginProfileProperty extends software.amazon.jsii.JsiiSerializable
Creates a password for the specified user, giving the user the ability to access AWS services through the AWS Management Console .

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

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.iam.*;
 LoginProfileProperty loginProfileProperty = LoginProfileProperty.builder()
         .password("password")
         // the properties below are optional
         .passwordResetRequired(false)
         .build();
 

See Also: