Skip to main content

aws_sdk_connect/client/
describe_extraction_definition.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 [`DescribeExtractionDefinition`](crate::operation::describe_extraction_definition::builders::DescribeExtractionDefinitionFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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>
7    ///   - [`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>
8    /// - On success, responds with [`DescribeExtractionDefinitionOutput`](crate::operation::describe_extraction_definition::DescribeExtractionDefinitionOutput) with field(s):
9    ///   - [`extraction_definition(Option<ExtractionDefinition>)`](crate::operation::describe_extraction_definition::DescribeExtractionDefinitionOutput::extraction_definition): <p>The extraction definition.</p>
10    /// - On failure, responds with [`SdkError<DescribeExtractionDefinitionError>`](crate::operation::describe_extraction_definition::DescribeExtractionDefinitionError)
11    pub fn describe_extraction_definition(
12        &self,
13    ) -> crate::operation::describe_extraction_definition::builders::DescribeExtractionDefinitionFluentBuilder {
14        crate::operation::describe_extraction_definition::builders::DescribeExtractionDefinitionFluentBuilder::new(self.handle.clone())
15    }
16}