Interface UserProfileDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UserProfileDetails.Builder,UserProfileDetails>,SdkBuilder<UserProfileDetails.Builder,UserProfileDetails>,SdkPojo
- Enclosing class:
- UserProfileDetails
public static interface UserProfileDetails.Builder extends SdkPojo, CopyableBuilder<UserProfileDetails.Builder,UserProfileDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default UserProfileDetails.Builderiam(Consumer<IamUserProfileDetails.Builder> iam)The IAM details included in the user profile details.UserProfileDetails.Builderiam(IamUserProfileDetails iam)The IAM details included in the user profile details.default UserProfileDetails.Buildersso(Consumer<SsoUserProfileDetails.Builder> sso)The single sign-on details included in the user profile details.UserProfileDetails.Buildersso(SsoUserProfileDetails sso)The single sign-on details included in the user profile details.-
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, sdkFields
-
-
-
-
Method Detail
-
iam
UserProfileDetails.Builder iam(IamUserProfileDetails iam)
The IAM details included in the user profile details.
- Parameters:
iam- The IAM details included in the user profile details.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
iam
default UserProfileDetails.Builder iam(Consumer<IamUserProfileDetails.Builder> iam)
The IAM details included in the user profile details.
This is a convenience method that creates an instance of theIamUserProfileDetails.Builderavoiding the need to create one manually viaIamUserProfileDetails.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toiam(IamUserProfileDetails).- Parameters:
iam- a consumer that will call methods onIamUserProfileDetails.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
iam(IamUserProfileDetails)
-
sso
UserProfileDetails.Builder sso(SsoUserProfileDetails sso)
The single sign-on details included in the user profile details.
- Parameters:
sso- The single sign-on details included in the user profile details.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sso
default UserProfileDetails.Builder sso(Consumer<SsoUserProfileDetails.Builder> sso)
The single sign-on details included in the user profile details.
This is a convenience method that creates an instance of theSsoUserProfileDetails.Builderavoiding the need to create one manually viaSsoUserProfileDetails.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosso(SsoUserProfileDetails).- Parameters:
sso- a consumer that will call methods onSsoUserProfileDetails.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
sso(SsoUserProfileDetails)
-
-