Class: Aws::CloudFrontKeyValueStore::Types::PutKeyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFrontKeyValueStore::Types::PutKeyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudfrontkeyvaluestore/types.rb
Overview
A key value pair.
Constant Summary collapse
- SENSITIVE =
[:value]
Instance Attribute Summary collapse
-
#if_match ⇒ String
The current version (ETag) of the Key Value Store that you are putting keys into, which you can get using DescribeKeyValueStore.
-
#key ⇒ String
The key to put.
-
#kvs_arn ⇒ String
The Amazon Resource Name (ARN) of the Key Value Store.
-
#value ⇒ String
The value to put.
Instance Attribute Details
#if_match ⇒ String
The current version (ETag) of the Key Value Store that you are putting keys into, which you can get using DescribeKeyValueStore.
309 310 311 312 313 314 315 316 |
# File 'lib/aws-sdk-cloudfrontkeyvaluestore/types.rb', line 309 class PutKeyRequest < Struct.new( :key, :value, :kvs_arn, :if_match) SENSITIVE = [:value] include Aws::Structure end |
#key ⇒ String
The key to put.
309 310 311 312 313 314 315 316 |
# File 'lib/aws-sdk-cloudfrontkeyvaluestore/types.rb', line 309 class PutKeyRequest < Struct.new( :key, :value, :kvs_arn, :if_match) SENSITIVE = [:value] include Aws::Structure end |
#kvs_arn ⇒ String
The Amazon Resource Name (ARN) of the Key Value Store.
309 310 311 312 313 314 315 316 |
# File 'lib/aws-sdk-cloudfrontkeyvaluestore/types.rb', line 309 class PutKeyRequest < Struct.new( :key, :value, :kvs_arn, :if_match) SENSITIVE = [:value] include Aws::Structure end |
#value ⇒ String
The value to put.
309 310 311 312 313 314 315 316 |
# File 'lib/aws-sdk-cloudfrontkeyvaluestore/types.rb', line 309 class PutKeyRequest < Struct.new( :key, :value, :kvs_arn, :if_match) SENSITIVE = [:value] include Aws::Structure end |