Class: AWSCDK::CloudFront::CfnConnectionFunction::KeyValueStoreAssociationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::CloudFront::CfnConnectionFunction::KeyValueStoreAssociationProperty
- Defined in:
- cloud_front/cfn_connection_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.
671 672 673 674 |
# File 'cloud_front/cfn_connection_function.rb', line 671 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.
680 681 682 |
# File 'cloud_front/cfn_connection_function.rb', line 680 def key_value_store_arn @key_value_store_arn end |
Class Method Details
.jsii_properties ⇒ Object
682 683 684 685 686 |
# File 'cloud_front/cfn_connection_function.rb', line 682 def self.jsii_properties { :key_value_store_arn => "keyValueStoreArn", } end |
Instance Method Details
#to_jsii ⇒ Object
688 689 690 691 692 693 694 |
# File 'cloud_front/cfn_connection_function.rb', line 688 def to_jsii result = {} result.merge!({ "keyValueStoreArn" => @key_value_store_arn, }) result.compact end |