Interface DescribeTagsResponse.Builder
-
- All Superinterfaces:
AutoScalingResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<DescribeTagsResponse.Builder,DescribeTagsResponse>,SdkBuilder<DescribeTagsResponse.Builder,DescribeTagsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeTagsResponse
public static interface DescribeTagsResponse.Builder extends AutoScalingResponse.Builder, SdkPojo, CopyableBuilder<DescribeTagsResponse.Builder,DescribeTagsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeTagsResponse.BuildernextToken(String nextToken)A string that indicates that the response contains more items than can be returned in a single response.DescribeTagsResponse.Buildertags(Collection<TagDescription> tags)One or more tags.DescribeTagsResponse.Buildertags(Consumer<TagDescription.Builder>... tags)One or more tags.DescribeTagsResponse.Buildertags(TagDescription... tags)One or more tags.-
Methods inherited from interface software.amazon.awssdk.services.autoscaling.model.AutoScalingResponse.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
-
tags
DescribeTagsResponse.Builder tags(Collection<TagDescription> tags)
One or more tags.
- Parameters:
tags- One or more tags.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
DescribeTagsResponse.Builder tags(TagDescription... tags)
One or more tags.
- Parameters:
tags- One or more tags.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
DescribeTagsResponse.Builder tags(Consumer<TagDescription.Builder>... tags)
One or more tags.
This is a convenience method that creates an instance of theTagDescription.Builderavoiding the need to create one manually viaTagDescription.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 onTagDescription.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
nextToken
DescribeTagsResponse.Builder nextToken(String nextToken)
A string that indicates that the response contains more items than can be returned in a single response. To receive additional items, specify this string for the
NextTokenvalue when requesting the next set of items. This value is null when there are no more items to return.- Parameters:
nextToken- A string that indicates that the response contains more items than can be returned in a single response. To receive additional items, specify this string for theNextTokenvalue when requesting the next set of items. This value is null when there are no more items to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-