public static interface DeleteAttributesRequest.Builder extends SimpleDbRequest.Builder, CopyableBuilder<DeleteAttributesRequest.Builder,DeleteAttributesRequest>
Modifier and Type | Method and Description |
---|---|
DeleteAttributesRequest.Builder |
attributes(Attribute... attributes)
A list of Attributes.
|
DeleteAttributesRequest.Builder |
attributes(Collection<Attribute> attributes)
A list of Attributes.
|
DeleteAttributesRequest.Builder |
attributes(Consumer<Attribute.Builder>... attributes)
A list of Attributes.
|
DeleteAttributesRequest.Builder |
domainName(String domainName)
The name of the domain in which to perform the operation.
|
default DeleteAttributesRequest.Builder |
expected(Consumer<UpdateCondition.Builder> expected)
The update condition which, if specified, determines whether the specified attributes will be deleted or not.
|
DeleteAttributesRequest.Builder |
expected(UpdateCondition expected)
The update condition which, if specified, determines whether the specified attributes will be deleted or not.
|
DeleteAttributesRequest.Builder |
itemName(String itemName)
The name of the item.
|
DeleteAttributesRequest.Builder |
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
Add an optional request override configuration.
|
DeleteAttributesRequest.Builder |
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
Add an optional request override configuration.
|
build
overrideConfiguration
copy
applyMutation, build
DeleteAttributesRequest.Builder domainName(String domainName)
domainName
- The name of the domain in which to perform the operation.DeleteAttributesRequest.Builder itemName(String itemName)
itemName
- The name of the item. Similar to rows on a spreadsheet, items represent individual objects that
contain one or more value-attribute pairs.DeleteAttributesRequest.Builder attributes(Collection<Attribute> attributes)
attributes
- A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data
that can be assigned to items.DeleteAttributesRequest.Builder attributes(Attribute... attributes)
attributes
- A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data
that can be assigned to items.DeleteAttributesRequest.Builder attributes(Consumer<Attribute.Builder>... attributes)
List.Builder
avoiding the need to create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and its
result is passed to #attributes(List)
.attributes
- a consumer that will call methods on List.Builder
#attributes(List)
DeleteAttributesRequest.Builder expected(UpdateCondition expected)
expected
- The update condition which, if specified, determines whether the specified attributes will be deleted
or not. The update condition must be satisfied in order for this request to be processed and the
attributes to be deleted.default DeleteAttributesRequest.Builder expected(Consumer<UpdateCondition.Builder> expected)
UpdateCondition.Builder
avoiding the
need to create one manually via UpdateCondition.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to expected(UpdateCondition)
.expected
- a consumer that will call methods on UpdateCondition.Builder
expected(UpdateCondition)
DeleteAttributesRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
AwsRequest.Builder
overrideConfiguration
in interface AwsRequest.Builder
overrideConfiguration
- The override configuration.DeleteAttributesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
AwsRequest.Builder
overrideConfiguration
in interface AwsRequest.Builder
builderConsumer
- A Consumer
to which an empty AwsRequestOverrideConfiguration.Builder
will be
given.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.