Class: Aws::CloudFrontKeyValueStore::Types::GetKeyResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFrontKeyValueStore::Types::GetKeyResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudfrontkeyvaluestore/types.rb
Overview
A key value pair.
Constant Summary collapse
- SENSITIVE =
[:value]
Instance Attribute Summary collapse
-
#item_count ⇒ Integer
Number of key value pairs in the Key Value Store.
-
#key ⇒ String
The key of the key value pair.
-
#total_size_in_bytes ⇒ Integer
Total size of the Key Value Store in bytes.
-
#value ⇒ String
The value of the key value pair.
Instance Attribute Details
#item_count ⇒ Integer
Number of key value pairs in the Key Value Store.
203 204 205 206 207 208 209 210 |
# File 'lib/aws-sdk-cloudfrontkeyvaluestore/types.rb', line 203 class GetKeyResponse < Struct.new( :key, :value, :item_count, :total_size_in_bytes) SENSITIVE = [:value] include Aws::Structure end |
#key ⇒ String
The key of the key value pair.
203 204 205 206 207 208 209 210 |
# File 'lib/aws-sdk-cloudfrontkeyvaluestore/types.rb', line 203 class GetKeyResponse < Struct.new( :key, :value, :item_count, :total_size_in_bytes) SENSITIVE = [:value] include Aws::Structure end |
#total_size_in_bytes ⇒ Integer
Total size of the Key Value Store in bytes.
203 204 205 206 207 208 209 210 |
# File 'lib/aws-sdk-cloudfrontkeyvaluestore/types.rb', line 203 class GetKeyResponse < Struct.new( :key, :value, :item_count, :total_size_in_bytes) SENSITIVE = [:value] include Aws::Structure end |
#value ⇒ String
The value of the key value pair.
203 204 205 206 207 208 209 210 |
# File 'lib/aws-sdk-cloudfrontkeyvaluestore/types.rb', line 203 class GetKeyResponse < Struct.new( :key, :value, :item_count, :total_size_in_bytes) SENSITIVE = [:value] include Aws::Structure end |