Interface TransportMediaInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TransportMediaInfo.Builder,TransportMediaInfo>,SdkBuilder<TransportMediaInfo.Builder,TransportMediaInfo>,SdkPojo
- Enclosing class:
- TransportMediaInfo
public static interface TransportMediaInfo.Builder extends SdkPojo, CopyableBuilder<TransportMediaInfo.Builder,TransportMediaInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TransportMediaInfo.Builderprograms(Collection<TransportStreamProgram> programs)The list of transport stream programs in the current flow's source.TransportMediaInfo.Builderprograms(Consumer<TransportStreamProgram.Builder>... programs)The list of transport stream programs in the current flow's source.TransportMediaInfo.Builderprograms(TransportStreamProgram... programs)The list of transport stream programs in the current flow's source.-
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
-
programs
TransportMediaInfo.Builder programs(Collection<TransportStreamProgram> programs)
The list of transport stream programs in the current flow's source.- Parameters:
programs- The list of transport stream programs in the current flow's source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
programs
TransportMediaInfo.Builder programs(TransportStreamProgram... programs)
The list of transport stream programs in the current flow's source.- Parameters:
programs- The list of transport stream programs in the current flow's source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
programs
TransportMediaInfo.Builder programs(Consumer<TransportStreamProgram.Builder>... programs)
The list of transport stream programs in the current flow's source. This is a convenience method that creates an instance of theTransportStreamProgram.Builderavoiding the need to create one manually viaTransportStreamProgram.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#programs(List.) - Parameters:
programs- a consumer that will call methods onTransportStreamProgram.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#programs(java.util.Collection)
-
-