CfnTrustStoreMixinProps
- class aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnTrustStoreMixinProps(*, ca_certificates_bundle_source=None, name=None, tags=None)
Bases:
objectProperties for CfnTrustStorePropsMixin.
- Parameters:
ca_certificates_bundle_source (
Union[IResolvable,CaCertificatesBundleSourceProperty,Dict[str,Any],None]) – A CA certificates bundle source.name (
Optional[str]) – The trust store’s name.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.mixins_preview.aws_cloudfront import mixins as cloudfront_mixins cfn_trust_store_mixin_props = cloudfront_mixins.CfnTrustStoreMixinProps( ca_certificates_bundle_source=cloudfront_mixins.CfnTrustStorePropsMixin.CaCertificatesBundleSourceProperty( ca_certificates_bundle_s3_location=cloudfront_mixins.CfnTrustStorePropsMixin.CaCertificatesBundleS3LocationProperty( bucket="bucket", key="key", region="region", version="version" ) ), name="name", 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.