Interface HlsIngest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<HlsIngest.Builder,HlsIngest>,SdkBuilder<HlsIngest.Builder,HlsIngest>,SdkPojo
- Enclosing class:
- HlsIngest
public static interface HlsIngest.Builder extends SdkPojo, CopyableBuilder<HlsIngest.Builder,HlsIngest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HlsIngest.BuilderingestEndpoints(Collection<IngestEndpoint> ingestEndpoints)A list of endpoints to which the source stream should be sent.HlsIngest.BuilderingestEndpoints(Consumer<IngestEndpoint.Builder>... ingestEndpoints)A list of endpoints to which the source stream should be sent.HlsIngest.BuilderingestEndpoints(IngestEndpoint... ingestEndpoints)A list of endpoints to which the source stream should be sent.-
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
-
ingestEndpoints
HlsIngest.Builder ingestEndpoints(Collection<IngestEndpoint> ingestEndpoints)
A list of endpoints to which the source stream should be sent.- Parameters:
ingestEndpoints- A list of endpoints to which the source stream should be sent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ingestEndpoints
HlsIngest.Builder ingestEndpoints(IngestEndpoint... ingestEndpoints)
A list of endpoints to which the source stream should be sent.- Parameters:
ingestEndpoints- A list of endpoints to which the source stream should be sent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ingestEndpoints
HlsIngest.Builder ingestEndpoints(Consumer<IngestEndpoint.Builder>... ingestEndpoints)
A list of endpoints to which the source stream should be sent. This is a convenience method that creates an instance of theIngestEndpoint.Builderavoiding the need to create one manually viaIngestEndpoint.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#ingestEndpoints(List.) - Parameters:
ingestEndpoints- a consumer that will call methods onIngestEndpoint.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#ingestEndpoints(java.util.Collection)
-
-