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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.

/// <p>Details about a resource in a generated template</p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct ResourceDetail {
    /// <p>The type of the resource, such as <code>AWS::DynamoDB::Table</code>. For the list of supported resources, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import-supported-resources.html">IaC generator supported resource types</a> In the <i>CloudFormation User Guide</i></p>
    pub resource_type: ::std::option::Option<::std::string::String>,
    /// <p>The logical id for this resource in the final generated template.</p>
    pub logical_resource_id: ::std::option::Option<::std::string::String>,
    /// <p>A list of up to 256 key-value pairs that identifies the resource in the generated template. The key is the name of one of the primary identifiers for the resource. (Primary identifiers are specified in the <code>primaryIdentifier</code> list in the resource schema.) The value is the value of that primary identifier. For example, for a <code>AWS::DynamoDB::Table</code> resource, the primary identifiers is <code>TableName</code> so the key-value pair could be <code>"TableName": "MyDDBTable"</code>. For more information, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-schema.html#schema-properties-primaryidentifier">primaryIdentifier</a> in the <i>CloudFormation Command Line Interface User guide for extension development</i>.</p>
    pub resource_identifier: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
    /// <p>Status of the processing of a resource in a generated template.</p>
    /// <dl>
    /// <dt>
    /// InProgress
    /// </dt>
    /// <dd>
    /// <p>The resource processing is still in progress.</p>
    /// </dd>
    /// <dt>
    /// Complete
    /// </dt>
    /// <dd>
    /// <p>The resource processing is complete.</p>
    /// </dd>
    /// <dt>
    /// Pending
    /// </dt>
    /// <dd>
    /// <p>The resource processing is pending.</p>
    /// </dd>
    /// <dt>
    /// Failed
    /// </dt>
    /// <dd>
    /// <p>The resource processing has failed.</p>
    /// </dd>
    /// </dl>
    pub resource_status: ::std::option::Option<crate::types::GeneratedTemplateResourceStatus>,
    /// <p>The reason for the resource detail, providing more information if a failure happened.</p>
    pub resource_status_reason: ::std::option::Option<::std::string::String>,
    /// <p>The warnings generated for this resource.</p>
    pub warnings: ::std::option::Option<::std::vec::Vec<crate::types::WarningDetail>>,
}
impl ResourceDetail {
    /// <p>The type of the resource, such as <code>AWS::DynamoDB::Table</code>. For the list of supported resources, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import-supported-resources.html">IaC generator supported resource types</a> In the <i>CloudFormation User Guide</i></p>
    pub fn resource_type(&self) -> ::std::option::Option<&str> {
        self.resource_type.as_deref()
    }
    /// <p>The logical id for this resource in the final generated template.</p>
    pub fn logical_resource_id(&self) -> ::std::option::Option<&str> {
        self.logical_resource_id.as_deref()
    }
    /// <p>A list of up to 256 key-value pairs that identifies the resource in the generated template. The key is the name of one of the primary identifiers for the resource. (Primary identifiers are specified in the <code>primaryIdentifier</code> list in the resource schema.) The value is the value of that primary identifier. For example, for a <code>AWS::DynamoDB::Table</code> resource, the primary identifiers is <code>TableName</code> so the key-value pair could be <code>"TableName": "MyDDBTable"</code>. For more information, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-schema.html#schema-properties-primaryidentifier">primaryIdentifier</a> in the <i>CloudFormation Command Line Interface User guide for extension development</i>.</p>
    pub fn resource_identifier(&self) -> ::std::option::Option<&::std::collections::HashMap<::std::string::String, ::std::string::String>> {
        self.resource_identifier.as_ref()
    }
    /// <p>Status of the processing of a resource in a generated template.</p>
    /// <dl>
    /// <dt>
    /// InProgress
    /// </dt>
    /// <dd>
    /// <p>The resource processing is still in progress.</p>
    /// </dd>
    /// <dt>
    /// Complete
    /// </dt>
    /// <dd>
    /// <p>The resource processing is complete.</p>
    /// </dd>
    /// <dt>
    /// Pending
    /// </dt>
    /// <dd>
    /// <p>The resource processing is pending.</p>
    /// </dd>
    /// <dt>
    /// Failed
    /// </dt>
    /// <dd>
    /// <p>The resource processing has failed.</p>
    /// </dd>
    /// </dl>
    pub fn resource_status(&self) -> ::std::option::Option<&crate::types::GeneratedTemplateResourceStatus> {
        self.resource_status.as_ref()
    }
    /// <p>The reason for the resource detail, providing more information if a failure happened.</p>
    pub fn resource_status_reason(&self) -> ::std::option::Option<&str> {
        self.resource_status_reason.as_deref()
    }
    /// <p>The warnings generated for this resource.</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 `.warnings.is_none()`.
    pub fn warnings(&self) -> &[crate::types::WarningDetail] {
        self.warnings.as_deref().unwrap_or_default()
    }
}
impl ResourceDetail {
    /// Creates a new builder-style object to manufacture [`ResourceDetail`](crate::types::ResourceDetail).
    pub fn builder() -> crate::types::builders::ResourceDetailBuilder {
        crate::types::builders::ResourceDetailBuilder::default()
    }
}

