Interface CfnTrustStorePropsMixin.CaCertificatesBundleSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTrustStorePropsMixin.CaCertificatesBundleSourceProperty.Jsii$Proxy
- Enclosing class:
CfnTrustStorePropsMixin
@Stability(Stable)
public static interface CfnTrustStorePropsMixin.CaCertificatesBundleSourceProperty
extends software.amazon.jsii.JsiiSerializable
A CA certificates bundle source.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.cloudfront.*;
CaCertificatesBundleSourceProperty caCertificatesBundleSourceProperty = CaCertificatesBundleSourceProperty.builder()
.caCertificatesBundleS3Location(CaCertificatesBundleS3LocationProperty.builder()
.bucket("bucket")
.key("key")
.region("region")
.version("version")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnTrustStorePropsMixin.CaCertificatesBundleSourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCaCertificatesBundleS3Location
The CA certificates bundle location in Amazon S3.Returns union: either
IResolvableorCfnTrustStorePropsMixin.CaCertificatesBundleS3LocationProperty- See Also:
-
builder
@Stability(Stable) static CfnTrustStorePropsMixin.CaCertificatesBundleSourceProperty.Builder builder()
-