Interface ListTagsResponse.Builder
-
- All Superinterfaces:
AcmPcaResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ListTagsResponse.Builder,ListTagsResponse>,SdkBuilder<ListTagsResponse.Builder,ListTagsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListTagsResponse
public static interface ListTagsResponse.Builder extends AcmPcaResponse.Builder, SdkPojo, CopyableBuilder<ListTagsResponse.Builder,ListTagsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListTagsResponse.BuildernextToken(String nextToken)When the list is truncated, this value is present and should be used for the NextToken parameter in a subsequent pagination request.ListTagsResponse.Buildertags(Collection<Tag> tags)The tags associated with your private CA.ListTagsResponse.Buildertags(Consumer<Tag.Builder>... tags)The tags associated with your private CA.ListTagsResponse.Buildertags(Tag... tags)The tags associated with your private CA.-
Methods inherited from interface software.amazon.awssdk.services.acmpca.model.AcmPcaResponse.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
nextToken
ListTagsResponse.Builder nextToken(String nextToken)
When the list is truncated, this value is present and should be used for the NextToken parameter in a subsequent pagination request.
- Parameters:
nextToken- When the list is truncated, this value is present and should be used for the NextToken parameter in a subsequent pagination request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
ListTagsResponse.Builder tags(Collection<Tag> tags)
The tags associated with your private CA.
- Parameters:
tags- The tags associated with your private CA.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
ListTagsResponse.Builder tags(Tag... tags)
The tags associated with your private CA.
- Parameters:
tags- The tags associated with your private CA.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
ListTagsResponse.Builder tags(Consumer<Tag.Builder>... tags)
The tags associated with your private CA.
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)
-
-