Struct aws_sdk_glue::types::S3DeltaSource
source · #[non_exhaustive]pub struct S3DeltaSource {
pub name: String,
pub paths: Vec<String>,
pub additional_delta_options: Option<HashMap<String, String>>,
pub additional_options: Option<S3DirectSourceAdditionalOptions>,
pub output_schemas: Option<Vec<GlueSchema>>,
}Expand description
Specifies a Delta Lake data source stored in Amazon S3.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringThe name of the Delta Lake source.
paths: Vec<String>A list of the Amazon S3 paths to read from.
additional_delta_options: Option<HashMap<String, String>>Specifies additional connection options.
additional_options: Option<S3DirectSourceAdditionalOptions>Specifies additional options for the connector.
output_schemas: Option<Vec<GlueSchema>>Specifies the data schema for the Delta Lake source.
Implementations§
source§impl S3DeltaSource
impl S3DeltaSource
sourcepub fn additional_delta_options(&self) -> Option<&HashMap<String, String>>
pub fn additional_delta_options(&self) -> Option<&HashMap<String, String>>
Specifies additional connection options.
sourcepub fn additional_options(&self) -> Option<&S3DirectSourceAdditionalOptions>
pub fn additional_options(&self) -> Option<&S3DirectSourceAdditionalOptions>
Specifies additional options for the connector.
sourcepub fn output_schemas(&self) -> &[GlueSchema]
pub fn output_schemas(&self) -> &[GlueSchema]
Specifies the data schema for the Delta Lake source.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .output_schemas.is_none().
source§impl S3DeltaSource
impl S3DeltaSource
sourcepub fn builder() -> S3DeltaSourceBuilder
pub fn builder() -> S3DeltaSourceBuilder
Creates a new builder-style object to manufacture S3DeltaSource.
Trait Implementations§
source§impl Clone for S3DeltaSource
impl Clone for S3DeltaSource
source§fn clone(&self) -> S3DeltaSource
fn clone(&self) -> S3DeltaSource
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for S3DeltaSource
impl Debug for S3DeltaSource
source§impl PartialEq for S3DeltaSource
impl PartialEq for S3DeltaSource
source§fn eq(&self, other: &S3DeltaSource) -> bool
fn eq(&self, other: &S3DeltaSource) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for S3DeltaSource
Auto Trait Implementations§
impl Freeze for S3DeltaSource
impl RefUnwindSafe for S3DeltaSource
impl Send for S3DeltaSource
impl Sync for S3DeltaSource
impl Unpin for S3DeltaSource
impl UnwindSafe for S3DeltaSource
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.