Interface DataIntegrationFlowTarget.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataIntegrationFlowTarget.Builder,DataIntegrationFlowTarget>,SdkBuilder<DataIntegrationFlowTarget.Builder,DataIntegrationFlowTarget>,SdkPojo
- Enclosing class:
- DataIntegrationFlowTarget
public static interface DataIntegrationFlowTarget.Builder extends SdkPojo, CopyableBuilder<DataIntegrationFlowTarget.Builder,DataIntegrationFlowTarget>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DataIntegrationFlowTarget.BuilderdatasetTarget(Consumer<DataIntegrationFlowDatasetTargetConfiguration.Builder> datasetTarget)The dataset DataIntegrationFlow target.DataIntegrationFlowTarget.BuilderdatasetTarget(DataIntegrationFlowDatasetTargetConfiguration datasetTarget)The dataset DataIntegrationFlow target.default DataIntegrationFlowTarget.Builders3Target(Consumer<DataIntegrationFlowS3TargetConfiguration.Builder> s3Target)The S3 DataIntegrationFlow target.DataIntegrationFlowTarget.Builders3Target(DataIntegrationFlowS3TargetConfiguration s3Target)The S3 DataIntegrationFlow target.DataIntegrationFlowTarget.BuildertargetType(String targetType)The DataIntegrationFlow target type.DataIntegrationFlowTarget.BuildertargetType(DataIntegrationFlowTargetType targetType)The DataIntegrationFlow target type.-
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
-
targetType
DataIntegrationFlowTarget.Builder targetType(String targetType)
The DataIntegrationFlow target type.
- Parameters:
targetType- The DataIntegrationFlow target type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DataIntegrationFlowTargetType,DataIntegrationFlowTargetType
-
targetType
DataIntegrationFlowTarget.Builder targetType(DataIntegrationFlowTargetType targetType)
The DataIntegrationFlow target type.
- Parameters:
targetType- The DataIntegrationFlow target type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DataIntegrationFlowTargetType,DataIntegrationFlowTargetType
-
s3Target
DataIntegrationFlowTarget.Builder s3Target(DataIntegrationFlowS3TargetConfiguration s3Target)
The S3 DataIntegrationFlow target.
- Parameters:
s3Target- The S3 DataIntegrationFlow target.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Target
default DataIntegrationFlowTarget.Builder s3Target(Consumer<DataIntegrationFlowS3TargetConfiguration.Builder> s3Target)
The S3 DataIntegrationFlow target.
This is a convenience method that creates an instance of theDataIntegrationFlowS3TargetConfiguration.Builderavoiding the need to create one manually viaDataIntegrationFlowS3TargetConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3Target(DataIntegrationFlowS3TargetConfiguration).- Parameters:
s3Target- a consumer that will call methods onDataIntegrationFlowS3TargetConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3Target(DataIntegrationFlowS3TargetConfiguration)
-
datasetTarget
DataIntegrationFlowTarget.Builder datasetTarget(DataIntegrationFlowDatasetTargetConfiguration datasetTarget)
The dataset DataIntegrationFlow target.
- Parameters:
datasetTarget- The dataset DataIntegrationFlow target.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
datasetTarget
default DataIntegrationFlowTarget.Builder datasetTarget(Consumer<DataIntegrationFlowDatasetTargetConfiguration.Builder> datasetTarget)
The dataset DataIntegrationFlow target.
This is a convenience method that creates an instance of theDataIntegrationFlowDatasetTargetConfiguration.Builderavoiding the need to create one manually viaDataIntegrationFlowDatasetTargetConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todatasetTarget(DataIntegrationFlowDatasetTargetConfiguration).- Parameters:
datasetTarget- a consumer that will call methods onDataIntegrationFlowDatasetTargetConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
datasetTarget(DataIntegrationFlowDatasetTargetConfiguration)
-
-