Interface ListTagsOfResourceResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListTagsOfResourceResponse.Builder,ListTagsOfResourceResponse>,DynamoDbResponse.Builder,SdkBuilder<ListTagsOfResourceResponse.Builder,ListTagsOfResourceResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListTagsOfResourceResponse
@Mutable @NotThreadSafe public static interface ListTagsOfResourceResponse.Builder extends DynamoDbResponse.Builder, SdkPojo, CopyableBuilder<ListTagsOfResourceResponse.Builder,ListTagsOfResourceResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListTagsOfResourceResponse.BuildernextToken(String nextToken)If this value is returned, there are additional results to be displayed.ListTagsOfResourceResponse.Buildertags(Collection<Tag> tags)The tags currently associated with the Amazon DynamoDB resource.ListTagsOfResourceResponse.Buildertags(Consumer<Tag.Builder>... tags)The tags currently associated with the Amazon DynamoDB resource.ListTagsOfResourceResponse.Buildertags(Tag... tags)The tags currently associated with the Amazon DynamoDB resource.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.dynamodb.model.DynamoDbResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
tags
ListTagsOfResourceResponse.Builder tags(Collection<Tag> tags)
The tags currently associated with the Amazon DynamoDB resource.
- Parameters:
tags- The tags currently associated with the Amazon DynamoDB resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
ListTagsOfResourceResponse.Builder tags(Tag... tags)
The tags currently associated with the Amazon DynamoDB resource.
- Parameters:
tags- The tags currently associated with the Amazon DynamoDB resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
ListTagsOfResourceResponse.Builder tags(Consumer<Tag.Builder>... tags)
The tags currently associated with the Amazon DynamoDB resource.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
nextToken
ListTagsOfResourceResponse.Builder nextToken(String nextToken)
If this value is returned, there are additional results to be displayed. To retrieve them, call ListTagsOfResource again, with NextToken set to this value.
- Parameters:
nextToken- If this value is returned, there are additional results to be displayed. To retrieve them, call ListTagsOfResource again, with NextToken set to this value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-