CfnTrustStoreMixinProps

class aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnTrustStoreMixinProps(*, ca_certificates_bundle_source=None, name=None, tags=None)

Bases: object

Properties 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 more Tag elements.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-truststore.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-truststore.html#cfn-cloudfront-truststore-cacertificatesbundlesource

name

The trust store’s name.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-truststore.html#cfn-cloudfront-truststore-name

tags

A complex type that contains zero or more Tag elements.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-truststore.html#cfn-cloudfront-truststore-tags