Interface PrincipalOutput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PrincipalOutput.Builder,PrincipalOutput>,SdkBuilder<PrincipalOutput.Builder,PrincipalOutput>,SdkPojo
- Enclosing class:
- PrincipalOutput
public static interface PrincipalOutput.Builder extends SdkPojo, CopyableBuilder<PrincipalOutput.Builder,PrincipalOutput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PrincipalOutput.Builderemail(String email)The email address associated with the user.PrincipalOutput.BuilderuserId(String userId)The unique identifier of the user.PrincipalOutput.BuilderuserType(String userType)The type of the user.PrincipalOutput.BuilderuserType(PrincipalOutputUserTypeEnum userType)The type of the user.-
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
-
userId
PrincipalOutput.Builder userId(String userId)
The unique identifier of the user.
- Parameters:
userId- The unique identifier of the user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userType
PrincipalOutput.Builder userType(String userType)
The type of the user.
- Parameters:
userType- The type of the user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PrincipalOutputUserTypeEnum,PrincipalOutputUserTypeEnum
-
userType
PrincipalOutput.Builder userType(PrincipalOutputUserTypeEnum userType)
The type of the user.
- Parameters:
userType- The type of the user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PrincipalOutputUserTypeEnum,PrincipalOutputUserTypeEnum
-
email
PrincipalOutput.Builder email(String email)
The email address associated with the user.
- Parameters:
email- The email address associated with the user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-