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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUser.LoginProfilePropertystatic final classAn implementation forCfnUser.LoginProfileProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPassword
The user's password. -
getPasswordResetRequired
Specifies whether the user is required to set a new password on next sign-in. -
builder
-