aws_sdk_schemas/client/update_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 [`UpdateRegistry`](crate::operation::update_registry::builders::UpdateRegistryFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`description(impl Into<String>)`](crate::operation::update_registry::builders::UpdateRegistryFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_registry::builders::UpdateRegistryFluentBuilder::set_description):<br>required: **false**<br><p>The description of the registry to update.</p><br>
7 /// - [`registry_name(impl Into<String>)`](crate::operation::update_registry::builders::UpdateRegistryFluentBuilder::registry_name) / [`set_registry_name(Option<String>)`](crate::operation::update_registry::builders::UpdateRegistryFluentBuilder::set_registry_name):<br>required: **true**<br><p>The name of the registry.</p><br>
8 /// - On success, responds with [`UpdateRegistryOutput`](crate::operation::update_registry::UpdateRegistryOutput) with field(s):
9 /// - [`description(Option<String>)`](crate::operation::update_registry::UpdateRegistryOutput::description): <p>The description of the registry.</p>
10 /// - [`registry_arn(Option<String>)`](crate::operation::update_registry::UpdateRegistryOutput::registry_arn): <p>The ARN of the registry.</p>
11 /// - [`registry_name(Option<String>)`](crate::operation::update_registry::UpdateRegistryOutput::registry_name): <p>The name of the registry.</p>
12 /// - [`tags(Option<HashMap::<String, String>>)`](crate::operation::update_registry::UpdateRegistryOutput::tags): <p>Tags associated with the registry.</p>
13 /// - On failure, responds with [`SdkError<UpdateRegistryError>`](crate::operation::update_registry::UpdateRegistryError)
14 pub fn update_registry(&self) -> crate::operation::update_registry::builders::UpdateRegistryFluentBuilder {
15 crate::operation::update_registry::builders::UpdateRegistryFluentBuilder::new(self.handle.clone())
16 }
17}