Interface ListTagsForCertificateResponse.Builder
-
- All Superinterfaces:
AcmResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ListTagsForCertificateResponse.Builder,ListTagsForCertificateResponse>,SdkBuilder<ListTagsForCertificateResponse.Builder,ListTagsForCertificateResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListTagsForCertificateResponse
public static interface ListTagsForCertificateResponse.Builder extends AcmResponse.Builder, SdkPojo, CopyableBuilder<ListTagsForCertificateResponse.Builder,ListTagsForCertificateResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListTagsForCertificateResponse.Buildertags(Collection<Tag> tags)The key-value pairs that define the applied tags.ListTagsForCertificateResponse.Buildertags(Consumer<Tag.Builder>... tags)The key-value pairs that define the applied tags.ListTagsForCertificateResponse.Buildertags(Tag... tags)The key-value pairs that define the applied tags.-
Methods inherited from interface software.amazon.awssdk.services.acm.model.AcmResponse.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
ListTagsForCertificateResponse.Builder tags(Collection<Tag> tags)
The key-value pairs that define the applied tags.
- Parameters:
tags- The key-value pairs that define the applied tags.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
ListTagsForCertificateResponse.Builder tags(Tag... tags)
The key-value pairs that define the applied tags.
- Parameters:
tags- The key-value pairs that define the applied tags.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
ListTagsForCertificateResponse.Builder tags(Consumer<Tag.Builder>... tags)
The key-value pairs that define the applied tags.
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)
-
-