@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)", date="2022-05-11T19:24:23.660Z") @Stability(value=Experimental) public interface MTLSConfig extends software.amazon.jsii.JsiiSerializable
Example:
import software.amazon.awscdk.core.*;
import software.amazon.awscdk.core.*;
Bucket bucket;
String certArn = "arn:aws:acm:us-east-1:111111111111:certificate";
String domainName = "example.com";
DomainName.Builder.create(this, "DomainName")
.domainName(domainName)
.certificate(Certificate.fromCertificateArn(this, "cert", certArn))
.mtls(MTLSConfig.builder()
.bucket(bucket)
.key("someca.pem")
.version("version")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
MTLSConfig.Builder
A builder for
MTLSConfig |
static class |
MTLSConfig.Jsii$Proxy
An implementation for
MTLSConfig |
| Modifier and Type | Method and Description |
|---|---|
static MTLSConfig.Builder |
builder() |
IBucket |
getBucket()
(experimental) The bucket that the trust store is hosted in.
|
String |
getKey()
(experimental) The key in S3 to look at for the trust store.
|
default String |
getVersion()
(experimental) The version of the S3 object that contains your truststore.
|
@Stability(value=Experimental) @NotNull IBucket getBucket()
@Stability(value=Experimental) @NotNull String getKey()
@Stability(value=Experimental) @Nullable default String getVersion()
To specify a version, you must have versioning enabled for the S3 bucket.
Default: - latest version
@Stability(value=Experimental) static MTLSConfig.Builder builder()
MTLSConfig.Builder of MTLSConfigCopyright © 2022. All rights reserved.