MTLSConfig¶
-
class
aws_cdk.aws_apigateway.
MTLSConfig
(*, bucket, key, version=None)¶ Bases:
object
The mTLS authentication configuration for a custom domain name.
- Parameters
bucket (
IBucket
) – The bucket that the trust store is hosted in.key (
str
) – The key in S3 to look at for the trust store.version (
Optional
[str
]) – The version of the S3 object that contains your truststore. To specify a version, you must have versioning enabled for the S3 bucket. Default: - latest version
Attributes
-
key
¶ The key in S3 to look at for the trust store.
- Return type
str
-
version
¶ The version of the S3 object that contains your truststore.
To specify a version, you must have versioning enabled for the S3 bucket.
- Default
latest version
- Return type
Optional
[str
]