1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetSchemaCreationStatus`](crate::operation::get_schema_creation_status::builders::GetSchemaCreationStatusFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`api_id(impl Into<String>)`](crate::operation::get_schema_creation_status::builders::GetSchemaCreationStatusFluentBuilder::api_id) / [`set_api_id(Option<String>)`](crate::operation::get_schema_creation_status::builders::GetSchemaCreationStatusFluentBuilder::set_api_id):<br>required: **true**<br><p>The API ID.</p><br>
    /// - On success, responds with [`GetSchemaCreationStatusOutput`](crate::operation::get_schema_creation_status::GetSchemaCreationStatusOutput) with field(s):
    ///   - [`status(Option<SchemaStatus>)`](crate::operation::get_schema_creation_status::GetSchemaCreationStatusOutput::status): <p>The current state of the schema (PROCESSING, FAILED, SUCCESS, or NOT_APPLICABLE). When the schema is in the ACTIVE state, you can add data.</p>
    ///   - [`details(Option<String>)`](crate::operation::get_schema_creation_status::GetSchemaCreationStatusOutput::details): <p>Detailed information about the status of the schema creation operation.</p>
    /// - On failure, responds with [`SdkError<GetSchemaCreationStatusError>`](crate::operation::get_schema_creation_status::GetSchemaCreationStatusError)
    pub fn get_schema_creation_status(&self) -> crate::operation::get_schema_creation_status::builders::GetSchemaCreationStatusFluentBuilder {
        crate::operation::get_schema_creation_status::builders::GetSchemaCreationStatusFluentBuilder::new(self.handle.clone())
    }
}