/// A builder for [`ResourceDetail`](crate::types::ResourceDetail).
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
pub struct ResourceDetailBuilder {
    pub(crate) resource_type: ::std::option::Option<::std::string::String>,
    pub(crate) logical_resource_id: ::std::option::Option<::std::string::String>,
    pub(crate) resource_identifier: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
    pub(crate) resource_status: ::std::option::Option<crate::types::GeneratedTemplateResourceStatus>,
    pub(crate) resource_status_reason: ::std::option::Option<::std::string::String>,
    pub(crate) warnings: ::std::option::Option<::std::vec::Vec<crate::types::WarningDetail>>,
}
impl ResourceDetailBuilder {
    /// <p>The type of the resource, such as <code>AWS::DynamoDB::Table</code>. For the list of supported resources, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import-supported-resources.html">IaC generator supported resource types</a> In the <i>CloudFormation User Guide</i></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 type of the resource, such as <code>AWS::DynamoDB::Table</code>. For the list of supported resources, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import-supported-resources.html">IaC generator supported resource types</a> In the <i>CloudFormation User Guide</i></p>
    pub fn set_resource_type(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.resource_type = input;
        self
    }
    /// <p>The type of the resource, such as <code>AWS::DynamoDB::Table</code>. For the list of supported resources, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import-supported-resources.html">IaC generator supported resource types</a> In the <i>CloudFormation User Guide</i></p>
    pub fn get_resource_type(&self) -> &::std::option::Option<::std::string::String> {
        &self.resource_type
    }
    /// <p>The logical id for this resource in the final generated template.</p>
    pub fn logical_resource_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.logical_resource_id = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The logical id for this resource in the final generated template.</p>
    pub fn set_logical_resource_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.logical_resource_id = input;
        self
    }
    /// <p>The logical id for this resource in the final generated template.</p>
    pub fn get_logical_resource_id(&self) -> &::std::option::Option<::std::string::String> {
        &self.logical_resource_id
    }
    /// Adds a key-value pair to `resource_identifier`.
    ///
    /// To override the contents of this collection use [`set_resource_identifier`](Self::set_resource_identifier).
    ///
    /// <p>A list of up to 256 key-value pairs that identifies the resource in the generated template. The key is the name of one of the primary identifiers for the resource. (Primary identifiers are specified in the <code>primaryIdentifier</code> list in the resource schema.) The value is the value of that primary identifier. For example, for a <code>AWS::DynamoDB::Table</code> resource, the primary identifiers is <code>TableName</code> so the key-value pair could be <code>"TableName": "MyDDBTable"</code>. For more information, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-schema.html#schema-properties-primaryidentifier">primaryIdentifier</a> in the <i>CloudFormation Command Line Interface User guide for extension development</i>.</p>
    pub fn resource_identifier(
        mut self,
        k: impl ::std::convert::Into<::std::string::String>,
        v: impl ::std::convert::Into<::std::string::String>,
    ) -> Self {
        let mut hash_map = self.resource_identifier.unwrap_or_default();
        hash_map.insert(k.into(), v.into());
        self.resource_identifier = ::std::option::Option::Some(hash_map);
        self
    }
    /// <p>A list of up to 256 key-value pairs that identifies the resource in the generated template. The key is the name of one of the primary identifiers for the resource. (Primary identifiers are specified in the <code>primaryIdentifier</code> list in the resource schema.) The value is the value of that primary identifier. For example, for a <code>AWS::DynamoDB::Table</code> resource, the primary identifiers is <code>TableName</code> so the key-value pair could be <code>"TableName": "MyDDBTable"</code>. For more information, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-schema.html#schema-properties-primaryidentifier">primaryIdentifier</a> in the <i>CloudFormation Command Line Interface User guide for extension development</i>.</p>
    pub fn set_resource_identifier(
        mut self,
        input: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
    ) -> Self {
        self.resource_identifier = input;
        self
    }
    /// <p>A list of up to 256 key-value pairs that identifies the resource in the generated template. The key is the name of one of the primary identifiers for the resource. (Primary identifiers are specified in the <code>primaryIdentifier</code> list in the resource schema.) The value is the value of that primary identifier. For example, for a <code>AWS::DynamoDB::Table</code> resource, the primary identifiers is <code>TableName</code> so the key-value pair could be <code>"TableName": "MyDDBTable"</code>. For more information, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-schema.html#schema-properties-primaryidentifier">primaryIdentifier</a> in the <i>CloudFormation Command Line Interface User guide for extension development</i>.</p>
    pub fn get_resource_identifier(&self) -> &::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>> {
        &self.resource_identifier
    }
    /// <p>Status of the processing of a resource in a generated template.</p>
    /// <dl>
    /// <dt>
    /// InProgress
    /// </dt>
    /// <dd>
    /// <p>The resource processing is still in progress.</p>
    /// </dd>
    /// <dt>
    /// Complete
    /// </dt>
    /// <dd>
    /// <p>The resource processing is complete.</p>
    /// </dd>
    /// <dt>
    /// Pending
    /// </dt>
    /// <dd>
    /// <p>The resource processing is pending.</p>
    /// </dd>
    /// <dt>
    /// Failed
    /// </dt>
    /// <dd>
    /// <p>The resource processing has failed.</p>
    /// </dd>
    /// </dl>
    pub fn resource_status(mut self, input: crate::types::GeneratedTemplateResourceStatus) -> Self {
        self.resource_status = ::std::option::Option::Some(input);
        self
    }
    /// <p>Status of the processing of a resource in a generated template.</p>
    /// <dl>
    /// <dt>
    /// InProgress
    /// </dt>
    /// <dd>
    /// <p>The resource processing is still in progress.</p>
    /// </dd>
    /// <dt>
    /// Complete
    /// </dt>
    /// <dd>
    /// <p>The resource processing is complete.</p>
    /// </dd>
    /// <dt>
    /// Pending
    /// </dt>
    /// <dd>
    /// <p>The resource processing is pending.</p>
    /// </dd>
    /// <dt>
    /// Failed
    /// </dt>
    /// <dd>
    /// <p>The resource processing has failed.</p>
    /// </dd>
    /// </dl>
    pub fn set_resource_status(mut self, input: ::std::option::Option<crate::types::GeneratedTemplateResourceStatus>) -> Self {
        self.resource_status = input;
        self
    }
    /// <p>Status of the processing of a resource in a generated template.</p>
    /// <dl>
    /// <dt>
    /// InProgress
    /// </dt>
    /// <dd>
    /// <p>The resource processing is still in progress.</p>
    /// </dd>
    /// <dt>
    /// Complete
    /// </dt>
    /// <dd>
    /// <p>The resource processing is complete.</p>
    /// </dd>
    /// <dt>
    /// Pending
    /// </dt>
    /// <dd>
    /// <p>The resource processing is pending.</p>
    /// </dd>
    /// <dt>
    /// Failed
    /// </dt>
    /// <dd>
    /// <p>The resource processing has failed.</p>
    /// </dd>
    /// </dl>
    pub fn get_resource_status(&self) -> &::std::option::Option<crate::types::GeneratedTemplateResourceStatus> {
        &self.resource_status
    }
    /// <p>The reason for the resource detail, providing more information if a failure happened.</p>
    pub fn resource_status_reason(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.resource_status_reason = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The reason for the resource detail, providing more information if a failure happened.</p>
    pub fn set_resource_status_reason(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.resource_status_reason = input;
        self
    }
    /// <p>The reason for the resource detail, providing more information if a failure happened.</p>
    pub fn get_resource_status_reason(&self) -> &::std::option::Option<::std::string::String> {
        &self.resource_status_reason
    }
    /// Appends an item to `warnings`.
    ///
    /// To override the contents of this collection use [`set_warnings`](Self::set_warnings).
    ///
    /// <p>The warnings generated for this resource.</p>
    pub fn warnings(mut self, input: crate::types::WarningDetail) -> Self {
        let mut v = self.warnings.unwrap_or_default();
        v.push(input);
        self.warnings = ::std::option::Option::Some(v);
        self
    }
    /// <p>The warnings generated for this resource.</p>
    pub fn set_warnings(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::WarningDetail>>) -> Self {
        self.warnings = input;
        self
    }
    /// <p>The warnings generated for this resource.</p>
    pub fn get_warnings(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::WarningDetail>> {
        &self.warnings
    }
    /// Consumes the builder and constructs a [`ResourceDetail`](crate::types::ResourceDetail).
    pub fn build(self) -> crate::types::ResourceDetail {
        crate::types::ResourceDetail {
            resource_type: self.resource_type,
            logical_resource_id: self.logical_resource_id,
            resource_identifier: self.resource_identifier,
            resource_status: self.resource_status,
            resource_status_reason: self.resource_status_reason,
            warnings: self.warnings,
        }
    }
}