Interface SearchResourceTagsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,ConnectResponse.Builder,CopyableBuilder<SearchResourceTagsResponse.Builder,SearchResourceTagsResponse>,SdkBuilder<SearchResourceTagsResponse.Builder,SearchResourceTagsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- SearchResourceTagsResponse
public static interface SearchResourceTagsResponse.Builder extends ConnectResponse.Builder, SdkPojo, CopyableBuilder<SearchResourceTagsResponse.Builder,SearchResourceTagsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchResourceTagsResponse.BuildernextToken(String nextToken)If there are additional results, this is the token for the next set of results.SearchResourceTagsResponse.Buildertags(Collection<TagSet> tags)A list of tags used in the Amazon Connect instance.SearchResourceTagsResponse.Buildertags(Consumer<TagSet.Builder>... tags)A list of tags used in the Amazon Connect instance.SearchResourceTagsResponse.Buildertags(TagSet... tags)A list of tags used in the Amazon Connect instance.-
Methods inherited from interface software.amazon.awssdk.services.connect.model.ConnectResponse.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
SearchResourceTagsResponse.Builder tags(Collection<TagSet> tags)
A list of tags used in the Amazon Connect instance.
- Parameters:
tags- A list of tags used in the Amazon Connect instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
SearchResourceTagsResponse.Builder tags(TagSet... tags)
A list of tags used in the Amazon Connect instance.
- Parameters:
tags- A list of tags used in the Amazon Connect instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
SearchResourceTagsResponse.Builder tags(Consumer<TagSet.Builder>... tags)
A list of tags used in the Amazon Connect instance.
This is a convenience method that creates an instance of theTagSet.Builderavoiding the need to create one manually viaTagSet.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 onTagSet.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
nextToken
SearchResourceTagsResponse.Builder nextToken(String nextToken)
If there are additional results, this is the token for the next set of results.
- Parameters:
nextToken- If there are additional results, this is the token for the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-