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 [`DescribeSchema`](crate::operation::describe_schema::builders::DescribeSchemaFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`schema_arn(impl Into<String>)`](crate::operation::describe_schema::builders::DescribeSchemaFluentBuilder::schema_arn) / [`set_schema_arn(Option<String>)`](crate::operation::describe_schema::builders::DescribeSchemaFluentBuilder::set_schema_arn): <p>The Amazon Resource Name (ARN) of the schema to retrieve.</p>
    /// - On success, responds with [`DescribeSchemaOutput`](crate::operation::describe_schema::DescribeSchemaOutput) with field(s):
    ///   - [`schema(Option<DatasetSchema>)`](crate::operation::describe_schema::DescribeSchemaOutput::schema): <p>The requested schema.</p>
    /// - On failure, responds with [`SdkError<DescribeSchemaError>`](crate::operation::describe_schema::DescribeSchemaError)
    pub fn describe_schema(
        &self,
    ) -> crate::operation::describe_schema::builders::DescribeSchemaFluentBuilder {
        crate::operation::describe_schema::builders::DescribeSchemaFluentBuilder::new(
            self.handle.clone(),
        )
    }
}