aws_sdk_glue/client/
delete_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 [`DeleteIntegrationResourceProperty`](crate::operation::delete_integration_resource_property::builders::DeleteIntegrationResourcePropertyFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`resource_arn(impl Into<String>)`](crate::operation::delete_integration_resource_property::builders::DeleteIntegrationResourcePropertyFluentBuilder::resource_arn) / [`set_resource_arn(Option<String>)`](crate::operation::delete_integration_resource_property::builders::DeleteIntegrationResourcePropertyFluentBuilder::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 [`DeleteIntegrationResourcePropertyOutput`](crate::operation::delete_integration_resource_property::DeleteIntegrationResourcePropertyOutput)
8    /// - On failure, responds with [`SdkError<DeleteIntegrationResourcePropertyError>`](crate::operation::delete_integration_resource_property::DeleteIntegrationResourcePropertyError)
9    pub fn delete_integration_resource_property(
10        &self,
11    ) -> crate::operation::delete_integration_resource_property::builders::DeleteIntegrationResourcePropertyFluentBuilder {
12        crate::operation::delete_integration_resource_property::builders::DeleteIntegrationResourcePropertyFluentBuilder::new(self.handle.clone())
13    }
14}