aws_sdk_glue/client/
create_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 [`CreateIntegrationTableProperties`](crate::operation::create_integration_table_properties::builders::CreateIntegrationTablePropertiesFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`resource_arn(impl Into<String>)`](crate::operation::create_integration_table_properties::builders::CreateIntegrationTablePropertiesFluentBuilder::resource_arn) / [`set_resource_arn(Option<String>)`](crate::operation::create_integration_table_properties::builders::CreateIntegrationTablePropertiesFluentBuilder::set_resource_arn):<br>required: **true**<br><p>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.</p><br>
7    ///   - [`table_name(impl Into<String>)`](crate::operation::create_integration_table_properties::builders::CreateIntegrationTablePropertiesFluentBuilder::table_name) / [`set_table_name(Option<String>)`](crate::operation::create_integration_table_properties::builders::CreateIntegrationTablePropertiesFluentBuilder::set_table_name):<br>required: **true**<br><p>The name of the table to be replicated.</p><br>
8    ///   - [`source_table_config(SourceTableConfig)`](crate::operation::create_integration_table_properties::builders::CreateIntegrationTablePropertiesFluentBuilder::source_table_config) / [`set_source_table_config(Option<SourceTableConfig>)`](crate::operation::create_integration_table_properties::builders::CreateIntegrationTablePropertiesFluentBuilder::set_source_table_config):<br>required: **false**<br><p>A structure for the source table configuration. See the <code>SourceTableConfig</code> structure to see list of supported source properties.</p><br>
9    ///   - [`target_table_config(TargetTableConfig)`](crate::operation::create_integration_table_properties::builders::CreateIntegrationTablePropertiesFluentBuilder::target_table_config) / [`set_target_table_config(Option<TargetTableConfig>)`](crate::operation::create_integration_table_properties::builders::CreateIntegrationTablePropertiesFluentBuilder::set_target_table_config):<br>required: **false**<br><p>A structure for the target table configuration.</p><br>
10    /// - On success, responds with [`CreateIntegrationTablePropertiesOutput`](crate::operation::create_integration_table_properties::CreateIntegrationTablePropertiesOutput)
11    /// - On failure, responds with [`SdkError<CreateIntegrationTablePropertiesError>`](crate::operation::create_integration_table_properties::CreateIntegrationTablePropertiesError)
12    pub fn create_integration_table_properties(
13        &self,
14    ) -> crate::operation::create_integration_table_properties::builders::CreateIntegrationTablePropertiesFluentBuilder {
15        crate::operation::create_integration_table_properties::builders::CreateIntegrationTablePropertiesFluentBuilder::new(self.handle.clone())
16    }
17}