public static interface UserType.Builder extends CopyableBuilder<UserType.Builder,UserType>
| Modifier and Type | Method and Description |
|---|---|
UserType.Builder |
attributes(AttributeType... attributes)
A container with information about the user type attributes.
|
UserType.Builder |
attributes(Collection<AttributeType> attributes)
A container with information about the user type attributes.
|
UserType.Builder |
attributes(Consumer<AttributeType.Builder>... attributes)
A container with information about the user type attributes.
|
UserType.Builder |
enabled(Boolean enabled)
Specifies whether the user is enabled.
|
UserType.Builder |
mfaOptions(Collection<MFAOptionType> mfaOptions)
The MFA options for the user.
|
UserType.Builder |
mfaOptions(Consumer<MFAOptionType.Builder>... mfaOptions)
The MFA options for the user.
|
UserType.Builder |
mfaOptions(MFAOptionType... mfaOptions)
The MFA options for the user.
|
UserType.Builder |
userCreateDate(Instant userCreateDate)
The creation date of the user.
|
UserType.Builder |
userLastModifiedDate(Instant userLastModifiedDate)
The last modified date of the user.
|
UserType.Builder |
username(String username)
The user name of the user you wish to describe.
|
UserType.Builder |
userStatus(String userStatus)
The user status.
|
UserType.Builder |
userStatus(UserStatusType userStatus)
The user status.
|
copyapply, buildUserType.Builder username(String username)
The user name of the user you wish to describe.
username - The user name of the user you wish to describe.UserType.Builder attributes(Collection<AttributeType> attributes)
A container with information about the user type attributes.
attributes - A container with information about the user type attributes.UserType.Builder attributes(AttributeType... attributes)
A container with information about the user type attributes.
attributes - A container with information about the user type attributes.UserType.Builder attributes(Consumer<AttributeType.Builder>... attributes)
A container with information about the user type attributes.
This is a convenience that creates an instance of theList.Builder avoiding the need
to create one manually via List#builder() .
When the Consumer completes, List.Builder#build() is called immediately and
its result is passed to #attributes(List) .attributes - a consumer that will call methods on List.Builder #attributes(List) UserType.Builder userCreateDate(Instant userCreateDate)
The creation date of the user.
userCreateDate - The creation date of the user.UserType.Builder userLastModifiedDate(Instant userLastModifiedDate)
The last modified date of the user.
userLastModifiedDate - The last modified date of the user.UserType.Builder enabled(Boolean enabled)
Specifies whether the user is enabled.
enabled - Specifies whether the user is enabled.UserType.Builder userStatus(String userStatus)
The user status. Can be one of the following:
UNCONFIRMED - User has been created but not confirmed.
CONFIRMED - User has been confirmed.
ARCHIVED - User is no longer active.
COMPROMISED - User is disabled due to a potential security threat.
UNKNOWN - User status is not known.
userStatus - The user status. Can be one of the following:
UNCONFIRMED - User has been created but not confirmed.
CONFIRMED - User has been confirmed.
ARCHIVED - User is no longer active.
COMPROMISED - User is disabled due to a potential security threat.
UNKNOWN - User status is not known.
UserStatusType,
UserStatusTypeUserType.Builder userStatus(UserStatusType userStatus)
The user status. Can be one of the following:
UNCONFIRMED - User has been created but not confirmed.
CONFIRMED - User has been confirmed.
ARCHIVED - User is no longer active.
COMPROMISED - User is disabled due to a potential security threat.
UNKNOWN - User status is not known.
userStatus - The user status. Can be one of the following:
UNCONFIRMED - User has been created but not confirmed.
CONFIRMED - User has been confirmed.
ARCHIVED - User is no longer active.
COMPROMISED - User is disabled due to a potential security threat.
UNKNOWN - User status is not known.
UserStatusType,
UserStatusTypeUserType.Builder mfaOptions(Collection<MFAOptionType> mfaOptions)
The MFA options for the user.
mfaOptions - The MFA options for the user.UserType.Builder mfaOptions(MFAOptionType... mfaOptions)
The MFA options for the user.
mfaOptions - The MFA options for the user.UserType.Builder mfaOptions(Consumer<MFAOptionType.Builder>... mfaOptions)
The MFA options for the user.
This is a convenience that creates an instance of theList.Builder avoiding the need
to create one manually via List#builder() .
When the Consumer completes, List.Builder#build() is called immediately and
its result is passed to #mfaOptions(List) .mfaOptions - a consumer that will call methods on List.Builder #mfaOptions(List) Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.