Interface DataflowDetail.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataflowDetail.Builder,DataflowDetail>,SdkBuilder<DataflowDetail.Builder,DataflowDetail>,SdkPojo
- Enclosing class:
- DataflowDetail
public static interface DataflowDetail.Builder extends SdkPojo, CopyableBuilder<DataflowDetail.Builder,DataflowDetail>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DataflowDetail.Builderdestination(Consumer<Destination.Builder> destination)Sets the value of the Destination property for this object.DataflowDetail.Builderdestination(Destination destination)Sets the value of the Destination property for this object.DataflowDetail.BuildererrorMessage(String errorMessage)Error message for a dataflow.default DataflowDetail.Buildersource(Consumer<Source.Builder> source)Sets the value of the Source property for this object.DataflowDetail.Buildersource(Source source)Sets the value of the Source property for this object.-
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
-
destination
DataflowDetail.Builder destination(Destination destination)
Sets the value of the Destination property for this object.- Parameters:
destination- The new value for the Destination property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destination
default DataflowDetail.Builder destination(Consumer<Destination.Builder> destination)
Sets the value of the Destination property for this object. This is a convenience method that creates an instance of theDestination.Builderavoiding the need to create one manually viaDestination.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todestination(Destination).- Parameters:
destination- a consumer that will call methods onDestination.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
destination(Destination)
-
errorMessage
DataflowDetail.Builder errorMessage(String errorMessage)
Error message for a dataflow.
- Parameters:
errorMessage- Error message for a dataflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
source
DataflowDetail.Builder source(Source source)
Sets the value of the Source property for this object.- Parameters:
source- The new value for the Source property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
source
default DataflowDetail.Builder source(Consumer<Source.Builder> source)
Sets the value of the Source property for this object. This is a convenience method that creates an instance of theSource.Builderavoiding the need to create one manually viaSource.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosource(Source).- Parameters:
source- a consumer that will call methods onSource.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
source(Source)
-
-