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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.

/// <p>Container for response returned by <code> <code>GetCompatibleElasticsearchVersions</code> </code> operation.</p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct GetCompatibleElasticsearchVersionsOutput {
    /// <p>A map of compatible Elasticsearch versions returned as part of the <code> <code>GetCompatibleElasticsearchVersions</code> </code> operation.</p>
    pub compatible_elasticsearch_versions: ::std::option::Option<::std::vec::Vec<crate::types::CompatibleVersionsMap>>,
    _request_id: Option<String>,
}
impl GetCompatibleElasticsearchVersionsOutput {
    /// <p>A map of compatible Elasticsearch versions returned as part of the <code> <code>GetCompatibleElasticsearchVersions</code> </code> operation.</p>
    ///
    /// If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use `.compatible_elasticsearch_versions.is_none()`.
    pub fn compatible_elasticsearch_versions(&self) -> &[crate::types::CompatibleVersionsMap] {
        self.compatible_elasticsearch_versions.as_deref().unwrap_or_default()
    }
}
impl ::aws_types::request_id::RequestId for GetCompatibleElasticsearchVersionsOutput {
    fn request_id(&self) -> Option<&str> {
        self._request_id.as_deref()
    }
}
impl GetCompatibleElasticsearchVersionsOutput {
    /// Creates a new builder-style object to manufacture [`GetCompatibleElasticsearchVersionsOutput`](crate::operation::get_compatible_elasticsearch_versions::GetCompatibleElasticsearchVersionsOutput).
    pub fn builder() -> crate::operation::get_compatible_elasticsearch_versions::builders::GetCompatibleElasticsearchVersionsOutputBuilder {
        crate::operation::get_compatible_elasticsearch_versions::builders::GetCompatibleElasticsearchVersionsOutputBuilder::default()
    }
}

/// A builder for [`GetCompatibleElasticsearchVersionsOutput`](crate::operation::get_compatible_elasticsearch_versions::GetCompatibleElasticsearchVersionsOutput).
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
pub struct GetCompatibleElasticsearchVersionsOutputBuilder {
    pub(crate) compatible_elasticsearch_versions: ::std::option::Option<::std::vec::Vec<crate::types::CompatibleVersionsMap>>,
    _request_id: Option<String>,
}
impl GetCompatibleElasticsearchVersionsOutputBuilder {
    /// Appends an item to `compatible_elasticsearch_versions`.
    ///
    /// To override the contents of this collection use [`set_compatible_elasticsearch_versions`](Self::set_compatible_elasticsearch_versions).
    ///
    /// <p>A map of compatible Elasticsearch versions returned as part of the <code> <code>GetCompatibleElasticsearchVersions</code> </code> operation.</p>
    pub fn compatible_elasticsearch_versions(mut self, input: crate::types::CompatibleVersionsMap) -> Self {
        let mut v = self.compatible_elasticsearch_versions.unwrap_or_default();
        v.push(input);
        self.compatible_elasticsearch_versions = ::std::option::Option::Some(v);
        self
    }
    /// <p>A map of compatible Elasticsearch versions returned as part of the <code> <code>GetCompatibleElasticsearchVersions</code> </code> operation.</p>
    pub fn set_compatible_elasticsearch_versions(
        mut self,
        input: ::std::option::Option<::std::vec::Vec<crate::types::CompatibleVersionsMap>>,
    ) -> Self {
        self.compatible_elasticsearch_versions = input;
        self
    }
    /// <p>A map of compatible Elasticsearch versions returned as part of the <code> <code>GetCompatibleElasticsearchVersions</code> </code> operation.</p>
    pub fn get_compatible_elasticsearch_versions(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::CompatibleVersionsMap>> {
        &self.compatible_elasticsearch_versions
    }
    pub(crate) fn _request_id(mut self, request_id: impl Into<String>) -> Self {
        self._request_id = Some(request_id.into());
        self
    }

    pub(crate) fn _set_request_id(&mut self, request_id: Option<String>) -> &mut Self {
        self._request_id = request_id;
        self
    }
    /// Consumes the builder and constructs a [`GetCompatibleElasticsearchVersionsOutput`](crate::operation::get_compatible_elasticsearch_versions::GetCompatibleElasticsearchVersionsOutput).
    pub fn build(self) -> crate::operation::get_compatible_elasticsearch_versions::GetCompatibleElasticsearchVersionsOutput {
        crate::operation::get_compatible_elasticsearch_versions::GetCompatibleElasticsearchVersionsOutput {
            compatible_elasticsearch_versions: self.compatible_elasticsearch_versions,
            _request_id: self._request_id,
        }
    }
}