KeyValueStoreReference

class aws_cdk.aws_cloudfront.KeyValueStoreReference(*, key_value_store_arn, key_value_store_name)

Bases: object

A reference to a KeyValueStore resource.

Parameters:
  • key_value_store_arn (str) – The ARN of the KeyValueStore resource.

  • key_value_store_name (str) – The Name of the KeyValueStore 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 import aws_cloudfront as cloudfront

key_value_store_reference = cloudfront.KeyValueStoreReference(
    key_value_store_arn="keyValueStoreArn",
    key_value_store_name="keyValueStoreName"
)

Attributes

key_value_store_arn

The ARN of the KeyValueStore resource.

key_value_store_name

The Name of the KeyValueStore resource.