CfnTrustStoreProps
- class aws_cdk.aws_cloudfront.CfnTrustStoreProps(*, name, ca_certificates_bundle_source=None, tags=None)
Bases:
objectProperties for defining a
CfnTrustStore.- Parameters:
name (
str) – The trust store’s name.ca_certificates_bundle_source (
Union[IResolvable,CaCertificatesBundleSourceProperty,Dict[str,Any],None]) – A CA certificates bundle source.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – A complex type that contains zero or moreTagelements.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_cloudfront as cloudfront cfn_trust_store_props = cloudfront.CfnTrustStoreProps( name="name", # the properties below are optional ca_certificates_bundle_source=cloudfront.CfnTrustStore.CaCertificatesBundleSourceProperty( ca_certificates_bundle_s3_location=cloudfront.CfnTrustStore.CaCertificatesBundleS3LocationProperty( bucket="bucket", key="key", region="region", # the properties below are optional version="version" ) ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- ca_certificates_bundle_source
A CA certificates bundle source.
- name
The trust store’s name.
- tags
A complex type that contains zero or more
Tagelements.