Interface DataQualityRulesetEvaluationRunDescription.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataQualityRulesetEvaluationRunDescription.Builder,DataQualityRulesetEvaluationRunDescription>,SdkBuilder<DataQualityRulesetEvaluationRunDescription.Builder,DataQualityRulesetEvaluationRunDescription>,SdkPojo
- Enclosing class:
- DataQualityRulesetEvaluationRunDescription
public static interface DataQualityRulesetEvaluationRunDescription.Builder extends SdkPojo, CopyableBuilder<DataQualityRulesetEvaluationRunDescription.Builder,DataQualityRulesetEvaluationRunDescription>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DataQualityRulesetEvaluationRunDescription.BuilderdataSource(Consumer<DataSource.Builder> dataSource)The data source (an Glue table) associated with the run.DataQualityRulesetEvaluationRunDescription.BuilderdataSource(DataSource dataSource)The data source (an Glue table) associated with the run.DataQualityRulesetEvaluationRunDescription.BuilderrunId(String runId)The unique run identifier associated with this run.DataQualityRulesetEvaluationRunDescription.BuilderstartedOn(Instant startedOn)The date and time when the run started.DataQualityRulesetEvaluationRunDescription.Builderstatus(String status)The status for this run.DataQualityRulesetEvaluationRunDescription.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, sdkFields
-
-
-
-
Method Detail
-
runId
DataQualityRulesetEvaluationRunDescription.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
DataQualityRulesetEvaluationRunDescription.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
DataQualityRulesetEvaluationRunDescription.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
DataQualityRulesetEvaluationRunDescription.Builder startedOn(Instant startedOn)
The date and time when the run started.
- Parameters:
startedOn- The date and time when the run started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataSource
DataQualityRulesetEvaluationRunDescription.Builder dataSource(DataSource dataSource)
The data source (an Glue table) associated with the run.
- Parameters:
dataSource- The data source (an Glue table) associated with the run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataSource
default DataQualityRulesetEvaluationRunDescription.Builder dataSource(Consumer<DataSource.Builder> dataSource)
The data source (an Glue table) associated with the 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)
-
-