Interface DataQualityResultFilterCriteria.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataQualityResultFilterCriteria.Builder,DataQualityResultFilterCriteria>,SdkBuilder<DataQualityResultFilterCriteria.Builder,DataQualityResultFilterCriteria>,SdkPojo
- Enclosing class:
- DataQualityResultFilterCriteria
public static interface DataQualityResultFilterCriteria.Builder extends SdkPojo, CopyableBuilder<DataQualityResultFilterCriteria.Builder,DataQualityResultFilterCriteria>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DataQualityResultFilterCriteria.BuilderdataSource(Consumer<DataSource.Builder> dataSource)Filter results by the specified data source.DataQualityResultFilterCriteria.BuilderdataSource(DataSource dataSource)Filter results by the specified data source.DataQualityResultFilterCriteria.BuilderjobName(String jobName)Filter results by the specified job name.DataQualityResultFilterCriteria.BuilderjobRunId(String jobRunId)Filter results by the specified job run ID.DataQualityResultFilterCriteria.BuilderstartedAfter(Instant startedAfter)Filter results by runs that started after this time.DataQualityResultFilterCriteria.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, sdkFields
-
-
-
-
Method Detail
-
dataSource
DataQualityResultFilterCriteria.Builder dataSource(DataSource dataSource)
Filter results by the specified data source. For example, retrieving all results for an Glue table.
- Parameters:
dataSource- Filter results by the specified data source. For example, retrieving all results for an Glue table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataSource
default DataQualityResultFilterCriteria.Builder dataSource(Consumer<DataSource.Builder> dataSource)
Filter results by the specified data source. For example, retrieving all results for an Glue table.
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)
-
jobName
DataQualityResultFilterCriteria.Builder jobName(String jobName)
Filter results by the specified job name.
- Parameters:
jobName- Filter results by the specified job name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobRunId
DataQualityResultFilterCriteria.Builder jobRunId(String jobRunId)
Filter results by the specified job run ID.
- Parameters:
jobRunId- Filter results by the specified job run ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startedAfter
DataQualityResultFilterCriteria.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.
-
startedBefore
DataQualityResultFilterCriteria.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.
-
-