Interface DataIntegrationFlow.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataIntegrationFlow.Builder,DataIntegrationFlow>,SdkBuilder<DataIntegrationFlow.Builder,DataIntegrationFlow>,SdkPojo
- Enclosing class:
- DataIntegrationFlow
public static interface DataIntegrationFlow.Builder extends SdkPojo, CopyableBuilder<DataIntegrationFlow.Builder,DataIntegrationFlow>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DataIntegrationFlow.BuildercreatedTime(Instant createdTime)The DataIntegrationFlow creation timestamp.DataIntegrationFlow.BuilderinstanceId(String instanceId)The DataIntegrationFlow instance ID.DataIntegrationFlow.BuilderlastModifiedTime(Instant lastModifiedTime)The DataIntegrationFlow last modified timestamp.DataIntegrationFlow.Buildername(String name)The DataIntegrationFlow name.DataIntegrationFlow.Buildersources(Collection<DataIntegrationFlowSource> sources)The DataIntegrationFlow source configurations.DataIntegrationFlow.Buildersources(Consumer<DataIntegrationFlowSource.Builder>... sources)The DataIntegrationFlow source configurations.DataIntegrationFlow.Buildersources(DataIntegrationFlowSource... sources)The DataIntegrationFlow source configurations.default DataIntegrationFlow.Buildertarget(Consumer<DataIntegrationFlowTarget.Builder> target)The DataIntegrationFlow target configuration.DataIntegrationFlow.Buildertarget(DataIntegrationFlowTarget target)The DataIntegrationFlow target configuration.default DataIntegrationFlow.Buildertransformation(Consumer<DataIntegrationFlowTransformation.Builder> transformation)The DataIntegrationFlow transformation configurations.DataIntegrationFlow.Buildertransformation(DataIntegrationFlowTransformation transformation)The DataIntegrationFlow transformation configurations.-
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
-
instanceId
DataIntegrationFlow.Builder instanceId(String instanceId)
The DataIntegrationFlow instance ID.
- Parameters:
instanceId- The DataIntegrationFlow instance ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
DataIntegrationFlow.Builder name(String name)
The DataIntegrationFlow name.
- Parameters:
name- The DataIntegrationFlow name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sources
DataIntegrationFlow.Builder sources(Collection<DataIntegrationFlowSource> sources)
The DataIntegrationFlow source configurations.
- Parameters:
sources- The DataIntegrationFlow source configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sources
DataIntegrationFlow.Builder sources(DataIntegrationFlowSource... sources)
The DataIntegrationFlow source configurations.
- Parameters:
sources- The DataIntegrationFlow source configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sources
DataIntegrationFlow.Builder sources(Consumer<DataIntegrationFlowSource.Builder>... sources)
The DataIntegrationFlow source configurations.
This is a convenience method that creates an instance of theDataIntegrationFlowSource.Builderavoiding the need to create one manually viaDataIntegrationFlowSource.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#sources(List.) - Parameters:
sources- a consumer that will call methods onDataIntegrationFlowSource.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#sources(java.util.Collection)
-
transformation
DataIntegrationFlow.Builder transformation(DataIntegrationFlowTransformation transformation)
The DataIntegrationFlow transformation configurations.
- Parameters:
transformation- The DataIntegrationFlow transformation configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transformation
default DataIntegrationFlow.Builder transformation(Consumer<DataIntegrationFlowTransformation.Builder> transformation)
The DataIntegrationFlow transformation configurations.
This is a convenience method that creates an instance of theDataIntegrationFlowTransformation.Builderavoiding the need to create one manually viaDataIntegrationFlowTransformation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totransformation(DataIntegrationFlowTransformation).- Parameters:
transformation- a consumer that will call methods onDataIntegrationFlowTransformation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
transformation(DataIntegrationFlowTransformation)
-
target
DataIntegrationFlow.Builder target(DataIntegrationFlowTarget target)
The DataIntegrationFlow target configuration.
- Parameters:
target- The DataIntegrationFlow target configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
target
default DataIntegrationFlow.Builder target(Consumer<DataIntegrationFlowTarget.Builder> target)
The DataIntegrationFlow target configuration.
This is a convenience method that creates an instance of theDataIntegrationFlowTarget.Builderavoiding the need to create one manually viaDataIntegrationFlowTarget.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totarget(DataIntegrationFlowTarget).- Parameters:
target- a consumer that will call methods onDataIntegrationFlowTarget.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
target(DataIntegrationFlowTarget)
-
createdTime
DataIntegrationFlow.Builder createdTime(Instant createdTime)
The DataIntegrationFlow creation timestamp.
- Parameters:
createdTime- The DataIntegrationFlow creation timestamp.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedTime
DataIntegrationFlow.Builder lastModifiedTime(Instant lastModifiedTime)
The DataIntegrationFlow last modified timestamp.
- Parameters:
lastModifiedTime- The DataIntegrationFlow last modified timestamp.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-