CfnTrustStoreMixinProps

class aws_cdk.cfn_property_mixins.aws_cloudfront.CfnTrustStoreMixinProps(*, ca_certificates_bundle_source=None, name=None, tags=None, use_client_certificate_ocsp_endpoint=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.

  • use_client_certificate_ocsp_endpoint (Union[bool, IResolvable, None]) – A boolean. When true, performs real-time certificate revocation checks by querying the OCSP endpoint specified within the client certificate.

See:

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

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.cfn_property_mixins import aws_cloudfront as cloudfront

cfn_trust_store_mixin_props = cloudfront.CfnTrustStoreMixinProps(
    ca_certificates_bundle_source=cloudfront.CfnTrustStorePropsMixin.CaCertificatesBundleSourceProperty(
        ca_certificates_bundle_s3_location=cloudfront.CfnTrustStorePropsMixin.CaCertificatesBundleS3LocationProperty(
            bucket="bucket",
            key="key",
            region="region",
            version="version"
        )
    ),
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    use_client_certificate_ocsp_endpoint=False
)

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

use_client_certificate_ocsp_endpoint

A boolean.

When true, performs real-time certificate revocation checks by querying the OCSP endpoint specified within the client certificate.

See:

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