Interface MediaStreamSourceConfigurationRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MediaStreamSourceConfigurationRequest.Builder,MediaStreamSourceConfigurationRequest>,SdkBuilder<MediaStreamSourceConfigurationRequest.Builder,MediaStreamSourceConfigurationRequest>,SdkPojo
- Enclosing class:
- MediaStreamSourceConfigurationRequest
public static interface MediaStreamSourceConfigurationRequest.Builder extends SdkPojo, CopyableBuilder<MediaStreamSourceConfigurationRequest.Builder,MediaStreamSourceConfigurationRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MediaStreamSourceConfigurationRequest.BuilderencodingName(String encodingName)The format you want to use to encode the data.MediaStreamSourceConfigurationRequest.BuilderencodingName(EncodingName encodingName)The format you want to use to encode the data.MediaStreamSourceConfigurationRequest.BuilderinputConfigurations(Collection<InputConfigurationRequest> inputConfigurations)The transport parameters that you want to associate with the media stream.MediaStreamSourceConfigurationRequest.BuilderinputConfigurations(Consumer<InputConfigurationRequest.Builder>... inputConfigurations)The transport parameters that you want to associate with the media stream.MediaStreamSourceConfigurationRequest.BuilderinputConfigurations(InputConfigurationRequest... inputConfigurations)The transport parameters that you want to associate with the media stream.MediaStreamSourceConfigurationRequest.BuildermediaStreamName(String mediaStreamName)The name of the media stream.-
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
-
encodingName
MediaStreamSourceConfigurationRequest.Builder encodingName(String encodingName)
The format you want to use to encode the data. For ancillary data streams, set the encoding name to smpte291. For audio streams, set the encoding name to pcm. For video, 2110 streams, set the encoding name to raw. For video, JPEG XS streams, set the encoding name to jxsv.- Parameters:
encodingName- The format you want to use to encode the data. For ancillary data streams, set the encoding name to smpte291. For audio streams, set the encoding name to pcm. For video, 2110 streams, set the encoding name to raw. For video, JPEG XS streams, set the encoding name to jxsv.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EncodingName,EncodingName
-
encodingName
MediaStreamSourceConfigurationRequest.Builder encodingName(EncodingName encodingName)
The format you want to use to encode the data. For ancillary data streams, set the encoding name to smpte291. For audio streams, set the encoding name to pcm. For video, 2110 streams, set the encoding name to raw. For video, JPEG XS streams, set the encoding name to jxsv.- Parameters:
encodingName- The format you want to use to encode the data. For ancillary data streams, set the encoding name to smpte291. For audio streams, set the encoding name to pcm. For video, 2110 streams, set the encoding name to raw. For video, JPEG XS streams, set the encoding name to jxsv.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EncodingName,EncodingName
-
inputConfigurations
MediaStreamSourceConfigurationRequest.Builder inputConfigurations(Collection<InputConfigurationRequest> inputConfigurations)
The transport parameters that you want to associate with the media stream.- Parameters:
inputConfigurations- The transport parameters that you want to associate with the media stream.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputConfigurations
MediaStreamSourceConfigurationRequest.Builder inputConfigurations(InputConfigurationRequest... inputConfigurations)
The transport parameters that you want to associate with the media stream.- Parameters:
inputConfigurations- The transport parameters that you want to associate with the media stream.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputConfigurations
MediaStreamSourceConfigurationRequest.Builder inputConfigurations(Consumer<InputConfigurationRequest.Builder>... inputConfigurations)
The transport parameters that you want to associate with the media stream. This is a convenience method that creates an instance of theInputConfigurationRequest.Builderavoiding the need to create one manually viaInputConfigurationRequest.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#inputConfigurations(List.) - Parameters:
inputConfigurations- a consumer that will call methods onInputConfigurationRequest.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#inputConfigurations(java.util.Collection)
-
mediaStreamName
MediaStreamSourceConfigurationRequest.Builder mediaStreamName(String mediaStreamName)
The name of the media stream.- Parameters:
mediaStreamName- The name of the media stream.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-