aws-sdk-connect 1.196.0

AWS SDK for Amazon Connect Service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteExtractionDefinition`](crate::operation::delete_extraction_definition::builders::DeleteExtractionDefinitionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`instance_id(impl Into<String>)`](crate::operation::delete_extraction_definition::builders::DeleteExtractionDefinitionFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::delete_extraction_definition::builders::DeleteExtractionDefinitionFluentBuilder::set_instance_id):<br>required: **true**<br><p>The identifier of the Connect Customer instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p><br>
    ///   - [`extraction_definition_id(impl Into<String>)`](crate::operation::delete_extraction_definition::builders::DeleteExtractionDefinitionFluentBuilder::extraction_definition_id) / [`set_extraction_definition_id(Option<String>)`](crate::operation::delete_extraction_definition::builders::DeleteExtractionDefinitionFluentBuilder::set_extraction_definition_id):<br>required: **true**<br><p>The identifier of the extraction definition to delete.</p><br>
    /// - On success, responds with [`DeleteExtractionDefinitionOutput`](crate::operation::delete_extraction_definition::DeleteExtractionDefinitionOutput)
    /// - On failure, responds with [`SdkError<DeleteExtractionDefinitionError>`](crate::operation::delete_extraction_definition::DeleteExtractionDefinitionError)
    pub fn delete_extraction_definition(&self) -> crate::operation::delete_extraction_definition::builders::DeleteExtractionDefinitionFluentBuilder {
        crate::operation::delete_extraction_definition::builders::DeleteExtractionDefinitionFluentBuilder::new(self.handle.clone())
    }
}