Class: Aws::MediaTailor::Types::KeyValuePair
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaTailor::Types::KeyValuePair
- Defined in:
- gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb
Overview
For SCTE35_ENHANCED
output, defines a key and corresponding value.
MediaTailor generates these pairs within the EXT-X-ASSET
tag.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
For
SCTE35_ENHANCED
output, defines a key. -
#value ⇒ String
For
SCTE35_ENHANCED
output, defines a value.
Instance Attribute Details
#key ⇒ String
For SCTE35_ENHANCED
output, defines a key. MediaTailor takes this
key, and its associated value, and generates the key/value pair
within the EXT-X-ASSET
tag. If you specify a key, you must also
specify a corresponding value.
2387 2388 2389 2390 2391 2392 |
# File 'gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb', line 2387 class KeyValuePair < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
For SCTE35_ENHANCED
output, defines a value. MediaTailor; takes
this value, and its associated key, and generates the key/value pair
within the EXT-X-ASSET
tag. If you specify a value, you must also
specify a corresponding key.
2387 2388 2389 2390 2391 2392 |
# File 'gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb', line 2387 class KeyValuePair < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |