Interface InputDestinationRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InputDestinationRequest.Builder,InputDestinationRequest>,SdkBuilder<InputDestinationRequest.Builder,InputDestinationRequest>,SdkPojo
- Enclosing class:
- InputDestinationRequest
public static interface InputDestinationRequest.Builder extends SdkPojo, CopyableBuilder<InputDestinationRequest.Builder,InputDestinationRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputDestinationRequest.Buildernetwork(String network)If the push input has an input location of ON-PREM, ID the ID of the attached network.InputDestinationRequest.BuildernetworkRoutes(Collection<InputRequestDestinationRoute> networkRoutes)If the push input has an input location of ON-PREM it's a requirement to specify what the route of the input is going to be on the customer local network.InputDestinationRequest.BuildernetworkRoutes(Consumer<InputRequestDestinationRoute.Builder>... networkRoutes)If the push input has an input location of ON-PREM it's a requirement to specify what the route of the input is going to be on the customer local network.InputDestinationRequest.BuildernetworkRoutes(InputRequestDestinationRoute... networkRoutes)If the push input has an input location of ON-PREM it's a requirement to specify what the route of the input is going to be on the customer local network.InputDestinationRequest.BuilderstaticIpAddress(String staticIpAddress)If the push input has an input location of ON-PREM it's optional to specify what the ip address of the input is going to be on the customer local network.InputDestinationRequest.BuilderstreamName(String streamName)A unique name for the location the RTMP stream is being pushed to.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
streamName
InputDestinationRequest.Builder streamName(String streamName)
A unique name for the location the RTMP stream is being pushed to.- Parameters:
streamName- A unique name for the location the RTMP stream is being pushed to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
network
InputDestinationRequest.Builder network(String network)
If the push input has an input location of ON-PREM, ID the ID of the attached network.- Parameters:
network- If the push input has an input location of ON-PREM, ID the ID of the attached network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
networkRoutes
InputDestinationRequest.Builder networkRoutes(Collection<InputRequestDestinationRoute> networkRoutes)
If the push input has an input location of ON-PREM it's a requirement to specify what the route of the input is going to be on the customer local network.- Parameters:
networkRoutes- If the push input has an input location of ON-PREM it's a requirement to specify what the route of the input is going to be on the customer local network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
networkRoutes
InputDestinationRequest.Builder networkRoutes(InputRequestDestinationRoute... networkRoutes)
If the push input has an input location of ON-PREM it's a requirement to specify what the route of the input is going to be on the customer local network.- Parameters:
networkRoutes- If the push input has an input location of ON-PREM it's a requirement to specify what the route of the input is going to be on the customer local network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
networkRoutes
InputDestinationRequest.Builder networkRoutes(Consumer<InputRequestDestinationRoute.Builder>... networkRoutes)
If the push input has an input location of ON-PREM it's a requirement to specify what the route of the input is going to be on the customer local network. This is a convenience method that creates an instance of theInputRequestDestinationRoute.Builderavoiding the need to create one manually viaInputRequestDestinationRoute.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#networkRoutes(List.) - Parameters:
networkRoutes- a consumer that will call methods onInputRequestDestinationRoute.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#networkRoutes(java.util.Collection)
-
staticIpAddress
InputDestinationRequest.Builder staticIpAddress(String staticIpAddress)
If the push input has an input location of ON-PREM it's optional to specify what the ip address of the input is going to be on the customer local network.- Parameters:
staticIpAddress- If the push input has an input location of ON-PREM it's optional to specify what the ip address of the input is going to be on the customer local network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-