1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeRegistry`](crate::operation::describe_registry::builders::DescribeRegistryFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`registry_name(impl Into<String>)`](crate::operation::describe_registry::builders::DescribeRegistryFluentBuilder::registry_name) / [`set_registry_name(Option<String>)`](crate::operation::describe_registry::builders::DescribeRegistryFluentBuilder::set_registry_name):<br>required: **true**<br><p>The name of the registry.</p><br>
    /// - On success, responds with [`DescribeRegistryOutput`](crate::operation::describe_registry::DescribeRegistryOutput) with field(s):
    ///   - [`description(Option<String>)`](crate::operation::describe_registry::DescribeRegistryOutput::description): <p>The description of the registry.</p>
    ///   - [`registry_arn(Option<String>)`](crate::operation::describe_registry::DescribeRegistryOutput::registry_arn): <p>The ARN of the registry.</p>
    ///   - [`registry_name(Option<String>)`](crate::operation::describe_registry::DescribeRegistryOutput::registry_name): <p>The name of the registry.</p>
    ///   - [`tags(Option<HashMap::<String, String>>)`](crate::operation::describe_registry::DescribeRegistryOutput::tags): <p>Tags associated with the registry.</p>
    /// - On failure, responds with [`SdkError<DescribeRegistryError>`](crate::operation::describe_registry::DescribeRegistryError)
    pub fn describe_registry(&self) -> crate::operation::describe_registry::builders::DescribeRegistryFluentBuilder {
        crate::operation::describe_registry::builders::DescribeRegistryFluentBuilder::new(self.handle.clone())
    }
}