1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateSite`](crate::operation::update_site::builders::UpdateSiteFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`id(impl ::std::convert::Into<String>)`](crate::operation::update_site::builders::UpdateSiteFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::update_site::builders::UpdateSiteFluentBuilder::set_id): Site ARN.
    ///   - [`name(impl ::std::convert::Into<String>)`](crate::operation::update_site::builders::UpdateSiteFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_site::builders::UpdateSiteFluentBuilder::set_name): Human friendly name of the resource.
    ///   - [`country_code(impl ::std::convert::Into<String>)`](crate::operation::update_site::builders::UpdateSiteFluentBuilder::country_code) / [`set_country_code(Option<String>)`](crate::operation::update_site::builders::UpdateSiteFluentBuilder::set_country_code): A valid ISO 3166-1 alpha-2 code for the country in which the site resides. e.g., US.
    ///   - [`description(impl ::std::convert::Into<String>)`](crate::operation::update_site::builders::UpdateSiteFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_site::builders::UpdateSiteFluentBuilder::set_description): A high-level description of the site.
    /// - On success, responds with [`UpdateSiteOutput`](crate::operation::update_site::UpdateSiteOutput) with field(s):
    ///   - [`arn(Option<String>)`](crate::operation::update_site::UpdateSiteOutput::arn): Site ARN.
    ///   - [`id(Option<String>)`](crate::operation::update_site::UpdateSiteOutput::id): Filters access by the site's identifier
    ///   - [`name(Option<String>)`](crate::operation::update_site::UpdateSiteOutput::name): Human friendly name of the resource.
    ///   - [`country_code(Option<String>)`](crate::operation::update_site::UpdateSiteOutput::country_code): A valid ISO 3166-1 alpha-2 code for the country in which the site resides. e.g., US.
    ///   - [`description(Option<String>)`](crate::operation::update_site::UpdateSiteOutput::description): A high-level description of the site.
    ///   - [`updated_at(Option<DateTime>)`](crate::operation::update_site::UpdateSiteOutput::updated_at): Timestamp at which the resource was last updated.
    /// - On failure, responds with [`SdkError<UpdateSiteError>`](crate::operation::update_site::UpdateSiteError)
    pub fn update_site(&self) -> crate::operation::update_site::builders::UpdateSiteFluentBuilder {
        crate::operation::update_site::builders::UpdateSiteFluentBuilder::new(self.handle.clone())
    }
}