Interface DescribeTagsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeTagsResponse.Builder,DescribeTagsResponse>,Ec2Response.Builder,SdkBuilder<DescribeTagsResponse.Builder,DescribeTagsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeTagsResponse
public static interface DescribeTagsResponse.Builder extends Ec2Response.Builder, SdkPojo, CopyableBuilder<DescribeTagsResponse.Builder,DescribeTagsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeTagsResponse.BuildernextToken(String nextToken)The token to include in another request to get the next page of items.DescribeTagsResponse.Buildertags(Collection<TagDescription> tags)The tags.DescribeTagsResponse.Buildertags(Consumer<TagDescription.Builder>... tags)The tags.DescribeTagsResponse.Buildertags(TagDescription... tags)The tags.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.ec2.model.Ec2Response.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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
nextToken
DescribeTagsResponse.Builder nextToken(String nextToken)
The token to include in another request to get the next page of items. This value is
nullwhen there are no more items to return.- Parameters:
nextToken- The token to include in another request to get the next page of items. This value isnullwhen there are no more items to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
DescribeTagsResponse.Builder tags(Collection<TagDescription> tags)
The tags.
- Parameters:
tags- The tags.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
DescribeTagsResponse.Builder tags(TagDescription... tags)
The tags.
- Parameters:
tags- The tags.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
DescribeTagsResponse.Builder tags(Consumer<TagDescription.Builder>... tags)
The 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)
-
-