Interface S3DataAccessDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<S3DataAccessDetails.Builder,S3DataAccessDetails>,SdkBuilder<S3DataAccessDetails.Builder,S3DataAccessDetails>,SdkPojo
- Enclosing class:
- S3DataAccessDetails
public static interface S3DataAccessDetails.Builder extends SdkPojo, CopyableBuilder<S3DataAccessDetails.Builder,S3DataAccessDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description S3DataAccessDetails.BuilderkeyPrefixes(String... keyPrefixes)A list of the key prefixes affected by this notification.S3DataAccessDetails.BuilderkeyPrefixes(Collection<String> keyPrefixes)A list of the key prefixes affected by this notification.S3DataAccessDetails.Builderkeys(String... keys)A list of the keys affected by this notification.S3DataAccessDetails.Builderkeys(Collection<String> keys)A list of the keys affected by this notification.-
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
-
keyPrefixes
S3DataAccessDetails.Builder keyPrefixes(Collection<String> keyPrefixes)
A list of the key prefixes affected by this notification. This can have up to 50 entries.
- Parameters:
keyPrefixes- A list of the key prefixes affected by this notification. This can have up to 50 entries.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keyPrefixes
S3DataAccessDetails.Builder keyPrefixes(String... keyPrefixes)
A list of the key prefixes affected by this notification. This can have up to 50 entries.
- Parameters:
keyPrefixes- A list of the key prefixes affected by this notification. This can have up to 50 entries.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keys
S3DataAccessDetails.Builder keys(Collection<String> keys)
A list of the keys affected by this notification. This can have up to 50 entries.
- Parameters:
keys- A list of the keys affected by this notification. This can have up to 50 entries.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keys
S3DataAccessDetails.Builder keys(String... keys)
A list of the keys affected by this notification. This can have up to 50 entries.
- Parameters:
keys- A list of the keys affected by this notification. This can have up to 50 entries.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-