Interface FileConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FileConfiguration.Builder,FileConfiguration>,SdkBuilder<FileConfiguration.Builder,FileConfiguration>,SdkPojo
- Enclosing class:
- FileConfiguration
public static interface FileConfiguration.Builder extends SdkPojo, CopyableBuilder<FileConfiguration.Builder,FileConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FileConfiguration.Builderfilters(Map<String,? extends Collection<String>> filters)Restrictions for what files should be pulled from the source.FileConfiguration.Builderfolders(String... folders)Identifiers for the source folders to pull all files from recursively.FileConfiguration.Builderfolders(Collection<String> folders)Identifiers for the source folders to pull all files from recursively.-
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
-
folders
FileConfiguration.Builder folders(Collection<String> folders)
Identifiers for the source folders to pull all files from recursively.
- Parameters:
folders- Identifiers for the source folders to pull all files from recursively.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
folders
FileConfiguration.Builder folders(String... folders)
Identifiers for the source folders to pull all files from recursively.
- Parameters:
folders- Identifiers for the source folders to pull all files from recursively.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
FileConfiguration.Builder filters(Map<String,? extends Collection<String>> filters)
Restrictions for what files should be pulled from the source.
- Parameters:
filters- Restrictions for what files should be pulled from the source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-