Class: AWSCDK::CloudFront::CfnFunction::KeyValueStoreAssociationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::CloudFront::CfnFunction::KeyValueStoreAssociationProperty
- Defined in:
- cloud_front/cfn_function.rb
Overview
The key value store association.
Instance Attribute Summary collapse
-
#key_value_store_arn ⇒ String
readonly
The Amazon Resource Name (ARN) of the key value store association.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(key_value_store_arn:) ⇒ KeyValueStoreAssociationProperty
constructor
A new instance of KeyValueStoreAssociationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(key_value_store_arn:) ⇒ KeyValueStoreAssociationProperty
Returns a new instance of KeyValueStoreAssociationProperty.
702 703 704 705 |
# File 'cloud_front/cfn_function.rb', line 702 def initialize(key_value_store_arn:) @key_value_store_arn = key_value_store_arn Jsii::Type.check_type(@key_value_store_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "keyValueStoreArn") end |
Instance Attribute Details
#key_value_store_arn ⇒ String (readonly)
The Amazon Resource Name (ARN) of the key value store association.
711 712 713 |
# File 'cloud_front/cfn_function.rb', line 711 def key_value_store_arn @key_value_store_arn end |
Class Method Details
.jsii_properties ⇒ Object
713 714 715 716 717 |
# File 'cloud_front/cfn_function.rb', line 713 def self.jsii_properties { :key_value_store_arn => "keyValueStoreArn", } end |
Instance Method Details
#to_jsii ⇒ Object
719 720 721 722 723 724 725 |
# File 'cloud_front/cfn_function.rb', line 719 def to_jsii result = {} result.merge!({ "keyValueStoreArn" => @key_value_store_arn, }) result.compact end |