Interface JobScopingBlock.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<JobScopingBlock.Builder,JobScopingBlock>,SdkBuilder<JobScopingBlock.Builder,JobScopingBlock>,SdkPojo
- Enclosing class:
- JobScopingBlock
public static interface JobScopingBlock.Builder extends SdkPojo, CopyableBuilder<JobScopingBlock.Builder,JobScopingBlock>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JobScopingBlock.Builderand(Collection<JobScopeTerm> and)An array of conditions, one for each property- or tag-based condition that determines which objects to include or exclude from the job.JobScopingBlock.Builderand(Consumer<JobScopeTerm.Builder>... and)An array of conditions, one for each property- or tag-based condition that determines which objects to include or exclude from the job.JobScopingBlock.Builderand(JobScopeTerm... and)An array of conditions, one for each property- or tag-based condition that determines which objects 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
and
JobScopingBlock.Builder and(Collection<JobScopeTerm> and)
An array of conditions, one for each property- or tag-based condition that determines which objects 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 property- or tag-based condition that determines which objects 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
JobScopingBlock.Builder and(JobScopeTerm... and)
An array of conditions, one for each property- or tag-based condition that determines which objects 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 property- or tag-based condition that determines which objects 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
JobScopingBlock.Builder and(Consumer<JobScopeTerm.Builder>... and)
An array of conditions, one for each property- or tag-based condition that determines which objects 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 theJobScopeTerm.Builderavoiding the need to create one manually viaJobScopeTerm.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 onJobScopeTerm.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#and(java.util.Collection)
-
-