Interface S3ClassificationScopeExclusionUpdate.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<S3ClassificationScopeExclusionUpdate.Builder,S3ClassificationScopeExclusionUpdate>,SdkBuilder<S3ClassificationScopeExclusionUpdate.Builder,S3ClassificationScopeExclusionUpdate>,SdkPojo
- Enclosing class:
- S3ClassificationScopeExclusionUpdate
public static interface S3ClassificationScopeExclusionUpdate.Builder extends SdkPojo, CopyableBuilder<S3ClassificationScopeExclusionUpdate.Builder,S3ClassificationScopeExclusionUpdate>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description S3ClassificationScopeExclusionUpdate.BuilderbucketNames(String... bucketNames)Depending on the value specified for the update operation (ClassificationScopeUpdateOperation), an array of strings that: lists the names of buckets to add or remove from the list, or specifies a new set of bucket names that overwrites all existing names in the list.S3ClassificationScopeExclusionUpdate.BuilderbucketNames(Collection<String> bucketNames)Depending on the value specified for the update operation (ClassificationScopeUpdateOperation), an array of strings that: lists the names of buckets to add or remove from the list, or specifies a new set of bucket names that overwrites all existing names in the list.S3ClassificationScopeExclusionUpdate.Builderoperation(String operation)Specifies how to apply the changes to the exclusion list.S3ClassificationScopeExclusionUpdate.Builderoperation(ClassificationScopeUpdateOperation operation)Specifies how to apply the changes to the exclusion list.-
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
-
bucketNames
S3ClassificationScopeExclusionUpdate.Builder bucketNames(Collection<String> bucketNames)
Depending on the value specified for the update operation (ClassificationScopeUpdateOperation), an array of strings that: lists the names of buckets to add or remove from the list, or specifies a new set of bucket names that overwrites all existing names in the list. Each string must be the full name of an S3 bucket. Values are case sensitive.
- Parameters:
bucketNames- Depending on the value specified for the update operation (ClassificationScopeUpdateOperation), an array of strings that: lists the names of buckets to add or remove from the list, or specifies a new set of bucket names that overwrites all existing names in the list. Each string must be the full name of an S3 bucket. Values are case sensitive.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bucketNames
S3ClassificationScopeExclusionUpdate.Builder bucketNames(String... bucketNames)
Depending on the value specified for the update operation (ClassificationScopeUpdateOperation), an array of strings that: lists the names of buckets to add or remove from the list, or specifies a new set of bucket names that overwrites all existing names in the list. Each string must be the full name of an S3 bucket. Values are case sensitive.
- Parameters:
bucketNames- Depending on the value specified for the update operation (ClassificationScopeUpdateOperation), an array of strings that: lists the names of buckets to add or remove from the list, or specifies a new set of bucket names that overwrites all existing names in the list. Each string must be the full name of an S3 bucket. Values are case sensitive.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operation
S3ClassificationScopeExclusionUpdate.Builder operation(String operation)
Specifies how to apply the changes to the exclusion list. Valid values are:
-
ADD - Append the specified bucket names to the current list.
-
REMOVE - Remove the specified bucket names from the current list.
-
REPLACE - Overwrite the current list with the specified list of bucket names. If you specify this value, Amazon Macie removes all existing names from the list and adds all the specified names to the list.
- Parameters:
operation- Specifies how to apply the changes to the exclusion list. Valid values are:-
ADD - Append the specified bucket names to the current list.
-
REMOVE - Remove the specified bucket names from the current list.
-
REPLACE - Overwrite the current list with the specified list of bucket names. If you specify this value, Amazon Macie removes all existing names from the list and adds all the specified names to the list.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ClassificationScopeUpdateOperation,ClassificationScopeUpdateOperation
-
-
operation
S3ClassificationScopeExclusionUpdate.Builder operation(ClassificationScopeUpdateOperation operation)
Specifies how to apply the changes to the exclusion list. Valid values are:
-
ADD - Append the specified bucket names to the current list.
-
REMOVE - Remove the specified bucket names from the current list.
-
REPLACE - Overwrite the current list with the specified list of bucket names. If you specify this value, Amazon Macie removes all existing names from the list and adds all the specified names to the list.
- Parameters:
operation- Specifies how to apply the changes to the exclusion list. Valid values are:-
ADD - Append the specified bucket names to the current list.
-
REMOVE - Remove the specified bucket names from the current list.
-
REPLACE - Overwrite the current list with the specified list of bucket names. If you specify this value, Amazon Macie removes all existing names from the list and adds all the specified names to the list.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ClassificationScopeUpdateOperation,ClassificationScopeUpdateOperation
-
-
-