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
Modifier and TypeMethodDescriptionunprocessedIdentityIds
(Collection<UnprocessedIdentityId> unprocessedIdentityIds) An array of UnprocessedIdentityId objects, each of which contains an ErrorCode and IdentityId.unprocessedIdentityIds
(Consumer<UnprocessedIdentityId.Builder>... unprocessedIdentityIds) An array of UnprocessedIdentityId objects, each of which contains an ErrorCode and IdentityId.unprocessedIdentityIds
(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 Details
-
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.Builder
avoiding the need to create one manually viaUnprocessedIdentityId.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tounprocessedIdentityIds(List<UnprocessedIdentityId>)
.- 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:
-