Interface ListTagsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListTagsResponse.Builder,ListTagsResponse>,DaxResponse.Builder,SdkBuilder<ListTagsResponse.Builder,ListTagsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListTagsResponse
public static interface ListTagsResponse.Builder extends DaxResponse.Builder, SdkPojo, CopyableBuilder<ListTagsResponse.Builder,ListTagsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListTagsResponse.BuildernextToken(String nextToken)If this value is present, there are additional results to be displayed.ListTagsResponse.Buildertags(Collection<Tag> tags)A list of tags currently associated with the DAX cluster.ListTagsResponse.Buildertags(Consumer<Tag.Builder>... tags)A list of tags currently associated with the DAX cluster.ListTagsResponse.Buildertags(Tag... tags)A list of tags currently associated with the DAX cluster.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.dax.model.DaxResponse.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
ListTagsResponse.Builder tags(Collection<Tag> tags)
A list of tags currently associated with the DAX cluster.
- Parameters:
tags- A list of tags currently associated with the DAX cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
ListTagsResponse.Builder tags(Tag... tags)
A list of tags currently associated with the DAX cluster.
- Parameters:
tags- A list of tags currently associated with the DAX cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
ListTagsResponse.Builder tags(Consumer<Tag.Builder>... tags)
A list of tags currently associated with the DAX cluster.
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
ListTagsResponse.Builder nextToken(String nextToken)
If this value is present, there are additional results to be displayed. To retrieve them, call
ListTagsagain, withNextTokenset to this value.- Parameters:
nextToken- If this value is present, there are additional results to be displayed. To retrieve them, callListTagsagain, withNextTokenset to this value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-