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
79
// 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 DescribeAppsInput {
/// <p>The app stack ID. If you use this parameter, <code>DescribeApps</code> returns a description of the apps in the specified stack.</p>
#[doc(hidden)]
pub stack_id: std::option::Option<std::string::String>,
/// <p>An array of app IDs for the apps to be described. If you use this parameter, <code>DescribeApps</code> returns a description of the specified apps. Otherwise, it returns a description of every app.</p>
#[doc(hidden)]
pub app_ids: std::option::Option<std::vec::Vec<std::string::String>>,
}
impl DescribeAppsInput {
/// <p>The app stack ID. If you use this parameter, <code>DescribeApps</code> returns a description of the apps in the specified stack.</p>
pub fn stack_id(&self) -> std::option::Option<&str> {
self.stack_id.as_deref()
}
/// <p>An array of app IDs for the apps to be described. If you use this parameter, <code>DescribeApps</code> returns a description of the specified apps. Otherwise, it returns a description of every app.</p>
pub fn app_ids(&self) -> std::option::Option<&[std::string::String]> {
self.app_ids.as_deref()
}
}
impl DescribeAppsInput {
/// Creates a new builder-style object to manufacture [`DescribeAppsInput`](crate::operation::describe_apps::DescribeAppsInput).
pub fn builder() -> crate::operation::describe_apps::builders::DescribeAppsInputBuilder {
crate::operation::describe_apps::builders::DescribeAppsInputBuilder::default()
}
}
/// A builder for [`DescribeAppsInput`](crate::operation::describe_apps::DescribeAppsInput).
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct DescribeAppsInputBuilder {
pub(crate) stack_id: std::option::Option<std::string::String>,
pub(crate) app_ids: std::option::Option<std::vec::Vec<std::string::String>>,
}
impl DescribeAppsInputBuilder {
/// <p>The app stack ID. If you use this parameter, <code>DescribeApps</code> returns a description of the apps in the specified stack.</p>
pub fn stack_id(mut self, input: impl Into<std::string::String>) -> Self {
self.stack_id = Some(input.into());
self
}
/// <p>The app stack ID. If you use this parameter, <code>DescribeApps</code> returns a description of the apps in the specified stack.</p>
pub fn set_stack_id(mut self, input: std::option::Option<std::string::String>) -> Self {
self.stack_id = input;
self
}
/// Appends an item to `app_ids`.
///
/// To override the contents of this collection use [`set_app_ids`](Self::set_app_ids).
///
/// <p>An array of app IDs for the apps to be described. If you use this parameter, <code>DescribeApps</code> returns a description of the specified apps. Otherwise, it returns a description of every app.</p>
pub fn app_ids(mut self, input: impl Into<std::string::String>) -> Self {
let mut v = self.app_ids.unwrap_or_default();
v.push(input.into());
self.app_ids = Some(v);
self
}
/// <p>An array of app IDs for the apps to be described. If you use this parameter, <code>DescribeApps</code> returns a description of the specified apps. Otherwise, it returns a description of every app.</p>
pub fn set_app_ids(
mut self,
input: std::option::Option<std::vec::Vec<std::string::String>>,
) -> Self {
self.app_ids = input;
self
}
/// Consumes the builder and constructs a [`DescribeAppsInput`](crate::operation::describe_apps::DescribeAppsInput).
pub fn build(
self,
) -> Result<
crate::operation::describe_apps::DescribeAppsInput,
aws_smithy_http::operation::error::BuildError,
> {
Ok(crate::operation::describe_apps::DescribeAppsInput {
stack_id: self.stack_id,
app_ids: self.app_ids,
})
}
}