Interface Identity.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<Identity.Builder,Identity>
,SdkBuilder<Identity.Builder,Identity>
,SdkPojo
- Enclosing class:
- Identity
public static interface Identity.Builder extends SdkPojo, CopyableBuilder<Identity.Builder,Identity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Identity.Builder
principalId(String principalId)
A unique identifier for the entity that made the call.Identity.Builder
type(String type)
The type of the identity.-
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
-
principalId
Identity.Builder principalId(String principalId)
A unique identifier for the entity that made the call. For Time To Live, the principalId is "dynamodb.amazonaws.com".
- Parameters:
principalId
- A unique identifier for the entity that made the call. For Time To Live, the principalId is "dynamodb.amazonaws.com".- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
Identity.Builder type(String type)
The type of the identity. For Time To Live, the type is "Service".
- Parameters:
type
- The type of the identity. For Time To Live, the type is "Service".- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-