Enum CaptionSourceByteRateLimit
- java.lang.Object
-
- java.lang.Enum<CaptionSourceByteRateLimit>
-
- software.amazon.awssdk.services.mediaconvert.model.CaptionSourceByteRateLimit
-
- All Implemented Interfaces:
Serializable,Comparable<CaptionSourceByteRateLimit>
@Generated("software.amazon.awssdk:codegen") public enum CaptionSourceByteRateLimit extends Enum<CaptionSourceByteRateLimit>
Choose whether to limit the byte rate at which your SCC input captions are inserted into your output. To not limit the caption rate: We recommend that you keep the default value, Disabled. MediaConvert inserts captions in your output according to the byte rates listed in the EIA-608 specification, typically 2 or 3 caption bytes per frame depending on your output frame rate. To limit your output caption rate: Choose Enabled. Choose this option if your downstream systems require a maximum of 2 caption bytes per frame. Note that this setting has no effect when your output frame rate is 30 or 60.
-
-
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 CaptionSourceByteRateLimitfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<CaptionSourceByteRateLimit>knownValues()StringtoString()static CaptionSourceByteRateLimitvalueOf(String name)Returns the enum constant of this type with the specified name.static CaptionSourceByteRateLimit[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ENABLED
public static final CaptionSourceByteRateLimit ENABLED
-
DISABLED
public static final CaptionSourceByteRateLimit DISABLED
-
UNKNOWN_TO_SDK_VERSION
public static final CaptionSourceByteRateLimit UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static CaptionSourceByteRateLimit[] 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 (CaptionSourceByteRateLimit c : CaptionSourceByteRateLimit.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CaptionSourceByteRateLimit 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<CaptionSourceByteRateLimit>
-
fromValue
public static CaptionSourceByteRateLimit 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:
- CaptionSourceByteRateLimit corresponding to the value
-
knownValues
public static Set<CaptionSourceByteRateLimit> 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 knownCaptionSourceByteRateLimits
-
-