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
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct DescribeEnvironmentsInput {
    /// <p>The IDs of individual environments to get information about.</p>
    #[doc(hidden)]
    pub environment_ids: std::option::Option<std::vec::Vec<std::string::String>>,
}
impl DescribeEnvironmentsInput {
    /// <p>The IDs of individual environments to get information about.</p>
    pub fn environment_ids(&self) -> std::option::Option<&[std::string::String]> {
        self.environment_ids.as_deref()
    }
}
impl DescribeEnvironmentsInput {
    /// Creates a new builder-style object to manufacture [`DescribeEnvironmentsInput`](crate::operation::describe_environments::DescribeEnvironmentsInput).
    pub fn builder(
    ) -> crate::operation::describe_environments::builders::DescribeEnvironmentsInputBuilder {
        crate::operation::describe_environments::builders::DescribeEnvironmentsInputBuilder::default(
        )
    }
}

/// A builder for [`DescribeEnvironmentsInput`](crate::operation::describe_environments::DescribeEnvironmentsInput).
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct DescribeEnvironmentsInputBuilder {
    pub(crate) environment_ids: std::option::Option<std::vec::Vec<std::string::String>>,
}
impl DescribeEnvironmentsInputBuilder {
    /// Appends an item to `environment_ids`.
    ///
    /// To override the contents of this collection use [`set_environment_ids`](Self::set_environment_ids).
    ///
    /// <p>The IDs of individual environments to get information about.</p>
    pub fn environment_ids(mut self, input: impl Into<std::string::String>) -> Self {
        let mut v = self.environment_ids.unwrap_or_default();
        v.push(input.into());
        self.environment_ids = Some(v);
        self
    }
    /// <p>The IDs of individual environments to get information about.</p>
    pub fn set_environment_ids(
        mut self,
        input: std::option::Option<std::vec::Vec<std::string::String>>,
    ) -> Self {
        self.environment_ids = input;
        self
    }
    /// Consumes the builder and constructs a [`DescribeEnvironmentsInput`](crate::operation::describe_environments::DescribeEnvironmentsInput).
    pub fn build(
        self,
    ) -> Result<
        crate::operation::describe_environments::DescribeEnvironmentsInput,
        aws_smithy_http::operation::error::BuildError,
    > {
        Ok(
            crate::operation::describe_environments::DescribeEnvironmentsInput {
                environment_ids: self.environment_ids,
            },
        )
    }
}