CfnTrustStoreProps

class aws_cdk.aws_cloudfront.CfnTrustStoreProps(*, name, ca_certificates_bundle_source=None, tags=None)

Bases: object

Properties 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 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 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.

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