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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.

/// <p>Contains details about an Elastic Beanstalk environment.</p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct AwsElasticBeanstalkEnvironmentDetails {
    /// <p>The name of the application that is associated with the environment.</p>
    pub application_name: ::std::option::Option<::std::string::String>,
    /// <p>The URL to the CNAME for this environment.</p>
    pub cname: ::std::option::Option<::std::string::String>,
    /// <p>The creation date for this environment.</p>
    pub date_created: ::std::option::Option<::std::string::String>,
    /// <p>The date when this environment was last modified.</p>
    pub date_updated: ::std::option::Option<::std::string::String>,
    /// <p>A description of the environment.</p>
    pub description: ::std::option::Option<::std::string::String>,
    /// <p>For load-balanced, autoscaling environments, the URL to the load balancer. For single-instance environments, the IP address of the instance.</p>
    pub endpoint_url: ::std::option::Option<::std::string::String>,
    /// <p>The ARN of the environment.</p>
    pub environment_arn: ::std::option::Option<::std::string::String>,
    /// <p>The identifier of the environment.</p>
    pub environment_id: ::std::option::Option<::std::string::String>,
    /// <p>Links to other environments in the same group.</p>
    pub environment_links: ::std::option::Option<::std::vec::Vec<crate::types::AwsElasticBeanstalkEnvironmentEnvironmentLink>>,
    /// <p>The name of the environment.</p>
    pub environment_name: ::std::option::Option<::std::string::String>,
    /// <p>The configuration setting for the environment.</p>
    pub option_settings: ::std::option::Option<::std::vec::Vec<crate::types::AwsElasticBeanstalkEnvironmentOptionSetting>>,
    /// <p>The ARN of the platform version for the environment.</p>
    pub platform_arn: ::std::option::Option<::std::string::String>,
    /// <p>The name of the solution stack that is deployed with the environment.</p>
    pub solution_stack_name: ::std::option::Option<::std::string::String>,
    /// <p>The current operational status of the environment. Valid values are as follows:</p>
    /// <ul>
    /// <li> <p> <code>Aborting</code> </p> </li>
    /// <li> <p> <code>Launching</code> </p> </li>
    /// <li> <p> <code>LinkingFrom</code> </p> </li>
    /// <li> <p> <code>LinkingTo</code> </p> </li>
    /// <li> <p> <code>Ready</code> </p> </li>
    /// <li> <p> <code>Terminated</code> </p> </li>
    /// <li> <p> <code>Terminating</code> </p> </li>
    /// <li> <p> <code>Updating</code> </p> </li>
    /// </ul>
    pub status: ::std::option::Option<::std::string::String>,
    /// <p>The tier of the environment.</p>
    pub tier: ::std::option::Option<crate::types::AwsElasticBeanstalkEnvironmentTier>,
    /// <p>The application version of the environment.</p>
    pub version_label: ::std::option::Option<::std::string::String>,
}
impl AwsElasticBeanstalkEnvironmentDetails {
    /// <p>The name of the application that is associated with the environment.</p>
    pub fn application_name(&self) -> ::std::option::Option<&str> {
        self.application_name.as_deref()
    }
    /// <p>The URL to the CNAME for this environment.</p>
    pub fn cname(&self) -> ::std::option::Option<&str> {
        self.cname.as_deref()
    }
    /// <p>The creation date for this environment.</p>
    pub fn date_created(&self) -> ::std::option::Option<&str> {
        self.date_created.as_deref()
    }
    /// <p>The date when this environment was last modified.</p>
    pub fn date_updated(&self) -> ::std::option::Option<&str> {
        self.date_updated.as_deref()
    }
    /// <p>A description of the environment.</p>
    pub fn description(&self) -> ::std::option::Option<&str> {
        self.description.as_deref()
    }
    /// <p>For load-balanced, autoscaling environments, the URL to the load balancer. For single-instance environments, the IP address of the instance.</p>
    pub fn endpoint_url(&self) -> ::std::option::Option<&str> {
        self.endpoint_url.as_deref()
    }
    /// <p>The ARN of the environment.</p>
    pub fn environment_arn(&self) -> ::std::option::Option<&str> {
        self.environment_arn.as_deref()
    }
    /// <p>The identifier of the environment.</p>
    pub fn environment_id(&self) -> ::std::option::Option<&str> {
        self.environment_id.as_deref()
    }
    /// <p>Links to other environments in the same group.</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 `.environment_links.is_none()`.
    pub fn environment_links(&self) -> &[crate::types::AwsElasticBeanstalkEnvironmentEnvironmentLink] {
        self.environment_links.as_deref().unwrap_or_default()
    }
    /// <p>The name of the environment.</p>
    pub fn environment_name(&self) -> ::std::option::Option<&str> {
        self.environment_name.as_deref()
    }
    /// <p>The configuration setting for the environment.</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 `.option_settings.is_none()`.
    pub fn option_settings(&self) -> &[crate::types::AwsElasticBeanstalkEnvironmentOptionSetting] {
        self.option_settings.as_deref().unwrap_or_default()
    }
    /// <p>The ARN of the platform version for the environment.</p>
    pub fn platform_arn(&self) -> ::std::option::Option<&str> {
        self.platform_arn.as_deref()
    }
    /// <p>The name of the solution stack that is deployed with the environment.</p>
    pub fn solution_stack_name(&self) -> ::std::option::Option<&str> {
        self.solution_stack_name.as_deref()
    }
    /// <p>The current operational status of the environment. Valid values are as follows:</p>
    /// <ul>
    /// <li> <p> <code>Aborting</code> </p> </li>
    /// <li> <p> <code>Launching</code> </p> </li>
    /// <li> <p> <code>LinkingFrom</code> </p> </li>
    /// <li> <p> <code>LinkingTo</code> </p> </li>
    /// <li> <p> <code>Ready</code> </p> </li>
    /// <li> <p> <code>Terminated</code> </p> </li>
    /// <li> <p> <code>Terminating</code> </p> </li>
    /// <li> <p> <code>Updating</code> </p> </li>
    /// </ul>
    pub fn status(&self) -> ::std::option::Option<&str> {
        self.status.as_deref()
    }
    /// <p>The tier of the environment.</p>
    pub fn tier(&self) -> ::std::option::Option<&crate::types::AwsElasticBeanstalkEnvironmentTier> {
        self.tier.as_ref()
    }
    /// <p>The application version of the environment.</p>
    pub fn version_label(&self) -> ::std::option::Option<&str> {
        self.version_label.as_deref()
    }
}
impl AwsElasticBeanstalkEnvironmentDetails {
    /// Creates a new builder-style object to manufacture [`AwsElasticBeanstalkEnvironmentDetails`](crate::types::AwsElasticBeanstalkEnvironmentDetails).
    pub fn builder() -> crate::types::builders::AwsElasticBeanstalkEnvironmentDetailsBuilder {
        crate::types::builders::AwsElasticBeanstalkEnvironmentDetailsBuilder::default()
    }
}

