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
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeExtractionDefinition`](crate::operation::describe_extraction_definition::builders::DescribeExtractionDefinitionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`instance_id(impl Into<String>)`](crate::operation::describe_extraction_definition::builders::DescribeExtractionDefinitionFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::describe_extraction_definition::builders::DescribeExtractionDefinitionFluentBuilder::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::describe_extraction_definition::builders::DescribeExtractionDefinitionFluentBuilder::extraction_definition_id) / [`set_extraction_definition_id(Option<String>)`](crate::operation::describe_extraction_definition::builders::DescribeExtractionDefinitionFluentBuilder::set_extraction_definition_id):<br>required: **true**<br><p>The identifier of the extraction definition to describe.</p><br>
    /// - On success, responds with [`DescribeExtractionDefinitionOutput`](crate::operation::describe_extraction_definition::DescribeExtractionDefinitionOutput) with field(s):
    ///   - [`extraction_definition(Option<ExtractionDefinition>)`](crate::operation::describe_extraction_definition::DescribeExtractionDefinitionOutput::extraction_definition): <p>The extraction definition.</p>
    /// - On failure, responds with [`SdkError<DescribeExtractionDefinitionError>`](crate::operation::describe_extraction_definition::DescribeExtractionDefinitionError)
    pub fn describe_extraction_definition(
        &self,
    ) -> crate::operation::describe_extraction_definition::builders::DescribeExtractionDefinitionFluentBuilder {
        crate::operation::describe_extraction_definition::builders::DescribeExtractionDefinitionFluentBuilder::new(self.handle.clone())
    }
}