Interface UserIdentity.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<UserIdentity.Builder,UserIdentity>
,SdkBuilder<UserIdentity.Builder,UserIdentity>
,SdkPojo
- Enclosing class:
- UserIdentity
public static interface UserIdentity.Builder extends SdkPojo, CopyableBuilder<UserIdentity.Builder,UserIdentity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserIdentity.Builder
principalId(String principalId)
A unique identifier for the requester that calls the API operation.UserIdentity.Builder
type(String type)
The identity type of the requester that calls the API operation.UserIdentity.Builder
type(UserIdentityType type)
The identity type of the requester that calls the API operation.-
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
-
type
UserIdentity.Builder type(String type)
The identity type of the requester that calls the API operation.
- Parameters:
type
-The identity type of the requester that calls the API operation.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
UserIdentityType
,UserIdentityType
-
type
UserIdentity.Builder type(UserIdentityType type)
The identity type of the requester that calls the API operation.
- Parameters:
type
-The identity type of the requester that calls the API operation.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
UserIdentityType
,UserIdentityType
-
principalId
UserIdentity.Builder principalId(String principalId)
A unique identifier for the requester that calls the API operation.
- Parameters:
principalId
-A unique identifier for the requester that calls the API operation.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-