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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.

/// <p>Describes a standalone resource or similarly grouped resources that the application is made up of.</p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct ApplicationComponent {
    /// <p>The name of the component.</p>
    pub component_name: ::std::option::Option<::std::string::String>,
    /// <p>If logging is supported for the resource type, indicates whether the component has configured logs to be monitored.</p>
    pub component_remarks: ::std::option::Option<::std::string::String>,
    /// <p>The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, Application ELB, and SQS Queue.</p>
    pub resource_type: ::std::option::Option<::std::string::String>,
    /// <p>The operating system of the component.</p>
    pub os_type: ::std::option::Option<crate::types::OsType>,
    /// <p>The stack tier of the application component.</p>
    pub tier: ::std::option::Option<crate::types::Tier>,
    /// <p>Indicates whether the application component is monitored.</p>
    pub monitor: ::std::option::Option<bool>,
    /// <p>Workloads detected in the application component.</p>
    pub detected_workload: ::std::option::Option<
        ::std::collections::HashMap<crate::types::Tier, ::std::collections::HashMap<::std::string::String, ::std::string::String>>,
    >,
}
impl ApplicationComponent {
    /// <p>The name of the component.</p>
    pub fn component_name(&self) -> ::std::option::Option<&str> {
        self.component_name.as_deref()
    }
    /// <p>If logging is supported for the resource type, indicates whether the component has configured logs to be monitored.</p>
    pub fn component_remarks(&self) -> ::std::option::Option<&str> {
        self.component_remarks.as_deref()
    }
    /// <p>The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, Application ELB, and SQS Queue.</p>
    pub fn resource_type(&self) -> ::std::option::Option<&str> {
        self.resource_type.as_deref()
    }
    /// <p>The operating system of the component.</p>
    pub fn os_type(&self) -> ::std::option::Option<&crate::types::OsType> {
        self.os_type.as_ref()
    }
    /// <p>The stack tier of the application component.</p>
    pub fn tier(&self) -> ::std::option::Option<&crate::types::Tier> {
        self.tier.as_ref()
    }
    /// <p>Indicates whether the application component is monitored.</p>
    pub fn monitor(&self) -> ::std::option::Option<bool> {
        self.monitor
    }
    /// <p>Workloads detected in the application component.</p>
    pub fn detected_workload(
        &self,
    ) -> ::std::option::Option<
        &::std::collections::HashMap<crate::types::Tier, ::std::collections::HashMap<::std::string::String, ::std::string::String>>,
    > {
        self.detected_workload.as_ref()
    }
}
impl ApplicationComponent {
    /// Creates a new builder-style object to manufacture [`ApplicationComponent`](crate::types::ApplicationComponent).
    pub fn builder() -> crate::types::builders::ApplicationComponentBuilder {
        crate::types::builders::ApplicationComponentBuilder::default()
    }
}