/// A builder for [`AwsElasticBeanstalkEnvironmentDetails`](crate::types::AwsElasticBeanstalkEnvironmentDetails).
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
pub struct AwsElasticBeanstalkEnvironmentDetailsBuilder {
    pub(crate) application_name: ::std::option::Option<::std::string::String>,
    pub(crate) cname: ::std::option::Option<::std::string::String>,
    pub(crate) date_created: ::std::option::Option<::std::string::String>,
    pub(crate) date_updated: ::std::option::Option<::std::string::String>,
    pub(crate) description: ::std::option::Option<::std::string::String>,
    pub(crate) endpoint_url: ::std::option::Option<::std::string::String>,
    pub(crate) environment_arn: ::std::option::Option<::std::string::String>,
    pub(crate) environment_id: ::std::option::Option<::std::string::String>,
    pub(crate) environment_links: ::std::option::Option<::std::vec::Vec<crate::types::AwsElasticBeanstalkEnvironmentEnvironmentLink>>,
    pub(crate) environment_name: ::std::option::Option<::std::string::String>,
    pub(crate) option_settings: ::std::option::Option<::std::vec::Vec<crate::types::AwsElasticBeanstalkEnvironmentOptionSetting>>,
    pub(crate) platform_arn: ::std::option::Option<::std::string::String>,
    pub(crate) solution_stack_name: ::std::option::Option<::std::string::String>,
    pub(crate) status: ::std::option::Option<::std::string::String>,
    pub(crate) tier: ::std::option::Option<crate::types::AwsElasticBeanstalkEnvironmentTier>,
    pub(crate) version_label: ::std::option::Option<::std::string::String>,
}
impl AwsElasticBeanstalkEnvironmentDetailsBuilder {
    /// <p>The name of the application that is associated with the environment.</p>
    pub fn application_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.application_name = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The name of the application that is associated with the environment.</p>
    pub fn set_application_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.application_name = input;
        self
    }
    /// <p>The name of the application that is associated with the environment.</p>
    pub fn get_application_name(&self) -> &::std::option::Option<::std::string::String> {
        &self.application_name
    }
    /// <p>The URL to the CNAME for this environment.</p>
    pub fn cname(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.cname = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The URL to the CNAME for this environment.</p>
    pub fn set_cname(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.cname = input;
        self
    }
    /// <p>The URL to the CNAME for this environment.</p>
    pub fn get_cname(&self) -> &::std::option::Option<::std::string::String> {
        &self.cname
    }
    /// <p>The creation date for this environment.</p>
    pub fn date_created(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.date_created = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The creation date for this environment.</p>
    pub fn set_date_created(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.date_created = input;
        self
    }
    /// <p>The creation date for this environment.</p>
    pub fn get_date_created(&self) -> &::std::option::Option<::std::string::String> {
        &self.date_created
    }
    /// <p>The date when this environment was last modified.</p>
    pub fn date_updated(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.date_updated = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The date when this environment was last modified.</p>
    pub fn set_date_updated(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.date_updated = input;
        self
    }
    /// <p>The date when this environment was last modified.</p>
    pub fn get_date_updated(&self) -> &::std::option::Option<::std::string::String> {
        &self.date_updated
    }
    /// <p>A description of the environment.</p>
    pub fn description(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.description = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>A description of the environment.</p>
    pub fn set_description(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.description = input;
        self
    }
    /// <p>A description of the environment.</p>
    pub fn get_description(&self) -> &::std::option::Option<::std::string::String> {
        &self.description
    }
    /// <p>For load-balanced, autoscaling environments, the URL to the load balancer. For single-instance environments, the IP address of the instance.</p>
    pub fn endpoint_url(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.endpoint_url = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>For load-balanced, autoscaling environments, the URL to the load balancer. For single-instance environments, the IP address of the instance.</p>
    pub fn set_endpoint_url(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.endpoint_url = input;
        self
    }
    /// <p>For load-balanced, autoscaling environments, the URL to the load balancer. For single-instance environments, the IP address of the instance.</p>
    pub fn get_endpoint_url(&self) -> &::std::option::Option<::std::string::String> {
        &self.endpoint_url
    }
    /// <p>The ARN of the environment.</p>
    pub fn environment_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.environment_arn = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The ARN of the environment.</p>
    pub fn set_environment_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.environment_arn = input;
        self
    }
    /// <p>The ARN of the environment.</p>
    pub fn get_environment_arn(&self) -> &::std::option::Option<::std::string::String> {
        &self.environment_arn
    }
    /// <p>The identifier of the environment.</p>
    pub fn environment_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.environment_id = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The identifier of the environment.</p>
    pub fn set_environment_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.environment_id = input;
        self
    }
    /// <p>The identifier of the environment.</p>
    pub fn get_environment_id(&self) -> &::std::option::Option<::std::string::String> {
        &self.environment_id
    }
    /// Appends an item to `environment_links`.
    ///
    /// To override the contents of this collection use [`set_environment_links`](Self::set_environment_links).
    ///
    /// <p>Links to other environments in the same group.</p>
    pub fn environment_links(mut self, input: crate::types::AwsElasticBeanstalkEnvironmentEnvironmentLink) -> Self {
        let mut v = self.environment_links.unwrap_or_default();
        v.push(input);
        self.environment_links = ::std::option::Option::Some(v);
        self
    }
    /// <p>Links to other environments in the same group.</p>
    pub fn set_environment_links(
        mut self,
        input: ::std::option::Option<::std::vec::Vec<crate::types::AwsElasticBeanstalkEnvironmentEnvironmentLink>>,
    ) -> Self {
        self.environment_links = input;
        self
    }
    /// <p>Links to other environments in the same group.</p>
    pub fn get_environment_links(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::AwsElasticBeanstalkEnvironmentEnvironmentLink>> {
        &self.environment_links
    }
    /// <p>The name of the environment.</p>
    pub fn environment_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.environment_name = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The name of the environment.</p>
    pub fn set_environment_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.environment_name = input;
        self
    }
    /// <p>The name of the environment.</p>
    pub fn get_environment_name(&self) -> &::std::option::Option<::std::string::String> {
        &self.environment_name
    }
    /// Appends an item to `option_settings`.
    ///
    /// To override the contents of this collection use [`set_option_settings`](Self::set_option_settings).
    ///
    /// <p>The configuration setting for the environment.</p>
    pub fn option_settings(mut self, input: crate::types::AwsElasticBeanstalkEnvironmentOptionSetting) -> Self {
        let mut v = self.option_settings.unwrap_or_default();
        v.push(input);
        self.option_settings = ::std::option::Option::Some(v);
        self
    }
    /// <p>The configuration setting for the environment.</p>
    pub fn set_option_settings(
        mut self,
        input: ::std::option::Option<::std::vec::Vec<crate::types::AwsElasticBeanstalkEnvironmentOptionSetting>>,
    ) -> Self {
        self.option_settings = input;
        self
    }
    /// <p>The configuration setting for the environment.</p>
    pub fn get_option_settings(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::AwsElasticBeanstalkEnvironmentOptionSetting>> {
        &self.option_settings
    }
    /// <p>The ARN of the platform version for the environment.</p>
    pub fn platform_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.platform_arn = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The ARN of the platform version for the environment.</p>
    pub fn set_platform_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.platform_arn = input;
        self
    }
    /// <p>The ARN of the platform version for the environment.</p>
    pub fn get_platform_arn(&self) -> &::std::option::Option<::std::string::String> {
        &self.platform_arn
    }
    /// <p>The name of the solution stack that is deployed with the environment.</p>
    pub fn solution_stack_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.solution_stack_name = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The name of the solution stack that is deployed with the environment.</p>
    pub fn set_solution_stack_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.solution_stack_name = input;
        self
    }
    /// <p>The name of the solution stack that is deployed with the environment.</p>
    pub fn get_solution_stack_name(&self) -> &::std::option::Option<::std::string::String> {
        &self.solution_stack_name
    }
    /// <p>The current operational status of the environment. Valid values are as follows:</p>
    /// <ul>
    /// <li> <p> <code>Aborting</code> </p> </li>
    /// <li> <p> <code>Launching</code> </p> </li>
    /// <li> <p> <code>LinkingFrom</code> </p> </li>
    /// <li> <p> <code>LinkingTo</code> </p> </li>
    /// <li> <p> <code>Ready</code> </p> </li>
    /// <li> <p> <code>Terminated</code> </p> </li>
    /// <li> <p> <code>Terminating</code> </p> </li>
    /// <li> <p> <code>Updating</code> </p> </li>
    /// </ul>
    pub fn status(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.status = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The current operational status of the environment. Valid values are as follows:</p>
    /// <ul>
    /// <li> <p> <code>Aborting</code> </p> </li>
    /// <li> <p> <code>Launching</code> </p> </li>
    /// <li> <p> <code>LinkingFrom</code> </p> </li>
    /// <li> <p> <code>LinkingTo</code> </p> </li>
    /// <li> <p> <code>Ready</code> </p> </li>
    /// <li> <p> <code>Terminated</code> </p> </li>
    /// <li> <p> <code>Terminating</code> </p> </li>
    /// <li> <p> <code>Updating</code> </p> </li>
    /// </ul>
    pub fn set_status(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.status = input;
        self
    }
    /// <p>The current operational status of the environment. Valid values are as follows:</p>
    /// <ul>
    /// <li> <p> <code>Aborting</code> </p> </li>
    /// <li> <p> <code>Launching</code> </p> </li>
    /// <li> <p> <code>LinkingFrom</code> </p> </li>
    /// <li> <p> <code>LinkingTo</code> </p> </li>
    /// <li> <p> <code>Ready</code> </p> </li>
    /// <li> <p> <code>Terminated</code> </p> </li>
    /// <li> <p> <code>Terminating</code> </p> </li>
    /// <li> <p> <code>Updating</code> </p> </li>
    /// </ul>
    pub fn get_status(&self) -> &::std::option::Option<::std::string::String> {
        &self.status
    }
    /// <p>The tier of the environment.</p>
    pub fn tier(mut self, input: crate::types::AwsElasticBeanstalkEnvironmentTier) -> Self {
        self.tier = ::std::option::Option::Some(input);
        self
    }
    /// <p>The tier of the environment.</p>
    pub fn set_tier(mut self, input: ::std::option::Option<crate::types::AwsElasticBeanstalkEnvironmentTier>) -> Self {
        self.tier = input;
        self
    }
    /// <p>The tier of the environment.</p>
    pub fn get_tier(&self) -> &::std::option::Option<crate::types::AwsElasticBeanstalkEnvironmentTier> {
        &self.tier
    }
    /// <p>The application version of the environment.</p>
    pub fn version_label(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.version_label = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The application version of the environment.</p>
    pub fn set_version_label(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.version_label = input;
        self
    }
    /// <p>The application version of the environment.</p>
    pub fn get_version_label(&self) -> &::std::option::Option<::std::string::String> {
        &self.version_label
    }
    /// Consumes the builder and constructs a [`AwsElasticBeanstalkEnvironmentDetails`](crate::types::AwsElasticBeanstalkEnvironmentDetails).
    pub fn build(self) -> crate::types::AwsElasticBeanstalkEnvironmentDetails {
        crate::types::AwsElasticBeanstalkEnvironmentDetails {
            application_name: self.application_name,
            cname: self.cname,
            date_created: self.date_created,
            date_updated: self.date_updated,
            description: self.description,
            endpoint_url: self.endpoint_url,
            environment_arn: self.environment_arn,
            environment_id: self.environment_id,
            environment_links: self.environment_links,
            environment_name: self.environment_name,
            option_settings: self.option_settings,
            platform_arn: self.platform_arn,
            solution_stack_name: self.solution_stack_name,
            status: self.status,
            tier: self.tier,
            version_label: self.version_label,
        }
    }
}