1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteIntegration`](crate::operation::delete_integration::builders::DeleteIntegrationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`domain_name(impl Into<String>)`](crate::operation::delete_integration::builders::DeleteIntegrationFluentBuilder::domain_name) / [`set_domain_name(Option<String>)`](crate::operation::delete_integration::builders::DeleteIntegrationFluentBuilder::set_domain_name):<br>required: **true**<br><p>The unique name of the domain.</p><br>
    ///   - [`uri(impl Into<String>)`](crate::operation::delete_integration::builders::DeleteIntegrationFluentBuilder::uri) / [`set_uri(Option<String>)`](crate::operation::delete_integration::builders::DeleteIntegrationFluentBuilder::set_uri):<br>required: **true**<br><p>The URI of the S3 bucket or any other type of data source.</p><br>
    /// - On success, responds with [`DeleteIntegrationOutput`](crate::operation::delete_integration::DeleteIntegrationOutput) with field(s):
    ///   - [`message(String)`](crate::operation::delete_integration::DeleteIntegrationOutput::message): <p>A message that indicates the delete request is done.</p>
    /// - On failure, responds with [`SdkError<DeleteIntegrationError>`](crate::operation::delete_integration::DeleteIntegrationError)
    pub fn delete_integration(&self) -> crate::operation::delete_integration::builders::DeleteIntegrationFluentBuilder {
        crate::operation::delete_integration::builders::DeleteIntegrationFluentBuilder::new(self.handle.clone())
    }
}