/// A builder for [`ApplicationComponent`](crate::types::ApplicationComponent).
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
pub struct ApplicationComponentBuilder {
    pub(crate) component_name: ::std::option::Option<::std::string::String>,
    pub(crate) component_remarks: ::std::option::Option<::std::string::String>,
    pub(crate) resource_type: ::std::option::Option<::std::string::String>,
    pub(crate) os_type: ::std::option::Option<crate::types::OsType>,
    pub(crate) tier: ::std::option::Option<crate::types::Tier>,
    pub(crate) monitor: ::std::option::Option<bool>,
    pub(crate) detected_workload: ::std::option::Option<
        ::std::collections::HashMap<crate::types::Tier, ::std::collections::HashMap<::std::string::String, ::std::string::String>>,
    >,
}
impl ApplicationComponentBuilder {
    /// <p>The name of the component.</p>
    pub fn component_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.component_name = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The name of the component.</p>
    pub fn set_component_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.component_name = input;
        self
    }
    /// <p>The name of the component.</p>
    pub fn get_component_name(&self) -> &::std::option::Option<::std::string::String> {
        &self.component_name
    }
    /// <p>If logging is supported for the resource type, indicates whether the component has configured logs to be monitored.</p>
    pub fn component_remarks(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.component_remarks = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>If logging is supported for the resource type, indicates whether the component has configured logs to be monitored.</p>
    pub fn set_component_remarks(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.component_remarks = input;
        self
    }
    /// <p>If logging is supported for the resource type, indicates whether the component has configured logs to be monitored.</p>
    pub fn get_component_remarks(&self) -> &::std::option::Option<::std::string::String> {
        &self.component_remarks
    }
    /// <p>The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, Application ELB, and SQS Queue.</p>
    pub fn resource_type(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.resource_type = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, Application ELB, and SQS Queue.</p>
    pub fn set_resource_type(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.resource_type = input;
        self
    }
    /// <p>The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, Application ELB, and SQS Queue.</p>
    pub fn get_resource_type(&self) -> &::std::option::Option<::std::string::String> {
        &self.resource_type
    }
    /// <p>The operating system of the component.</p>
    pub fn os_type(mut self, input: crate::types::OsType) -> Self {
        self.os_type = ::std::option::Option::Some(input);
        self
    }
    /// <p>The operating system of the component.</p>
    pub fn set_os_type(mut self, input: ::std::option::Option<crate::types::OsType>) -> Self {
        self.os_type = input;
        self
    }
    /// <p>The operating system of the component.</p>
    pub fn get_os_type(&self) -> &::std::option::Option<crate::types::OsType> {
        &self.os_type
    }
    /// <p>The stack tier of the application component.</p>
    pub fn tier(mut self, input: crate::types::Tier) -> Self {
        self.tier = ::std::option::Option::Some(input);
        self
    }
    /// <p>The stack tier of the application component.</p>
    pub fn set_tier(mut self, input: ::std::option::Option<crate::types::Tier>) -> Self {
        self.tier = input;
        self
    }
    /// <p>The stack tier of the application component.</p>
    pub fn get_tier(&self) -> &::std::option::Option<crate::types::Tier> {
        &self.tier
    }
    /// <p>Indicates whether the application component is monitored.</p>
    pub fn monitor(mut self, input: bool) -> Self {
        self.monitor = ::std::option::Option::Some(input);
        self
    }
    /// <p>Indicates whether the application component is monitored.</p>
    pub fn set_monitor(mut self, input: ::std::option::Option<bool>) -> Self {
        self.monitor = input;
        self
    }
    /// <p>Indicates whether the application component is monitored.</p>
    pub fn get_monitor(&self) -> &::std::option::Option<bool> {
        &self.monitor
    }
    /// Adds a key-value pair to `detected_workload`.
    ///
    /// To override the contents of this collection use [`set_detected_workload`](Self::set_detected_workload).
    ///
    /// <p>Workloads detected in the application component.</p>
    pub fn detected_workload(mut self, k: crate::types::Tier, v: ::std::collections::HashMap<::std::string::String, ::std::string::String>) -> Self {
        let mut hash_map = self.detected_workload.unwrap_or_default();
        hash_map.insert(k, v);
        self.detected_workload = ::std::option::Option::Some(hash_map);
        self
    }
    /// <p>Workloads detected in the application component.</p>
    pub fn set_detected_workload(
        mut self,
        input: ::std::option::Option<
            ::std::collections::HashMap<crate::types::Tier, ::std::collections::HashMap<::std::string::String, ::std::string::String>>,
        >,
    ) -> Self {
        self.detected_workload = input;
        self
    }
    /// <p>Workloads detected in the application component.</p>
    pub fn get_detected_workload(
        &self,
    ) -> &::std::option::Option<
        ::std::collections::HashMap<crate::types::Tier, ::std::collections::HashMap<::std::string::String, ::std::string::String>>,
    > {
        &self.detected_workload
    }
    /// Consumes the builder and constructs a [`ApplicationComponent`](crate::types::ApplicationComponent).
    pub fn build(self) -> crate::types::ApplicationComponent {
        crate::types::ApplicationComponent {
            component_name: self.component_name,
            component_remarks: self.component_remarks,
            resource_type: self.resource_type,
            os_type: self.os_type,
            tier: self.tier,
            monitor: self.monitor,
            detected_workload: self.detected_workload,
        }
    }
}