Interface AddFlowOutputsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<AddFlowOutputsResponse.Builder,AddFlowOutputsResponse>,MediaConnectResponse.Builder,SdkBuilder<AddFlowOutputsResponse.Builder,AddFlowOutputsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- AddFlowOutputsResponse
public static interface AddFlowOutputsResponse.Builder extends MediaConnectResponse.Builder, SdkPojo, CopyableBuilder<AddFlowOutputsResponse.Builder,AddFlowOutputsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AddFlowOutputsResponse.BuilderflowArn(String flowArn)The ARN of the flow that these outputs were added to.AddFlowOutputsResponse.Builderoutputs(Collection<Output> outputs)The details of the newly added outputs.AddFlowOutputsResponse.Builderoutputs(Consumer<Output.Builder>... outputs)The details of the newly added outputs.AddFlowOutputsResponse.Builderoutputs(Output... outputs)The details of the newly added outputs.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.mediaconnect.model.MediaConnectResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
flowArn
AddFlowOutputsResponse.Builder flowArn(String flowArn)
The ARN of the flow that these outputs were added to.- Parameters:
flowArn- The ARN of the flow that these outputs were added to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputs
AddFlowOutputsResponse.Builder outputs(Collection<Output> outputs)
The details of the newly added outputs.- Parameters:
outputs- The details of the newly added outputs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputs
AddFlowOutputsResponse.Builder outputs(Output... outputs)
The details of the newly added outputs.- Parameters:
outputs- The details of the newly added outputs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputs
AddFlowOutputsResponse.Builder outputs(Consumer<Output.Builder>... outputs)
The details of the newly added outputs. This is a convenience method that creates an instance of theOutput.Builderavoiding the need to create one manually viaOutput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#outputs(List.- Parameters:
outputs- a consumer that will call methods onOutput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#outputs(java.util.Collection
-
-