#[non_exhaustive]pub struct IdMappingWorkflowInputSource {
pub input_source_arn: String,
pub schema_name: String,
}
Expand description
An object containing InputSourceARN
and SchemaName
.
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.input_source_arn: String
An Gluetable ARN for the input source table.
schema_name: String
The name of the schema to be retrieved.
Implementations§
source§impl IdMappingWorkflowInputSource
impl IdMappingWorkflowInputSource
sourcepub fn input_source_arn(&self) -> &str
pub fn input_source_arn(&self) -> &str
An Gluetable ARN for the input source table.
sourcepub fn schema_name(&self) -> &str
pub fn schema_name(&self) -> &str
The name of the schema to be retrieved.
source§impl IdMappingWorkflowInputSource
impl IdMappingWorkflowInputSource
sourcepub fn builder() -> IdMappingWorkflowInputSourceBuilder
pub fn builder() -> IdMappingWorkflowInputSourceBuilder
Creates a new builder-style object to manufacture IdMappingWorkflowInputSource
.
Trait Implementations§
source§impl Clone for IdMappingWorkflowInputSource
impl Clone for IdMappingWorkflowInputSource
source§fn clone(&self) -> IdMappingWorkflowInputSource
fn clone(&self) -> IdMappingWorkflowInputSource
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 IdMappingWorkflowInputSource
impl Debug for IdMappingWorkflowInputSource
source§impl PartialEq for IdMappingWorkflowInputSource
impl PartialEq for IdMappingWorkflowInputSource
source§fn eq(&self, other: &IdMappingWorkflowInputSource) -> bool
fn eq(&self, other: &IdMappingWorkflowInputSource) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for IdMappingWorkflowInputSource
Auto Trait Implementations§
impl Freeze for IdMappingWorkflowInputSource
impl RefUnwindSafe for IdMappingWorkflowInputSource
impl Send for IdMappingWorkflowInputSource
impl Sync for IdMappingWorkflowInputSource
impl Unpin for IdMappingWorkflowInputSource
impl UnwindSafe for IdMappingWorkflowInputSource
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>
Creates a shared type from an unshared type.