#[non_exhaustive]pub struct GetIntegrationTablePropertiesInput {
pub resource_arn: Option<String>,
pub table_name: Option<String>,
}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.
Implementations§
Source§impl GetIntegrationTablePropertiesInput
impl GetIntegrationTablePropertiesInput
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.
Source§impl GetIntegrationTablePropertiesInput
impl GetIntegrationTablePropertiesInput
Sourcepub fn builder() -> GetIntegrationTablePropertiesInputBuilder
pub fn builder() -> GetIntegrationTablePropertiesInputBuilder
Creates a new builder-style object to manufacture GetIntegrationTablePropertiesInput.
Trait Implementations§
Source§impl Clone for GetIntegrationTablePropertiesInput
impl Clone for GetIntegrationTablePropertiesInput
Source§fn clone(&self) -> GetIntegrationTablePropertiesInput
fn clone(&self) -> GetIntegrationTablePropertiesInput
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 GetIntegrationTablePropertiesInput
impl PartialEq for GetIntegrationTablePropertiesInput
Source§fn eq(&self, other: &GetIntegrationTablePropertiesInput) -> bool
fn eq(&self, other: &GetIntegrationTablePropertiesInput) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetIntegrationTablePropertiesInput
Auto Trait Implementations§
impl Freeze for GetIntegrationTablePropertiesInput
impl RefUnwindSafe for GetIntegrationTablePropertiesInput
impl Send for GetIntegrationTablePropertiesInput
impl Sync for GetIntegrationTablePropertiesInput
impl Unpin for GetIntegrationTablePropertiesInput
impl UnsafeUnpin for GetIntegrationTablePropertiesInput
impl UnwindSafe for GetIntegrationTablePropertiesInput
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