Interface OutputGroup.Builder

    • Method Detail

      • automatedEncodingSettings

        OutputGroup.Builder automatedEncodingSettings​(AutomatedEncodingSettings automatedEncodingSettings)
        Use automated encoding to have MediaConvert choose your encoding settings for you, based on characteristics of your input video.
        Parameters:
        automatedEncodingSettings - Use automated encoding to have MediaConvert choose your encoding settings for you, based on characteristics of your input video.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • customName

        OutputGroup.Builder customName​(String customName)
        Use Custom Group Name to specify a name for the output group. This value is displayed on the console and can make your job settings JSON more human-readable. It does not affect your outputs. Use up to twelve characters that are either letters, numbers, spaces, or underscores.
        Parameters:
        customName - Use Custom Group Name to specify a name for the output group. This value is displayed on the console and can make your job settings JSON more human-readable. It does not affect your outputs. Use up to twelve characters that are either letters, numbers, spaces, or underscores.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • name

        OutputGroup.Builder name​(String name)
        Name of the output group
        Parameters:
        name - Name of the output group
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • outputGroupSettings

        OutputGroup.Builder outputGroupSettings​(OutputGroupSettings outputGroupSettings)
        Output Group settings, including type
        Parameters:
        outputGroupSettings - Output Group settings, including type
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • outputs

        OutputGroup.Builder outputs​(Collection<Output> outputs)
        This object holds groups of encoding settings, one group of settings per output.
        Parameters:
        outputs - This object holds groups of encoding settings, one group of settings per output.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • outputs

        OutputGroup.Builder outputs​(Output... outputs)
        This object holds groups of encoding settings, one group of settings per output.
        Parameters:
        outputs - This object holds groups of encoding settings, one group of settings per output.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • outputs

        OutputGroup.Builder outputs​(Consumer<Output.Builder>... outputs)
        This object holds groups of encoding settings, one group of settings per output. This is a convenience method that creates an instance of the Output.Builder avoiding the need to create one manually via Output.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #outputs(List).

        Parameters:
        outputs - a consumer that will call methods on Output.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #outputs(java.util.Collection)