#[non_exhaustive]pub struct CreateIntegrationTablePropertiesInput {
pub resource_arn: Option<String>,
pub table_name: Option<String>,
pub source_table_config: Option<SourceTableConfig>,
pub target_table_config: Option<TargetTableConfig>,
}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.resource_arn: Option<String>The Amazon Resource Name (ARN) of the target table for which to create integration table properties. Currently, this API only supports creating integration table properties for target tables, and the provided ARN should be the ARN of the target table in the Glue Data Catalog. Support for creating integration table properties for source connections (using the connection ARN) is not yet implemented and will be added in a future release.
table_name: Option<String>The name of the table to be replicated.
source_table_config: Option<SourceTableConfig>A structure for the source table configuration. See the SourceTableConfig structure to see list of supported source properties.
target_table_config: Option<TargetTableConfig>A structure for the target table configuration.
Implementations§
Source§impl CreateIntegrationTablePropertiesInput
impl CreateIntegrationTablePropertiesInput
Sourcepub fn resource_arn(&self) -> Option<&str>
pub fn resource_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the target table for which to create integration table properties. Currently, this API only supports creating integration table properties for target tables, and the provided ARN should be the ARN of the target table in the Glue Data Catalog. Support for creating integration table properties for source connections (using the connection ARN) is not yet implemented and will be added in a future release.
Sourcepub fn table_name(&self) -> Option<&str>
pub fn table_name(&self) -> Option<&str>
The name of the table to be replicated.
Sourcepub fn source_table_config(&self) -> Option<&SourceTableConfig>
pub fn source_table_config(&self) -> Option<&SourceTableConfig>
A structure for the source table configuration. See the SourceTableConfig structure to see list of supported source properties.
Sourcepub fn target_table_config(&self) -> Option<&TargetTableConfig>
pub fn target_table_config(&self) -> Option<&TargetTableConfig>
A structure for the target table configuration.
Source§impl CreateIntegrationTablePropertiesInput
impl CreateIntegrationTablePropertiesInput
Sourcepub fn builder() -> CreateIntegrationTablePropertiesInputBuilder
pub fn builder() -> CreateIntegrationTablePropertiesInputBuilder
Creates a new builder-style object to manufacture CreateIntegrationTablePropertiesInput.
Trait Implementations§
Source§impl Clone for CreateIntegrationTablePropertiesInput
impl Clone for CreateIntegrationTablePropertiesInput
Source§fn clone(&self) -> CreateIntegrationTablePropertiesInput
fn clone(&self) -> CreateIntegrationTablePropertiesInput
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl PartialEq for CreateIntegrationTablePropertiesInput
impl PartialEq for CreateIntegrationTablePropertiesInput
Source§fn eq(&self, other: &CreateIntegrationTablePropertiesInput) -> bool
fn eq(&self, other: &CreateIntegrationTablePropertiesInput) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateIntegrationTablePropertiesInput
Auto Trait Implementations§
impl Freeze for CreateIntegrationTablePropertiesInput
impl RefUnwindSafe for CreateIntegrationTablePropertiesInput
impl Send for CreateIntegrationTablePropertiesInput
impl Sync for CreateIntegrationTablePropertiesInput
impl Unpin for CreateIntegrationTablePropertiesInput
impl UnsafeUnpin for CreateIntegrationTablePropertiesInput
impl UnwindSafe for CreateIntegrationTablePropertiesInput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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