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 /// - [`resource_property_arn(Option<String>)`](crate::operation::get_integration_resource_property::GetIntegrationResourcePropertyOutput::resource_property_arn): <p>The resource ARN created through this create API. The format is something like arn:aws:glue:<region> : <account_id> :integrationresourceproperty/* </account_id> </region></p>
10 /// - [`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>
11 /// - [`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>
12 /// - On failure, responds with [`SdkError<GetIntegrationResourcePropertyError>`](crate::operation::get_integration_resource_property::GetIntegrationResourcePropertyError)
13 pub fn get_integration_resource_property(
14 &self,
15 ) -> crate::operation::get_integration_resource_property::builders::GetIntegrationResourcePropertyFluentBuilder {
16 crate::operation::get_integration_resource_property::builders::GetIntegrationResourcePropertyFluentBuilder::new(self.handle.clone())
17 }
18}