Interface DataQualityRuleRecommendationRunDescription.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataQualityRuleRecommendationRunDescription.Builder,DataQualityRuleRecommendationRunDescription>,SdkBuilder<DataQualityRuleRecommendationRunDescription.Builder,DataQualityRuleRecommendationRunDescription>,SdkPojo
- Enclosing class:
- DataQualityRuleRecommendationRunDescription
public static interface DataQualityRuleRecommendationRunDescription.Builder extends SdkPojo, CopyableBuilder<DataQualityRuleRecommendationRunDescription.Builder,DataQualityRuleRecommendationRunDescription>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DataQualityRuleRecommendationRunDescription.BuilderdataSource(Consumer<DataSource.Builder> dataSource)The data source (Glue table) associated with the recommendation run.DataQualityRuleRecommendationRunDescription.BuilderdataSource(DataSource dataSource)The data source (Glue table) associated with the recommendation run.DataQualityRuleRecommendationRunDescription.BuilderrunId(String runId)The unique run identifier associated with this run.DataQualityRuleRecommendationRunDescription.BuilderstartedOn(Instant startedOn)The date and time when this run started.DataQualityRuleRecommendationRunDescription.Builderstatus(String status)The status for this run.DataQualityRuleRecommendationRunDescription.Builderstatus(TaskStatusType status)The status for this run.-
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
-
runId
DataQualityRuleRecommendationRunDescription.Builder runId(String runId)
The unique run identifier associated with this run.
- Parameters:
runId- The unique run identifier associated with this run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
DataQualityRuleRecommendationRunDescription.Builder status(String status)
The status for this run.
- Parameters:
status- The status for this run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TaskStatusType,TaskStatusType
-
status
DataQualityRuleRecommendationRunDescription.Builder status(TaskStatusType status)
The status for this run.
- Parameters:
status- The status for this run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TaskStatusType,TaskStatusType
-
startedOn
DataQualityRuleRecommendationRunDescription.Builder startedOn(Instant startedOn)
The date and time when this run started.
- Parameters:
startedOn- The date and time when this run started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataSource
DataQualityRuleRecommendationRunDescription.Builder dataSource(DataSource dataSource)
The data source (Glue table) associated with the recommendation run.
- Parameters:
dataSource- The data source (Glue table) associated with the recommendation run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataSource
default DataQualityRuleRecommendationRunDescription.Builder dataSource(Consumer<DataSource.Builder> dataSource)
The data source (Glue table) associated with the recommendation run.
This is a convenience method that creates an instance of theDataSource.Builderavoiding the need to create one manually viaDataSource.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todataSource(DataSource).- Parameters:
dataSource- a consumer that will call methods onDataSource.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
dataSource(DataSource)
-
-