1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteSchema`](crate::operation::delete_schema::builders::DeleteSchemaFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`registry_name(impl Into<String>)`](crate::operation::delete_schema::builders::DeleteSchemaFluentBuilder::registry_name) / [`set_registry_name(Option<String>)`](crate::operation::delete_schema::builders::DeleteSchemaFluentBuilder::set_registry_name):<br>required: **true**<br><p>The name of the registry.</p><br>
    ///   - [`schema_name(impl Into<String>)`](crate::operation::delete_schema::builders::DeleteSchemaFluentBuilder::schema_name) / [`set_schema_name(Option<String>)`](crate::operation::delete_schema::builders::DeleteSchemaFluentBuilder::set_schema_name):<br>required: **true**<br><p>The name of the schema.</p><br>
    /// - On success, responds with [`DeleteSchemaOutput`](crate::operation::delete_schema::DeleteSchemaOutput)
    /// - On failure, responds with [`SdkError<DeleteSchemaError>`](crate::operation::delete_schema::DeleteSchemaError)
    pub fn delete_schema(&self) -> crate::operation::delete_schema::builders::DeleteSchemaFluentBuilder {
        crate::operation::delete_schema::builders::DeleteSchemaFluentBuilder::new(self.handle.clone())
    }
}