Interface IcebergTarget.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IcebergTarget.Builder,IcebergTarget>,SdkBuilder<IcebergTarget.Builder,IcebergTarget>,SdkPojo
- Enclosing class:
- IcebergTarget
public static interface IcebergTarget.Builder extends SdkPojo, CopyableBuilder<IcebergTarget.Builder,IcebergTarget>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IcebergTarget.BuilderconnectionName(String connectionName)The name of the connection to use to connect to the Iceberg target.IcebergTarget.Builderexclusions(String... exclusions)A list of glob patterns used to exclude from the crawl.IcebergTarget.Builderexclusions(Collection<String> exclusions)A list of glob patterns used to exclude from the crawl.IcebergTarget.BuildermaximumTraversalDepth(Integer maximumTraversalDepth)The maximum depth of Amazon S3 paths that the crawler can traverse to discover the Iceberg metadata folder in your Amazon S3 path.IcebergTarget.Builderpaths(String... paths)One or more Amazon S3 paths that contains Iceberg metadata folders ass3://bucket/prefix.IcebergTarget.Builderpaths(Collection<String> paths)One or more Amazon S3 paths that contains Iceberg metadata folders ass3://bucket/prefix.-
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
IcebergTarget.Builder paths(Collection<String> paths)
One or more Amazon S3 paths that contains Iceberg metadata folders as
s3://bucket/prefix.- Parameters:
paths- One or more Amazon S3 paths that contains Iceberg metadata folders ass3://bucket/prefix.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
paths
IcebergTarget.Builder paths(String... paths)
One or more Amazon S3 paths that contains Iceberg metadata folders as
s3://bucket/prefix.- Parameters:
paths- One or more Amazon S3 paths that contains Iceberg metadata folders ass3://bucket/prefix.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectionName
IcebergTarget.Builder connectionName(String connectionName)
The name of the connection to use to connect to the Iceberg target.
- Parameters:
connectionName- The name of the connection to use to connect to the Iceberg target.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exclusions
IcebergTarget.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
IcebergTarget.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
IcebergTarget.Builder maximumTraversalDepth(Integer maximumTraversalDepth)
The maximum depth of Amazon S3 paths that the crawler can traverse to discover the Iceberg 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 Iceberg 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.
-
-