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 ==.impl StructuralPartialEq for IcebergTarget
Auto Trait Implementations§
impl Freeze for IcebergTarget
impl RefUnwindSafe for IcebergTarget
impl Send for IcebergTarget
impl Sync for IcebergTarget
impl Unpin for IcebergTarget
impl UnwindSafe for IcebergTarget
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more