Class: AWSCDK::CloudFront::CfnConnectionFunction::KeyValueStoreAssociationProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
cloud_front/cfn_connection_function.rb

Overview

The key value store association.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(key_value_store_arn:) ⇒ KeyValueStoreAssociationProperty

Returns a new instance of KeyValueStoreAssociationProperty.

Parameters:

  • key_value_store_arn (String)

    The Amazon Resource Name (ARN) of the key value store association.



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_arnString (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_propertiesObject



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_jsiiObject



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