Interface Scoping.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Scoping.Builder,Scoping>,SdkBuilder<Scoping.Builder,Scoping>,SdkPojo
- Enclosing class:
- Scoping
public static interface Scoping.Builder extends SdkPojo, CopyableBuilder<Scoping.Builder,Scoping>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Scoping.Builderexcludes(Consumer<JobScopingBlock.Builder> excludes)The property- and tag-based conditions that determine which objects to exclude from the analysis.Scoping.Builderexcludes(JobScopingBlock excludes)The property- and tag-based conditions that determine which objects to exclude from the analysis.default Scoping.Builderincludes(Consumer<JobScopingBlock.Builder> includes)The property- and tag-based conditions that determine which objects to include in the analysis.Scoping.Builderincludes(JobScopingBlock includes)The property- and tag-based conditions that determine which objects to include in the analysis.-
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
-
excludes
Scoping.Builder excludes(JobScopingBlock excludes)
The property- and tag-based conditions that determine which objects to exclude from the analysis.
- Parameters:
excludes- The property- and tag-based conditions that determine which objects to exclude from the analysis.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
excludes
default Scoping.Builder excludes(Consumer<JobScopingBlock.Builder> excludes)
The property- and tag-based conditions that determine which objects to exclude from the analysis.
This is a convenience method that creates an instance of theJobScopingBlock.Builderavoiding the need to create one manually viaJobScopingBlock.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toexcludes(JobScopingBlock).- Parameters:
excludes- a consumer that will call methods onJobScopingBlock.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
excludes(JobScopingBlock)
-
includes
Scoping.Builder includes(JobScopingBlock includes)
The property- and tag-based conditions that determine which objects to include in the analysis.
- Parameters:
includes- The property- and tag-based conditions that determine which objects to include in the analysis.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
includes
default Scoping.Builder includes(Consumer<JobScopingBlock.Builder> includes)
The property- and tag-based conditions that determine which objects to include in the analysis.
This is a convenience method that creates an instance of theJobScopingBlock.Builderavoiding the need to create one manually viaJobScopingBlock.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toincludes(JobScopingBlock).- Parameters:
includes- a consumer that will call methods onJobScopingBlock.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
includes(JobScopingBlock)
-
-