aws_sdk_glue/client/
get_integration_resource_property.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 [`GetIntegrationResourceProperty`](crate::operation::get_integration_resource_property::builders::GetIntegrationResourcePropertyFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`resource_arn(impl Into<String>)`](crate::operation::get_integration_resource_property::builders::GetIntegrationResourcePropertyFluentBuilder::resource_arn) / [`set_resource_arn(Option<String>)`](crate::operation::get_integration_resource_property::builders::GetIntegrationResourcePropertyFluentBuilder::set_resource_arn):<br>required: **true**<br><p>The connection ARN of the source, or the database ARN of the target.</p><br>
7    /// - On success, responds with [`GetIntegrationResourcePropertyOutput`](crate::operation::get_integration_resource_property::GetIntegrationResourcePropertyOutput) with field(s):
8    ///   - [`resource_arn(Option<String>)`](crate::operation::get_integration_resource_property::GetIntegrationResourcePropertyOutput::resource_arn): <p>The connection ARN of the source, or the database ARN of the target.</p>
9    ///   - [`source_processing_properties(Option<SourceProcessingProperties>)`](crate::operation::get_integration_resource_property::GetIntegrationResourcePropertyOutput::source_processing_properties): <p>The resource properties associated with the integration source.</p>
10    ///   - [`target_processing_properties(Option<TargetProcessingProperties>)`](crate::operation::get_integration_resource_property::GetIntegrationResourcePropertyOutput::target_processing_properties): <p>The resource properties associated with the integration target.</p>
11    /// - On failure, responds with [`SdkError<GetIntegrationResourcePropertyError>`](crate::operation::get_integration_resource_property::GetIntegrationResourcePropertyError)
12    pub fn get_integration_resource_property(
13        &self,
14    ) -> crate::operation::get_integration_resource_property::builders::GetIntegrationResourcePropertyFluentBuilder {
15        crate::operation::get_integration_resource_property::builders::GetIntegrationResourcePropertyFluentBuilder::new(self.handle.clone())
16    }
17}