aws_sdk_redshift/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_arn(impl Into<String>)`](crate::operation::delete_integration::builders::DeleteIntegrationFluentBuilder::integration_arn) / [`set_integration_arn(Option<String>)`](crate::operation::delete_integration::builders::DeleteIntegrationFluentBuilder::set_integration_arn):<br>required: **true**<br><p>The unique identifier of the integration to delete.</p><br>
7 /// - On success, responds with [`DeleteIntegrationOutput`](crate::operation::delete_integration::DeleteIntegrationOutput) with field(s):
8 /// - [`integration_arn(Option<String>)`](crate::operation::delete_integration::DeleteIntegrationOutput::integration_arn): <p>The Amazon Resource Name (ARN) of the integration.</p>
9 /// - [`integration_name(Option<String>)`](crate::operation::delete_integration::DeleteIntegrationOutput::integration_name): <p>The name of the integration.</p>
10 /// - [`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>
11 /// - [`target_arn(Option<String>)`](crate::operation::delete_integration::DeleteIntegrationOutput::target_arn): <p>The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.</p>
12 /// - [`status(Option<ZeroEtlIntegrationStatus>)`](crate::operation::delete_integration::DeleteIntegrationOutput::status): <p>The current status of the integration.</p>
13 /// - [`errors(Option<Vec::<IntegrationError>>)`](crate::operation::delete_integration::DeleteIntegrationOutput::errors): <p>Any errors associated with the integration.</p>
14 /// - [`create_time(Option<DateTime>)`](crate::operation::delete_integration::DeleteIntegrationOutput::create_time): <p>The time (UTC) when the integration was created.</p>
15 /// - [`description(Option<String>)`](crate::operation::delete_integration::DeleteIntegrationOutput::description): <p>The description of the integration.</p>
16 /// - [`kms_key_id(Option<String>)`](crate::operation::delete_integration::DeleteIntegrationOutput::kms_key_id): <p>The Key Management Service (KMS) key identifier for the key used to encrypt the integration.</p>
17 /// - [`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>
18 /// - [`tags(Option<Vec::<Tag>>)`](crate::operation::delete_integration::DeleteIntegrationOutput::tags): <p>The list of tags associated with the integration.</p>
19 /// - On failure, responds with [`SdkError<DeleteIntegrationError>`](crate::operation::delete_integration::DeleteIntegrationError)
20 pub fn delete_integration(&self) -> crate::operation::delete_integration::builders::DeleteIntegrationFluentBuilder {
21 crate::operation::delete_integration::builders::DeleteIntegrationFluentBuilder::new(self.handle.clone())
22 }
23}