TrustStoreReference

class aws_cdk.interfaces.aws_cloudfront.TrustStoreReference(*, trust_store_arn, trust_store_id)

Bases: object

A reference to a TrustStore resource.

Parameters:
  • trust_store_arn (str) – The ARN of the TrustStore resource.

  • trust_store_id (str) – The Id of the TrustStore resource.

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.interfaces import aws_cloudfront as interfaces_cloudfront

trust_store_reference = interfaces_cloudfront.TrustStoreReference(
    trust_store_arn="trustStoreArn",
    trust_store_id="trustStoreId"
)

Attributes

trust_store_arn

The ARN of the TrustStore resource.

trust_store_id

The Id of the TrustStore resource.