aws_sdk_appintegrations/client/delete_data_integration.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 [`DeleteDataIntegration`](crate::operation::delete_data_integration::builders::DeleteDataIntegrationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`data_integration_identifier(impl Into<String>)`](crate::operation::delete_data_integration::builders::DeleteDataIntegrationFluentBuilder::data_integration_identifier) / [`set_data_integration_identifier(Option<String>)`](crate::operation::delete_data_integration::builders::DeleteDataIntegrationFluentBuilder::set_data_integration_identifier):<br>required: **true**<br><p>A unique identifier for the DataIntegration.</p><br>
7 /// - On success, responds with [`DeleteDataIntegrationOutput`](crate::operation::delete_data_integration::DeleteDataIntegrationOutput)
8 /// - On failure, responds with [`SdkError<DeleteDataIntegrationError>`](crate::operation::delete_data_integration::DeleteDataIntegrationError)
9 pub fn delete_data_integration(&self) -> crate::operation::delete_data_integration::builders::DeleteDataIntegrationFluentBuilder {
10 crate::operation::delete_data_integration::builders::DeleteDataIntegrationFluentBuilder::new(self.handle.clone())
11 }
12}