Interface DataQualityRulesetEvaluationRunFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataQualityRulesetEvaluationRunFilter.Builder,DataQualityRulesetEvaluationRunFilter>,SdkBuilder<DataQualityRulesetEvaluationRunFilter.Builder,DataQualityRulesetEvaluationRunFilter>,SdkPojo
- Enclosing class:
- DataQualityRulesetEvaluationRunFilter
public static interface DataQualityRulesetEvaluationRunFilter.Builder extends SdkPojo, CopyableBuilder<DataQualityRulesetEvaluationRunFilter.Builder,DataQualityRulesetEvaluationRunFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DataQualityRulesetEvaluationRunFilter.BuilderdataSource(Consumer<DataSource.Builder> dataSource)Filter based on a data source (an Glue table) associated with the run.DataQualityRulesetEvaluationRunFilter.BuilderdataSource(DataSource dataSource)Filter based on a data source (an Glue table) associated with the run.DataQualityRulesetEvaluationRunFilter.BuilderstartedAfter(Instant startedAfter)Filter results by runs that started after this time.DataQualityRulesetEvaluationRunFilter.BuilderstartedBefore(Instant startedBefore)Filter results by runs that started before this time.-
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
-
dataSource
DataQualityRulesetEvaluationRunFilter.Builder dataSource(DataSource dataSource)
Filter based on a data source (an Glue table) associated with the run.
- Parameters:
dataSource- Filter based on a 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 DataQualityRulesetEvaluationRunFilter.Builder dataSource(Consumer<DataSource.Builder> dataSource)
Filter based on a 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)
-
startedBefore
DataQualityRulesetEvaluationRunFilter.Builder startedBefore(Instant startedBefore)
Filter results by runs that started before this time.
- Parameters:
startedBefore- Filter results by runs that started before this time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startedAfter
DataQualityRulesetEvaluationRunFilter.Builder startedAfter(Instant startedAfter)
Filter results by runs that started after this time.
- Parameters:
startedAfter- Filter results by runs that started after this time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-