#[non_exhaustive]pub struct GetIntegrationTablePropertiesInputBuilder { /* private fields */ }Expand description
A builder for GetIntegrationTablePropertiesInput.
Implementations§
Source§impl GetIntegrationTablePropertiesInputBuilder
impl GetIntegrationTablePropertiesInputBuilder
Sourcepub fn resource_arn(self, input: impl Into<String>) -> Self
pub fn resource_arn(self, input: impl Into<String>) -> Self
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.
This field is required.Sourcepub fn set_resource_arn(self, input: Option<String>) -> Self
pub fn set_resource_arn(self, input: Option<String>) -> Self
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 get_resource_arn(&self) -> &Option<String>
pub fn get_resource_arn(&self) -> &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.
Sourcepub fn table_name(self, input: impl Into<String>) -> Self
pub fn table_name(self, input: impl Into<String>) -> Self
The name of the table to be replicated.
This field is required.Sourcepub fn set_table_name(self, input: Option<String>) -> Self
pub fn set_table_name(self, input: Option<String>) -> Self
The name of the table to be replicated.
Sourcepub fn get_table_name(&self) -> &Option<String>
pub fn get_table_name(&self) -> &Option<String>
The name of the table to be replicated.
Sourcepub fn build(self) -> Result<GetIntegrationTablePropertiesInput, BuildError>
pub fn build(self) -> Result<GetIntegrationTablePropertiesInput, BuildError>
Consumes the builder and constructs a GetIntegrationTablePropertiesInput.
Source§impl GetIntegrationTablePropertiesInputBuilder
impl GetIntegrationTablePropertiesInputBuilder
Sourcepub async fn send_with(
self,
client: &Client,
) -> Result<GetIntegrationTablePropertiesOutput, SdkError<GetIntegrationTablePropertiesError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<GetIntegrationTablePropertiesOutput, SdkError<GetIntegrationTablePropertiesError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
Source§impl Clone for GetIntegrationTablePropertiesInputBuilder
impl Clone for GetIntegrationTablePropertiesInputBuilder
Source§fn clone(&self) -> GetIntegrationTablePropertiesInputBuilder
fn clone(&self) -> GetIntegrationTablePropertiesInputBuilder
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GetIntegrationTablePropertiesInputBuilder
impl Default for GetIntegrationTablePropertiesInputBuilder
Source§fn default() -> GetIntegrationTablePropertiesInputBuilder
fn default() -> GetIntegrationTablePropertiesInputBuilder
Source§impl PartialEq for GetIntegrationTablePropertiesInputBuilder
impl PartialEq for GetIntegrationTablePropertiesInputBuilder
Source§fn eq(&self, other: &GetIntegrationTablePropertiesInputBuilder) -> bool
fn eq(&self, other: &GetIntegrationTablePropertiesInputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetIntegrationTablePropertiesInputBuilder
Auto Trait Implementations§
impl Freeze for GetIntegrationTablePropertiesInputBuilder
impl RefUnwindSafe for GetIntegrationTablePropertiesInputBuilder
impl Send for GetIntegrationTablePropertiesInputBuilder
impl Sync for GetIntegrationTablePropertiesInputBuilder
impl Unpin for GetIntegrationTablePropertiesInputBuilder
impl UnsafeUnpin for GetIntegrationTablePropertiesInputBuilder
impl UnwindSafe for GetIntegrationTablePropertiesInputBuilder
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