Interface RemoveTagsFromCertificateRequest.Builder
-
- All Superinterfaces:
AcmRequest.Builder,AwsRequest.Builder,Buildable,CopyableBuilder<RemoveTagsFromCertificateRequest.Builder,RemoveTagsFromCertificateRequest>,SdkBuilder<RemoveTagsFromCertificateRequest.Builder,RemoveTagsFromCertificateRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- RemoveTagsFromCertificateRequest
public static interface RemoveTagsFromCertificateRequest.Builder extends AcmRequest.Builder, SdkPojo, CopyableBuilder<RemoveTagsFromCertificateRequest.Builder,RemoveTagsFromCertificateRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RemoveTagsFromCertificateRequest.BuildercertificateArn(String certificateArn)String that contains the ARN of the ACM Certificate with one or more tags that you want to remove.RemoveTagsFromCertificateRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)RemoveTagsFromCertificateRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)RemoveTagsFromCertificateRequest.Buildertags(Collection<Tag> tags)The key-value pair that defines the tag to remove.RemoveTagsFromCertificateRequest.Buildertags(Consumer<Tag.Builder>... tags)The key-value pair that defines the tag to remove.RemoveTagsFromCertificateRequest.Buildertags(Tag... tags)The key-value pair that defines the tag to remove.-
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
RemoveTagsFromCertificateRequest.Builder certificateArn(String certificateArn)
String that contains the ARN of the ACM Certificate with one or more tags that you want to remove. 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 with one or more tags that you want to remove. 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
RemoveTagsFromCertificateRequest.Builder tags(Collection<Tag> tags)
The key-value pair that defines the tag to remove.
- Parameters:
tags- The key-value pair that defines the tag to remove.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
RemoveTagsFromCertificateRequest.Builder tags(Tag... tags)
The key-value pair that defines the tag to remove.
- Parameters:
tags- The key-value pair that defines the tag to remove.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
RemoveTagsFromCertificateRequest.Builder tags(Consumer<Tag.Builder>... tags)
The key-value pair that defines the tag to remove.
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
RemoveTagsFromCertificateRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
RemoveTagsFromCertificateRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-