Interface HudiTarget.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<HudiTarget.Builder,HudiTarget>,SdkBuilder<HudiTarget.Builder,HudiTarget>,SdkPojo
- Enclosing class:
- HudiTarget
public static interface HudiTarget.Builder extends SdkPojo, CopyableBuilder<HudiTarget.Builder,HudiTarget>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HudiTarget.BuilderconnectionName(String connectionName)The name of the connection to use to connect to the Hudi target.HudiTarget.Builderexclusions(String... exclusions)A list of glob patterns used to exclude from the crawl.HudiTarget.Builderexclusions(Collection<String> exclusions)A list of glob patterns used to exclude from the crawl.HudiTarget.BuildermaximumTraversalDepth(Integer maximumTraversalDepth)The maximum depth of Amazon S3 paths that the crawler can traverse to discover the Hudi metadata folder in your Amazon S3 path.HudiTarget.Builderpaths(String... paths)An array of Amazon S3 location strings for Hudi, each indicating the root folder with which the metadata files for a Hudi table resides.HudiTarget.Builderpaths(Collection<String> paths)An array of Amazon S3 location strings for Hudi, each indicating the root folder with which the metadata files for a Hudi table resides.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
paths
HudiTarget.Builder paths(Collection<String> paths)
An array of Amazon S3 location strings for Hudi, each indicating the root folder with which the metadata files for a Hudi table resides. The Hudi folder may be located in a child folder of the root folder.
The crawler will scan all folders underneath a path for a Hudi folder.
- Parameters:
paths- An array of Amazon S3 location strings for Hudi, each indicating the root folder with which the metadata files for a Hudi table resides. The Hudi folder may be located in a child folder of the root folder.The crawler will scan all folders underneath a path for a Hudi folder.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
paths
HudiTarget.Builder paths(String... paths)
An array of Amazon S3 location strings for Hudi, each indicating the root folder with which the metadata files for a Hudi table resides. The Hudi folder may be located in a child folder of the root folder.
The crawler will scan all folders underneath a path for a Hudi folder.
- Parameters:
paths- An array of Amazon S3 location strings for Hudi, each indicating the root folder with which the metadata files for a Hudi table resides. The Hudi folder may be located in a child folder of the root folder.The crawler will scan all folders underneath a path for a Hudi folder.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectionName
HudiTarget.Builder connectionName(String connectionName)
The name of the connection to use to connect to the Hudi target. If your Hudi files are stored in buckets that require VPC authorization, you can set their connection properties here.
- Parameters:
connectionName- The name of the connection to use to connect to the Hudi target. If your Hudi files are stored in buckets that require VPC authorization, you can set their connection properties here.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exclusions
HudiTarget.Builder exclusions(Collection<String> exclusions)
A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.
- Parameters:
exclusions- A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exclusions
HudiTarget.Builder exclusions(String... exclusions)
A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.
- Parameters:
exclusions- A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maximumTraversalDepth
HudiTarget.Builder maximumTraversalDepth(Integer maximumTraversalDepth)
The maximum depth of Amazon S3 paths that the crawler can traverse to discover the Hudi metadata folder in your Amazon S3 path. Used to limit the crawler run time.
- Parameters:
maximumTraversalDepth- The maximum depth of Amazon S3 paths that the crawler can traverse to discover the Hudi metadata folder in your Amazon S3 path. Used to limit the crawler run time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-