Interface KeyValuePair.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<KeyValuePair.Builder,KeyValuePair>,SdkBuilder<KeyValuePair.Builder,KeyValuePair>,SdkPojo
- Enclosing class:
- KeyValuePair
public static interface KeyValuePair.Builder extends SdkPojo, CopyableBuilder<KeyValuePair.Builder,KeyValuePair>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KeyValuePair.Builderkey(String key)ForSCTE35_ENHANCEDoutput, defines a key.KeyValuePair.Buildervalue(String value)ForSCTE35_ENHANCEDoutput, defines a value.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
key
KeyValuePair.Builder key(String key)
For
SCTE35_ENHANCEDoutput, defines a key. MediaTailor takes this key, and its associated value, and generates the key/value pair within theEXT-X-ASSETtag. If you specify a key, you must also specify a corresponding value.- Parameters:
key- ForSCTE35_ENHANCEDoutput, defines a key. MediaTailor takes this key, and its associated value, and generates the key/value pair within theEXT-X-ASSETtag. If you specify a key, you must also specify a corresponding value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
KeyValuePair.Builder value(String value)
For
SCTE35_ENHANCEDoutput, defines a value. MediaTailor; takes this value, and its associated key, and generates the key/value pair within theEXT-X-ASSETtag. If you specify a value, you must also specify a corresponding key.- Parameters:
value- ForSCTE35_ENHANCEDoutput, defines a value. MediaTailor; takes this value, and its associated key, and generates the key/value pair within theEXT-X-ASSETtag. If you specify a value, you must also specify a corresponding key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-