Interface CriteriaBlockForJob.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CriteriaBlockForJob.Builder,CriteriaBlockForJob>,SdkBuilder<CriteriaBlockForJob.Builder,CriteriaBlockForJob>,SdkPojo
- Enclosing class:
- CriteriaBlockForJob
public static interface CriteriaBlockForJob.Builder extends SdkPojo, CopyableBuilder<CriteriaBlockForJob.Builder,CriteriaBlockForJob>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CriteriaBlockForJob.Builderand(Collection<CriteriaForJob> and)An array of conditions, one for each condition that determines which buckets to include or exclude from the job.CriteriaBlockForJob.Builderand(Consumer<CriteriaForJob.Builder>... and)An array of conditions, one for each condition that determines which buckets to include or exclude from the job.CriteriaBlockForJob.Builderand(CriteriaForJob... and)An array of conditions, one for each condition that determines which buckets to include or exclude from the job.-
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
-
and
CriteriaBlockForJob.Builder and(Collection<CriteriaForJob> and)
An array of conditions, one for each condition that determines which buckets to include or exclude from the job. If you specify more than one condition, Amazon Macie uses AND logic to join the conditions.
- Parameters:
and- An array of conditions, one for each condition that determines which buckets to include or exclude from the job. If you specify more than one condition, Amazon Macie uses AND logic to join the conditions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
and
CriteriaBlockForJob.Builder and(CriteriaForJob... and)
An array of conditions, one for each condition that determines which buckets to include or exclude from the job. If you specify more than one condition, Amazon Macie uses AND logic to join the conditions.
- Parameters:
and- An array of conditions, one for each condition that determines which buckets to include or exclude from the job. If you specify more than one condition, Amazon Macie uses AND logic to join the conditions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
and
CriteriaBlockForJob.Builder and(Consumer<CriteriaForJob.Builder>... and)
An array of conditions, one for each condition that determines which buckets to include or exclude from the job. If you specify more than one condition, Amazon Macie uses AND logic to join the conditions.
This is a convenience method that creates an instance of theCriteriaForJob.Builderavoiding the need to create one manually viaCriteriaForJob.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#and(List.) - Parameters:
and- a consumer that will call methods onCriteriaForJob.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#and(java.util.Collection)
-
-