aws_sdk_glue/client/
delete_integration_table_properties.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DeleteIntegrationTableProperties`](crate::operation::delete_integration_table_properties::builders::DeleteIntegrationTablePropertiesFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`resource_arn(impl Into<String>)`](crate::operation::delete_integration_table_properties::builders::DeleteIntegrationTablePropertiesFluentBuilder::resource_arn) / [`set_resource_arn(Option<String>)`](crate::operation::delete_integration_table_properties::builders::DeleteIntegrationTablePropertiesFluentBuilder::set_resource_arn):<br>required: **true**<br><p>The connection ARN of the source, or the database ARN of the target.</p><br>
7    ///   - [`table_name(impl Into<String>)`](crate::operation::delete_integration_table_properties::builders::DeleteIntegrationTablePropertiesFluentBuilder::table_name) / [`set_table_name(Option<String>)`](crate::operation::delete_integration_table_properties::builders::DeleteIntegrationTablePropertiesFluentBuilder::set_table_name):<br>required: **true**<br><p>The name of the table to be replicated.</p><br>
8    /// - On success, responds with [`DeleteIntegrationTablePropertiesOutput`](crate::operation::delete_integration_table_properties::DeleteIntegrationTablePropertiesOutput)
9    /// - On failure, responds with [`SdkError<DeleteIntegrationTablePropertiesError>`](crate::operation::delete_integration_table_properties::DeleteIntegrationTablePropertiesError)
10    pub fn delete_integration_table_properties(
11        &self,
12    ) -> crate::operation::delete_integration_table_properties::builders::DeleteIntegrationTablePropertiesFluentBuilder {
13        crate::operation::delete_integration_table_properties::builders::DeleteIntegrationTablePropertiesFluentBuilder::new(self.handle.clone())
14    }
15}