Interface DeleteIdentitiesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CognitoIdentityResponse.Builder,CopyableBuilder<DeleteIdentitiesResponse.Builder,DeleteIdentitiesResponse>,SdkBuilder<DeleteIdentitiesResponse.Builder,DeleteIdentitiesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DeleteIdentitiesResponse
public static interface DeleteIdentitiesResponse.Builder extends CognitoIdentityResponse.Builder, SdkPojo, CopyableBuilder<DeleteIdentitiesResponse.Builder,DeleteIdentitiesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeleteIdentitiesResponse.BuilderunprocessedIdentityIds(Collection<UnprocessedIdentityId> unprocessedIdentityIds)An array of UnprocessedIdentityId objects, each of which contains an ErrorCode and IdentityId.DeleteIdentitiesResponse.BuilderunprocessedIdentityIds(Consumer<UnprocessedIdentityId.Builder>... unprocessedIdentityIds)An array of UnprocessedIdentityId objects, each of which contains an ErrorCode and IdentityId.DeleteIdentitiesResponse.BuilderunprocessedIdentityIds(UnprocessedIdentityId... unprocessedIdentityIds)An array of UnprocessedIdentityId objects, each of which contains an ErrorCode and IdentityId.-
Methods inherited from interface software.amazon.awssdk.services.cognitoidentity.model.CognitoIdentityResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
unprocessedIdentityIds
DeleteIdentitiesResponse.Builder unprocessedIdentityIds(Collection<UnprocessedIdentityId> unprocessedIdentityIds)
An array of UnprocessedIdentityId objects, each of which contains an ErrorCode and IdentityId.
- Parameters:
unprocessedIdentityIds- An array of UnprocessedIdentityId objects, each of which contains an ErrorCode and IdentityId.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unprocessedIdentityIds
DeleteIdentitiesResponse.Builder unprocessedIdentityIds(UnprocessedIdentityId... unprocessedIdentityIds)
An array of UnprocessedIdentityId objects, each of which contains an ErrorCode and IdentityId.
- Parameters:
unprocessedIdentityIds- An array of UnprocessedIdentityId objects, each of which contains an ErrorCode and IdentityId.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unprocessedIdentityIds
DeleteIdentitiesResponse.Builder unprocessedIdentityIds(Consumer<UnprocessedIdentityId.Builder>... unprocessedIdentityIds)
An array of UnprocessedIdentityId objects, each of which contains an ErrorCode and IdentityId.
This is a convenience method that creates an instance of theUnprocessedIdentityId.Builderavoiding the need to create one manually viaUnprocessedIdentityId.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#unprocessedIdentityIds(List.) - Parameters:
unprocessedIdentityIds- a consumer that will call methods onUnprocessedIdentityId.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#unprocessedIdentityIds(java.util.Collection)
-
-