Interface PathFormat.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PathFormat.Builder,PathFormat>,SdkBuilder<PathFormat.Builder,PathFormat>,SdkPojo
- Enclosing class:
- PathFormat
public static interface PathFormat.Builder extends SdkPojo, CopyableBuilder<PathFormat.Builder,PathFormat>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PathFormat.BuilderobjectPrefixes(String... objectPrefixes)A list of Amazon S3 prefixes that points to sub-folders in the Amazon S3 bucket.PathFormat.BuilderobjectPrefixes(Collection<String> objectPrefixes)A list of Amazon S3 prefixes that points to sub-folders in the Amazon S3 bucket.-
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
-
objectPrefixes
PathFormat.Builder objectPrefixes(Collection<String> objectPrefixes)
A list of Amazon S3 prefixes that points to sub-folders in the Amazon S3 bucket. Specify this list if you only want Lex to read the files under this set of sub-folders.
- Parameters:
objectPrefixes- A list of Amazon S3 prefixes that points to sub-folders in the Amazon S3 bucket. Specify this list if you only want Lex to read the files under this set of sub-folders.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objectPrefixes
PathFormat.Builder objectPrefixes(String... objectPrefixes)
A list of Amazon S3 prefixes that points to sub-folders in the Amazon S3 bucket. Specify this list if you only want Lex to read the files under this set of sub-folders.
- Parameters:
objectPrefixes- A list of Amazon S3 prefixes that points to sub-folders in the Amazon S3 bucket. Specify this list if you only want Lex to read the files under this set of sub-folders.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-