Interface ListTagsForResourceResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListTagsForResourceResponse.Builder,ListTagsForResourceResponse>,SdkBuilder<ListTagsForResourceResponse.Builder,ListTagsForResourceResponse>,SdkPojo,SdkResponse.Builder,SsoAdminResponse.Builder
- Enclosing class:
- ListTagsForResourceResponse
public static interface ListTagsForResourceResponse.Builder extends SsoAdminResponse.Builder, SdkPojo, CopyableBuilder<ListTagsForResourceResponse.Builder,ListTagsForResourceResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListTagsForResourceResponse.BuildernextToken(String nextToken)The pagination token for the list API.ListTagsForResourceResponse.Buildertags(Collection<Tag> tags)A set of key-value pairs that are used to manage the resource.ListTagsForResourceResponse.Buildertags(Consumer<Tag.Builder>... tags)A set of key-value pairs that are used to manage the resource.ListTagsForResourceResponse.Buildertags(Tag... tags)A set of key-value pairs that are used to manage the resource.-
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
-
Methods inherited from interface software.amazon.awssdk.services.ssoadmin.model.SsoAdminResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
nextToken
ListTagsForResourceResponse.Builder nextToken(String nextToken)
The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.
- Parameters:
nextToken- The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
ListTagsForResourceResponse.Builder tags(Collection<Tag> tags)
A set of key-value pairs that are used to manage the resource.
- Parameters:
tags- A set of key-value pairs that are used to manage the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
ListTagsForResourceResponse.Builder tags(Tag... tags)
A set of key-value pairs that are used to manage the resource.
- Parameters:
tags- A set of key-value pairs that are used to manage the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
ListTagsForResourceResponse.Builder tags(Consumer<Tag.Builder>... tags)
A set of key-value pairs that are used to manage the 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)
-
-