aws_sdk_lightsail/client/update_domain_entry.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 [`UpdateDomainEntry`](crate::operation::update_domain_entry::builders::UpdateDomainEntryFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`domain_name(impl Into<String>)`](crate::operation::update_domain_entry::builders::UpdateDomainEntryFluentBuilder::domain_name) / [`set_domain_name(Option<String>)`](crate::operation::update_domain_entry::builders::UpdateDomainEntryFluentBuilder::set_domain_name):<br>required: **true**<br><p>The name of the domain recordset to update.</p><br>
7 /// - [`domain_entry(DomainEntry)`](crate::operation::update_domain_entry::builders::UpdateDomainEntryFluentBuilder::domain_entry) / [`set_domain_entry(Option<DomainEntry>)`](crate::operation::update_domain_entry::builders::UpdateDomainEntryFluentBuilder::set_domain_entry):<br>required: **true**<br><p>An array of key-value pairs containing information about the domain entry.</p><br>
8 /// - On success, responds with [`UpdateDomainEntryOutput`](crate::operation::update_domain_entry::UpdateDomainEntryOutput) with field(s):
9 /// - [`operations(Option<Vec::<Operation>>)`](crate::operation::update_domain_entry::UpdateDomainEntryOutput::operations): <p>An array of objects that describe the result of the action, such as the status of the request, the timestamp of the request, and the resources affected by the request.</p>
10 /// - On failure, responds with [`SdkError<UpdateDomainEntryError>`](crate::operation::update_domain_entry::UpdateDomainEntryError)
11 pub fn update_domain_entry(&self) -> crate::operation::update_domain_entry::builders::UpdateDomainEntryFluentBuilder {
12 crate::operation::update_domain_entry::builders::UpdateDomainEntryFluentBuilder::new(self.handle.clone())
13 }
14}