Class: AWSCDK::CloudFront::CfnFunction::KeyValueStoreAssociationProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
cloud_front/cfn_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.



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



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_jsiiObject



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