Interface LoginProfile.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<LoginProfile.Builder,LoginProfile>
,SdkBuilder<LoginProfile.Builder,LoginProfile>
,SdkPojo
- Enclosing class:
- LoginProfile
public static interface LoginProfile.Builder extends SdkPojo, CopyableBuilder<LoginProfile.Builder,LoginProfile>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LoginProfile.Builder
createDate(Instant createDate)
The date when the password for the user was created.LoginProfile.Builder
passwordResetRequired(Boolean passwordResetRequired)
Specifies whether the user is required to set a new password on next sign-in.LoginProfile.Builder
userName(String userName)
The name of the user, which can be used for signing in to the Amazon Web Services Management Console.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
userName
LoginProfile.Builder userName(String userName)
The name of the user, which can be used for signing in to the Amazon Web Services Management Console.
- Parameters:
userName
- The name of the user, which can be used for signing in to the Amazon Web Services Management Console.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createDate
LoginProfile.Builder createDate(Instant createDate)
The date when the password for the user was created.
- Parameters:
createDate
- The date when the password for the user was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
passwordResetRequired
LoginProfile.Builder passwordResetRequired(Boolean passwordResetRequired)
Specifies whether the user is required to set a new password on next sign-in.
- Parameters:
passwordResetRequired
- Specifies whether the user is required to set a new password on next sign-in.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-