Struct aws_sdk_glue::types::IcebergTarget
source · #[non_exhaustive]pub struct IcebergTarget {
pub paths: Option<Vec<String>>,
pub connection_name: Option<String>,
pub exclusions: Option<Vec<String>>,
pub maximum_traversal_depth: Option<i32>,
}Expand description
Specifies an Apache Iceberg data source where Iceberg tables are stored in Amazon S3.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.paths: Option<Vec<String>>One or more Amazon S3 paths that contains Iceberg metadata folders as s3://bucket/prefix.
connection_name: Option<String>The name of the connection to use to connect to the Iceberg target.
exclusions: Option<Vec<String>>A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.
maximum_traversal_depth: Option<i32>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.
Implementations§
source§impl IcebergTarget
impl IcebergTarget
sourcepub fn paths(&self) -> &[String]
pub fn paths(&self) -> &[String]
One or more Amazon S3 paths that contains Iceberg metadata folders as s3://bucket/prefix.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .paths.is_none().
sourcepub fn connection_name(&self) -> Option<&str>
pub fn connection_name(&self) -> Option<&str>
The name of the connection to use to connect to the Iceberg target.
sourcepub fn exclusions(&self) -> &[String]
pub fn exclusions(&self) -> &[String]
A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .exclusions.is_none().
sourcepub fn maximum_traversal_depth(&self) -> Option<i32>
pub fn maximum_traversal_depth(&self) -> Option<i32>
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.
source§impl IcebergTarget
impl IcebergTarget
sourcepub fn builder() -> IcebergTargetBuilder
pub fn builder() -> IcebergTargetBuilder
Creates a new builder-style object to manufacture IcebergTarget.
Trait Implementations§
source§impl Clone for IcebergTarget
impl Clone for IcebergTarget
source§fn clone(&self) -> IcebergTarget
fn clone(&self) -> IcebergTarget
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for IcebergTarget
impl Debug for IcebergTarget
source§impl PartialEq for IcebergTarget
impl PartialEq for IcebergTarget
source§fn eq(&self, other: &IcebergTarget) -> bool
fn eq(&self, other: &IcebergTarget) -> bool
self and other values to be equal, and is used
by ==.