Interface S3ClassificationScope.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<S3ClassificationScope.Builder,S3ClassificationScope>,SdkBuilder<S3ClassificationScope.Builder,S3ClassificationScope>,SdkPojo
- Enclosing class:
- S3ClassificationScope
public static interface S3ClassificationScope.Builder extends SdkPojo, CopyableBuilder<S3ClassificationScope.Builder,S3ClassificationScope>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default S3ClassificationScope.Builderexcludes(Consumer<S3ClassificationScopeExclusion.Builder> excludes)The S3 buckets that are excluded.S3ClassificationScope.Builderexcludes(S3ClassificationScopeExclusion excludes)The S3 buckets that are excluded.-
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
S3ClassificationScope.Builder excludes(S3ClassificationScopeExclusion excludes)
The S3 buckets that are excluded.
- Parameters:
excludes- The S3 buckets that are excluded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
excludes
default S3ClassificationScope.Builder excludes(Consumer<S3ClassificationScopeExclusion.Builder> excludes)
The S3 buckets that are excluded.
This is a convenience method that creates an instance of theS3ClassificationScopeExclusion.Builderavoiding the need to create one manually viaS3ClassificationScopeExclusion.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toexcludes(S3ClassificationScopeExclusion).- Parameters:
excludes- a consumer that will call methods onS3ClassificationScopeExclusion.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
excludes(S3ClassificationScopeExclusion)
-
-