1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.

/// <p>An object that contains an optional comment about your Amazon Route&nbsp;53 hosted zone.</p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct AwsRoute53HostedZoneConfigDetails {
    /// <p>Any comments that you include about the hosted zone.</p>
    pub comment: ::std::option::Option<::std::string::String>,
}
impl AwsRoute53HostedZoneConfigDetails {
    /// <p>Any comments that you include about the hosted zone.</p>
    pub fn comment(&self) -> ::std::option::Option<&str> {
        self.comment.as_deref()
    }
}
impl AwsRoute53HostedZoneConfigDetails {
    /// Creates a new builder-style object to manufacture [`AwsRoute53HostedZoneConfigDetails`](crate::types::AwsRoute53HostedZoneConfigDetails).
    pub fn builder() -> crate::types::builders::AwsRoute53HostedZoneConfigDetailsBuilder {
        crate::types::builders::AwsRoute53HostedZoneConfigDetailsBuilder::default()
    }
}

/// A builder for [`AwsRoute53HostedZoneConfigDetails`](crate::types::AwsRoute53HostedZoneConfigDetails).
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
pub struct AwsRoute53HostedZoneConfigDetailsBuilder {
    pub(crate) comment: ::std::option::Option<::std::string::String>,
}
impl AwsRoute53HostedZoneConfigDetailsBuilder {
    /// <p>Any comments that you include about the hosted zone.</p>
    pub fn comment(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.comment = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>Any comments that you include about the hosted zone.</p>
    pub fn set_comment(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.comment = input;
        self
    }
    /// <p>Any comments that you include about the hosted zone.</p>
    pub fn get_comment(&self) -> &::std::option::Option<::std::string::String> {
        &self.comment
    }
    /// Consumes the builder and constructs a [`AwsRoute53HostedZoneConfigDetails`](crate::types::AwsRoute53HostedZoneConfigDetails).
    pub fn build(self) -> crate::types::AwsRoute53HostedZoneConfigDetails {
        crate::types::AwsRoute53HostedZoneConfigDetails { comment: self.comment }
    }
}