aws_sdk_rds/client/
delete_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 [`DeleteIntegration`](crate::operation::delete_integration::builders::DeleteIntegrationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`integration_identifier(impl Into<String>)`](crate::operation::delete_integration::builders::DeleteIntegrationFluentBuilder::integration_identifier) / [`set_integration_identifier(Option<String>)`](crate::operation::delete_integration::builders::DeleteIntegrationFluentBuilder::set_integration_identifier):<br>required: **true**<br><p>The unique identifier of the integration.</p><br>
7    /// - On success, responds with [`DeleteIntegrationOutput`](crate::operation::delete_integration::DeleteIntegrationOutput) with field(s):
8    ///   - [`source_arn(Option<String>)`](crate::operation::delete_integration::DeleteIntegrationOutput::source_arn): <p>The Amazon Resource Name (ARN) of the database used as the source for replication.</p>
9    ///   - [`target_arn(Option<String>)`](crate::operation::delete_integration::DeleteIntegrationOutput::target_arn): <p>The ARN of the Redshift data warehouse used as the target for replication.</p>
10    ///   - [`integration_name(Option<String>)`](crate::operation::delete_integration::DeleteIntegrationOutput::integration_name): <p>The name of the integration.</p>
11    ///   - [`integration_arn(Option<String>)`](crate::operation::delete_integration::DeleteIntegrationOutput::integration_arn): <p>The ARN of the integration.</p>
12    ///   - [`kms_key_id(Option<String>)`](crate::operation::delete_integration::DeleteIntegrationOutput::kms_key_id): <p>The Amazon Web Services Key Management System (Amazon Web Services KMS) key identifier for the key used to to encrypt the integration.</p>
13    ///   - [`additional_encryption_context(Option<HashMap::<String, String>>)`](crate::operation::delete_integration::DeleteIntegrationOutput::additional_encryption_context): <p>The encryption context for the integration. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context">Encryption context</a> in the <i>Amazon Web Services Key Management Service Developer Guide</i>.</p>
14    ///   - [`status(Option<IntegrationStatus>)`](crate::operation::delete_integration::DeleteIntegrationOutput::status): <p>The current status of the integration.</p>
15    ///   - [`tags(Option<Vec::<Tag>>)`](crate::operation::delete_integration::DeleteIntegrationOutput::tags): <p>A list of tags.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.</p>
16    ///   - [`create_time(Option<DateTime>)`](crate::operation::delete_integration::DeleteIntegrationOutput::create_time): <p>The time when the integration was created, in Universal Coordinated Time (UTC).</p>
17    ///   - [`errors(Option<Vec::<IntegrationError>>)`](crate::operation::delete_integration::DeleteIntegrationOutput::errors): <p>Any errors associated with the integration.</p>
18    ///   - [`data_filter(Option<String>)`](crate::operation::delete_integration::DeleteIntegrationOutput::data_filter): <p>Data filters for the integration. These filters determine which tables from the source database are sent to the target Amazon Redshift data warehouse.</p>
19    ///   - [`description(Option<String>)`](crate::operation::delete_integration::DeleteIntegrationOutput::description): <p>A description of the integration.</p>
20    /// - On failure, responds with [`SdkError<DeleteIntegrationError>`](crate::operation::delete_integration::DeleteIntegrationError)
21    pub fn delete_integration(&self) -> crate::operation::delete_integration::builders::DeleteIntegrationFluentBuilder {
22        crate::operation::delete_integration::builders::DeleteIntegrationFluentBuilder::new(self.handle.clone())
23    }
24}