Enum HlsProgressiveWriteHlsManifest
- java.lang.Object
-
- java.lang.Enum<HlsProgressiveWriteHlsManifest>
-
- software.amazon.awssdk.services.mediaconvert.model.HlsProgressiveWriteHlsManifest
-
- All Implemented Interfaces:
Serializable,Comparable<HlsProgressiveWriteHlsManifest>
@Generated("software.amazon.awssdk:codegen") public enum HlsProgressiveWriteHlsManifest extends Enum<HlsProgressiveWriteHlsManifest>
Specify whether MediaConvert generates HLS manifests while your job is running or when your job is complete. To generate HLS manifests while your job is running: Choose Enabled. Use if you want to play back your content as soon as it's available. MediaConvert writes the parent and child manifests after the first three media segments are written to your destination S3 bucket. It then writes new updated manifests after each additional segment is written. The parent manifest includes the latest BANDWIDTH and AVERAGE-BANDWIDTH attributes, and child manifests include the latest available media segment. When your job completes, the final child playlists include an EXT-X-ENDLIST tag. To generate HLS manifests only when your job completes: Choose Disabled.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISABLEDENABLEDUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static HlsProgressiveWriteHlsManifestfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<HlsProgressiveWriteHlsManifest>knownValues()StringtoString()static HlsProgressiveWriteHlsManifestvalueOf(String name)Returns the enum constant of this type with the specified name.static HlsProgressiveWriteHlsManifest[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ENABLED
public static final HlsProgressiveWriteHlsManifest ENABLED
-
DISABLED
public static final HlsProgressiveWriteHlsManifest DISABLED
-
UNKNOWN_TO_SDK_VERSION
public static final HlsProgressiveWriteHlsManifest UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static HlsProgressiveWriteHlsManifest[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (HlsProgressiveWriteHlsManifest c : HlsProgressiveWriteHlsManifest.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HlsProgressiveWriteHlsManifest valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<HlsProgressiveWriteHlsManifest>
-
fromValue
public static HlsProgressiveWriteHlsManifest fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- HlsProgressiveWriteHlsManifest corresponding to the value
-
knownValues
public static Set<HlsProgressiveWriteHlsManifest> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownHlsProgressiveWriteHlsManifests
-
-