aws_sdk_glue/client/get_registry.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 [`GetRegistry`](crate::operation::get_registry::builders::GetRegistryFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`registry_id(RegistryId)`](crate::operation::get_registry::builders::GetRegistryFluentBuilder::registry_id) / [`set_registry_id(Option<RegistryId>)`](crate::operation::get_registry::builders::GetRegistryFluentBuilder::set_registry_id):<br>required: **true**<br><p>This is a wrapper structure that may contain the registry name and Amazon Resource Name (ARN).</p><br>
7 /// - On success, responds with [`GetRegistryOutput`](crate::operation::get_registry::GetRegistryOutput) with field(s):
8 /// - [`registry_name(Option<String>)`](crate::operation::get_registry::GetRegistryOutput::registry_name): <p>The name of the registry.</p>
9 /// - [`registry_arn(Option<String>)`](crate::operation::get_registry::GetRegistryOutput::registry_arn): <p>The Amazon Resource Name (ARN) of the registry.</p>
10 /// - [`description(Option<String>)`](crate::operation::get_registry::GetRegistryOutput::description): <p>A description of the registry.</p>
11 /// - [`status(Option<RegistryStatus>)`](crate::operation::get_registry::GetRegistryOutput::status): <p>The status of the registry.</p>
12 /// - [`created_time(Option<String>)`](crate::operation::get_registry::GetRegistryOutput::created_time): <p>The date and time the registry was created.</p>
13 /// - [`updated_time(Option<String>)`](crate::operation::get_registry::GetRegistryOutput::updated_time): <p>The date and time the registry was updated.</p>
14 /// - On failure, responds with [`SdkError<GetRegistryError>`](crate::operation::get_registry::GetRegistryError)
15 pub fn get_registry(&self) -> crate::operation::get_registry::builders::GetRegistryFluentBuilder {
16 crate::operation::get_registry::builders::GetRegistryFluentBuilder::new(self.handle.clone())
17 }
18}