aws_sdk_lexmodelsv2/client/
describe_test_set.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 [`DescribeTestSet`](crate::operation::describe_test_set::builders::DescribeTestSetFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`test_set_id(impl Into<String>)`](crate::operation::describe_test_set::builders::DescribeTestSetFluentBuilder::test_set_id) / [`set_test_set_id(Option<String>)`](crate::operation::describe_test_set::builders::DescribeTestSetFluentBuilder::set_test_set_id):<br>required: **true**<br><p>The test set Id for the test set request.</p><br>
7    /// - On success, responds with [`DescribeTestSetOutput`](crate::operation::describe_test_set::DescribeTestSetOutput) with field(s):
8    ///   - [`test_set_id(Option<String>)`](crate::operation::describe_test_set::DescribeTestSetOutput::test_set_id): <p>The test set Id for the test set response.</p>
9    ///   - [`test_set_name(Option<String>)`](crate::operation::describe_test_set::DescribeTestSetOutput::test_set_name): <p>The test set name of the test set.</p>
10    ///   - [`description(Option<String>)`](crate::operation::describe_test_set::DescribeTestSetOutput::description): <p>The description of the test set.</p>
11    ///   - [`modality(Option<TestSetModality>)`](crate::operation::describe_test_set::DescribeTestSetOutput::modality): <p>Indicates whether the test set is audio or text data.</p>
12    ///   - [`status(Option<TestSetStatus>)`](crate::operation::describe_test_set::DescribeTestSetOutput::status): <p>The status of the test set.</p>
13    ///   - [`role_arn(Option<String>)`](crate::operation::describe_test_set::DescribeTestSetOutput::role_arn): <p>The roleARN used for any operation in the test set to access resources in the Amazon Web Services account.</p>
14    ///   - [`num_turns(Option<i32>)`](crate::operation::describe_test_set::DescribeTestSetOutput::num_turns): <p>The total number of agent and user turn in the test set.</p>
15    ///   - [`storage_location(Option<TestSetStorageLocation>)`](crate::operation::describe_test_set::DescribeTestSetOutput::storage_location): <p>The Amazon S3 storage location for the test set data.</p>
16    ///   - [`creation_date_time(Option<DateTime>)`](crate::operation::describe_test_set::DescribeTestSetOutput::creation_date_time): <p>The creation date and time for the test set data.</p>
17    ///   - [`last_updated_date_time(Option<DateTime>)`](crate::operation::describe_test_set::DescribeTestSetOutput::last_updated_date_time): <p>The date and time for the last update of the test set data.</p>
18    /// - On failure, responds with [`SdkError<DescribeTestSetError>`](crate::operation::describe_test_set::DescribeTestSetError)
19    pub fn describe_test_set(&self) -> crate::operation::describe_test_set::builders::DescribeTestSetFluentBuilder {
20        crate::operation::describe_test_set::builders::DescribeTestSetFluentBuilder::new(self.handle.clone())
21    }
22}