Struct aws_sdk_glue::model::MappingEntry
source ·
[−]#[non_exhaustive]pub struct MappingEntry {
pub source_table: Option<String>,
pub source_path: Option<String>,
pub source_type: Option<String>,
pub target_table: Option<String>,
pub target_path: Option<String>,
pub target_type: Option<String>,
}
Expand description
Defines a mapping.
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.source_table: Option<String>
The name of the source table.
source_path: Option<String>
The source path.
source_type: Option<String>
The source type.
target_table: Option<String>
The target table.
target_path: Option<String>
The target path.
target_type: Option<String>
The target type.
Implementations
The name of the source table.
The source path.
The source type.
The target table.
The target path.
The target type.
Creates a new builder-style object to manufacture MappingEntry
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for MappingEntry
impl Send for MappingEntry
impl Sync for MappingEntry
impl Unpin for MappingEntry
impl UnwindSafe for MappingEntry
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more