// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateIntegrationResourceProperty`](crate::operation::update_integration_resource_property::builders::UpdateIntegrationResourcePropertyFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`resource_arn(impl Into<String>)`](crate::operation::update_integration_resource_property::builders::UpdateIntegrationResourcePropertyFluentBuilder::resource_arn) / [`set_resource_arn(Option<String>)`](crate::operation::update_integration_resource_property::builders::UpdateIntegrationResourcePropertyFluentBuilder::set_resource_arn):<br>required: **true**<br><p>The connection ARN of the source, or the database ARN of the target.</p><br>
/// - [`source_processing_properties(SourceProcessingProperties)`](crate::operation::update_integration_resource_property::builders::UpdateIntegrationResourcePropertyFluentBuilder::source_processing_properties) / [`set_source_processing_properties(Option<SourceProcessingProperties>)`](crate::operation::update_integration_resource_property::builders::UpdateIntegrationResourcePropertyFluentBuilder::set_source_processing_properties):<br>required: **false**<br><p>The resource properties associated with the integration source.</p><br>
/// - [`target_processing_properties(TargetProcessingProperties)`](crate::operation::update_integration_resource_property::builders::UpdateIntegrationResourcePropertyFluentBuilder::target_processing_properties) / [`set_target_processing_properties(Option<TargetProcessingProperties>)`](crate::operation::update_integration_resource_property::builders::UpdateIntegrationResourcePropertyFluentBuilder::set_target_processing_properties):<br>required: **false**<br><p>The resource properties associated with the integration target.</p><br>
/// - On success, responds with [`UpdateIntegrationResourcePropertyOutput`](crate::operation::update_integration_resource_property::UpdateIntegrationResourcePropertyOutput) with field(s):
/// - [`resource_arn(Option<String>)`](crate::operation::update_integration_resource_property::UpdateIntegrationResourcePropertyOutput::resource_arn): <p>The connection ARN of the source, or the database ARN of the target.</p>
/// - [`resource_property_arn(Option<String>)`](crate::operation::update_integration_resource_property::UpdateIntegrationResourcePropertyOutput::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>
/// - [`source_processing_properties(Option<SourceProcessingProperties>)`](crate::operation::update_integration_resource_property::UpdateIntegrationResourcePropertyOutput::source_processing_properties): <p>The resource properties associated with the integration source.</p>
/// - [`target_processing_properties(Option<TargetProcessingProperties>)`](crate::operation::update_integration_resource_property::UpdateIntegrationResourcePropertyOutput::target_processing_properties): <p>The resource properties associated with the integration target.</p>
/// - On failure, responds with [`SdkError<UpdateIntegrationResourcePropertyError>`](crate::operation::update_integration_resource_property::UpdateIntegrationResourcePropertyError)
pub fn update_integration_resource_property(
&self,
) -> crate::operation::update_integration_resource_property::builders::UpdateIntegrationResourcePropertyFluentBuilder {
crate::operation::update_integration_resource_property::builders::UpdateIntegrationResourcePropertyFluentBuilder::new(self.handle.clone())
}
}