Interface AddTagsToCertificateRequest.Builder
-
- All Superinterfaces:
AcmRequest.Builder,AwsRequest.Builder,Buildable,CopyableBuilder<AddTagsToCertificateRequest.Builder,AddTagsToCertificateRequest>,SdkBuilder<AddTagsToCertificateRequest.Builder,AddTagsToCertificateRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- AddTagsToCertificateRequest
public static interface AddTagsToCertificateRequest.Builder extends AcmRequest.Builder, SdkPojo, CopyableBuilder<AddTagsToCertificateRequest.Builder,AddTagsToCertificateRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AddTagsToCertificateRequest.BuildercertificateArn(String certificateArn)String that contains the ARN of the ACM certificate to which the tag is to be applied.AddTagsToCertificateRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)AddTagsToCertificateRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)AddTagsToCertificateRequest.Buildertags(Collection<Tag> tags)The key-value pair that defines the tag.AddTagsToCertificateRequest.Buildertags(Consumer<Tag.Builder>... tags)The key-value pair that defines the tag.AddTagsToCertificateRequest.Buildertags(Tag... tags)The key-value pair that defines the tag.-
Methods inherited from interface software.amazon.awssdk.services.acm.model.AcmRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
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
-
-
-
-
Method Detail
-
certificateArn
AddTagsToCertificateRequest.Builder certificateArn(String certificateArn)
String that contains the ARN of the ACM certificate to which the tag is to be applied. This must be of the form:
arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012For more information about ARNs, see Amazon Resource Names (ARNs).
- Parameters:
certificateArn- String that contains the ARN of the ACM certificate to which the tag is to be applied. This must be of the form:arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012For more information about ARNs, see Amazon Resource Names (ARNs).
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
AddTagsToCertificateRequest.Builder tags(Collection<Tag> tags)
The key-value pair that defines the tag. The tag value is optional.
- Parameters:
tags- The key-value pair that defines the tag. The tag value is optional.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
AddTagsToCertificateRequest.Builder tags(Tag... tags)
The key-value pair that defines the tag. The tag value is optional.
- Parameters:
tags- The key-value pair that defines the tag. The tag value is optional.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
AddTagsToCertificateRequest.Builder tags(Consumer<Tag.Builder>... tags)
The key-value pair that defines the tag. The tag value is optional.
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)
-
overrideConfiguration
AddTagsToCertificateRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
AddTagsToCertificateRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-