@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:02.048Z") @Stability(value=Experimental) public interface MTLSConfig extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.apigatewayv2.*;
import software.amazon.awscdk.services.s3.*;
Bucket bucket;
MTLSConfig mTLSConfig = MTLSConfig.builder()
.bucket(bucket)
.key("key")
// the properties below are optional
.version("version")
.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.