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
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateExtractionDefinition`](crate::operation::update_extraction_definition::builders::UpdateExtractionDefinitionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`client_token(impl Into<String>)`](crate::operation::update_extraction_definition::builders::UpdateExtractionDefinitionFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::update_extraction_definition::builders::UpdateExtractionDefinitionFluentBuilder::set_client_token):<br>required: **false**<br><p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field.</p><br>
    ///   - [`extraction_definition_id(impl Into<String>)`](crate::operation::update_extraction_definition::builders::UpdateExtractionDefinitionFluentBuilder::extraction_definition_id) / [`set_extraction_definition_id(Option<String>)`](crate::operation::update_extraction_definition::builders::UpdateExtractionDefinitionFluentBuilder::set_extraction_definition_id):<br>required: **true**<br><p>The identifier of the extraction definition to update.</p><br>
    ///   - [`instance_id(impl Into<String>)`](crate::operation::update_extraction_definition::builders::UpdateExtractionDefinitionFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::update_extraction_definition::builders::UpdateExtractionDefinitionFluentBuilder::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>
    ///   - [`name(impl Into<String>)`](crate::operation::update_extraction_definition::builders::UpdateExtractionDefinitionFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_extraction_definition::builders::UpdateExtractionDefinitionFluentBuilder::set_name):<br>required: **true**<br><p>The name of the extraction definition.</p><br>
    ///   - [`extraction_configuration(ExtractionConfiguration)`](crate::operation::update_extraction_definition::builders::UpdateExtractionDefinitionFluentBuilder::extraction_configuration) / [`set_extraction_configuration(Option<ExtractionConfiguration>)`](crate::operation::update_extraction_definition::builders::UpdateExtractionDefinitionFluentBuilder::set_extraction_configuration):<br>required: **true**<br><p>The configuration that defines how data is extracted, including the prompt hint and not-found behavior.</p><br>
    ///   - [`display(ExtractionDefinitionDisplay)`](crate::operation::update_extraction_definition::builders::UpdateExtractionDefinitionFluentBuilder::display) / [`set_display(Option<ExtractionDefinitionDisplay>)`](crate::operation::update_extraction_definition::builders::UpdateExtractionDefinitionFluentBuilder::set_display):<br>required: **false**<br><p>The display settings for the extraction definition.</p><br>
    /// - On success, responds with [`UpdateExtractionDefinitionOutput`](crate::operation::update_extraction_definition::UpdateExtractionDefinitionOutput)
    /// - On failure, responds with [`SdkError<UpdateExtractionDefinitionError>`](crate::operation::update_extraction_definition::UpdateExtractionDefinitionError)
    pub fn update_extraction_definition(&self) -> crate::operation::update_extraction_definition::builders::UpdateExtractionDefinitionFluentBuilder {
        crate::operation::update_extraction_definition::builders::UpdateExtractionDefinitionFluentBuilder::new(self.handle.clone())
    }
}