Interface CfnTrustStoreProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTrustStoreProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-12-01T16:02:16.197Z")
@Stability(Stable)
public interface CfnTrustStoreProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnTrustStore.
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.cloudfront.*;
CfnTrustStoreProps cfnTrustStoreProps = CfnTrustStoreProps.builder()
.name("name")
// the properties below are optional
.caCertificatesBundleSource(CaCertificatesBundleSourceProperty.builder()
.caCertificatesBundleS3Location(CaCertificatesBundleS3LocationProperty.builder()
.bucket("bucket")
.key("key")
.region("region")
// the properties below are optional
.version("version")
.build())
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTrustStorePropsstatic final classAn implementation forCfnTrustStoreProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnTrustStoreProps.Builderbuilder()default ObjectA CA certificates bundle source.getName()The trust store's name.getTags()A complex type that contains zero or moreTagelements.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The trust store's name.- See Also:
-
getCaCertificatesBundleSource
A CA certificates bundle source.Returns union: either
IResolvableorCfnTrustStore.CaCertificatesBundleSourceProperty- See Also:
-
getTags
A complex type that contains zero or moreTagelements.- See Also:
-
builder
- Returns:
- a
CfnTrustStoreProps.BuilderofCfnTrustStoreProps
-