#[non_exhaustive]pub struct GetIntegrationTablePropertiesOutput {
pub resource_arn: Option<String>,
pub table_name: Option<String>,
pub source_table_config: Option<SourceTableConfig>,
pub target_table_config: Option<TargetTableConfig>,
/* private fields */
}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 retrieve integration table properties. Currently, this API only supports retrieving properties for target tables, and the provided ARN should be the ARN of the target table in the Glue Data Catalog. Support for retrieving 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.
target_table_config: Option<TargetTableConfig>A structure for the target table configuration.
Implementations§
Source§impl GetIntegrationTablePropertiesOutput
impl GetIntegrationTablePropertiesOutput
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 retrieve integration table properties. Currently, this API only supports retrieving properties for target tables, and the provided ARN should be the ARN of the target table in the Glue Data Catalog. Support for retrieving 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.
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 GetIntegrationTablePropertiesOutput
impl GetIntegrationTablePropertiesOutput
Sourcepub fn builder() -> GetIntegrationTablePropertiesOutputBuilder
pub fn builder() -> GetIntegrationTablePropertiesOutputBuilder
Creates a new builder-style object to manufacture GetIntegrationTablePropertiesOutput.
Trait Implementations§
Source§impl Clone for GetIntegrationTablePropertiesOutput
impl Clone for GetIntegrationTablePropertiesOutput
Source§fn clone(&self) -> GetIntegrationTablePropertiesOutput
fn clone(&self) -> GetIntegrationTablePropertiesOutput
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 GetIntegrationTablePropertiesOutput
impl PartialEq for GetIntegrationTablePropertiesOutput
Source§fn eq(&self, other: &GetIntegrationTablePropertiesOutput) -> bool
fn eq(&self, other: &GetIntegrationTablePropertiesOutput) -> bool
self and other values to be equal, and is used by ==.Source§impl RequestId for GetIntegrationTablePropertiesOutput
impl RequestId for GetIntegrationTablePropertiesOutput
Source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for GetIntegrationTablePropertiesOutput
Auto Trait Implementations§
impl Freeze for GetIntegrationTablePropertiesOutput
impl RefUnwindSafe for GetIntegrationTablePropertiesOutput
impl Send for GetIntegrationTablePropertiesOutput
impl Sync for GetIntegrationTablePropertiesOutput
impl Unpin for GetIntegrationTablePropertiesOutput
impl UnsafeUnpin for GetIntegrationTablePropertiesOutput
impl UnwindSafe for GetIntegrationTablePropertiesOutput
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