@aws-sdk/client-elastic-beanstalk 3.687.0 → 3.691.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,13 +10,13 @@ export interface AbortEnvironmentUpdateMessage {
10
10
  * cancel.</p>
11
11
  * @public
12
12
  */
13
- EnvironmentId?: string;
13
+ EnvironmentId?: string | undefined;
14
14
  /**
15
15
  * <p>This specifies the name of the environment with the in-progress update that you want to
16
16
  * cancel.</p>
17
17
  * @public
18
18
  */
19
- EnvironmentName?: string;
19
+ EnvironmentName?: string | undefined;
20
20
  }
21
21
  /**
22
22
  * <p>The specified account does not have sufficient privileges for one or more AWS
@@ -87,13 +87,13 @@ export interface MaxAgeRule {
87
87
  * <p>Specify the number of days to retain an application versions.</p>
88
88
  * @public
89
89
  */
90
- MaxAgeInDays?: number;
90
+ MaxAgeInDays?: number | undefined;
91
91
  /**
92
92
  * <p>Set to <code>true</code> to delete a version's source bundle from Amazon S3 when
93
93
  * Elastic Beanstalk deletes the application version.</p>
94
94
  * @public
95
95
  */
96
- DeleteSourceFromS3?: boolean;
96
+ DeleteSourceFromS3?: boolean | undefined;
97
97
  }
98
98
  /**
99
99
  * <p>A lifecycle rule that deletes the oldest application version when the maximum count is
@@ -111,13 +111,13 @@ export interface MaxCountRule {
111
111
  * <p>Specify the maximum number of application versions to retain.</p>
112
112
  * @public
113
113
  */
114
- MaxCount?: number;
114
+ MaxCount?: number | undefined;
115
115
  /**
116
116
  * <p>Set to <code>true</code> to delete a version's source bundle from Amazon S3 when
117
117
  * Elastic Beanstalk deletes the application version.</p>
118
118
  * @public
119
119
  */
120
- DeleteSourceFromS3?: boolean;
120
+ DeleteSourceFromS3?: boolean | undefined;
121
121
  }
122
122
  /**
123
123
  * <p>The application version lifecycle settings for an application. Defines the rules that
@@ -134,13 +134,13 @@ export interface ApplicationVersionLifecycleConfig {
134
134
  * retained for an application.</p>
135
135
  * @public
136
136
  */
137
- MaxCountRule?: MaxCountRule;
137
+ MaxCountRule?: MaxCountRule | undefined;
138
138
  /**
139
139
  * <p>Specify a max age rule to restrict the length of time that application versions are
140
140
  * retained for an application.</p>
141
141
  * @public
142
142
  */
143
- MaxAgeRule?: MaxAgeRule;
143
+ MaxAgeRule?: MaxAgeRule | undefined;
144
144
  }
145
145
  /**
146
146
  * <p>The resource lifecycle configuration for an application. Defines lifecycle settings for
@@ -162,12 +162,12 @@ export interface ApplicationResourceLifecycleConfig {
162
162
  * subsequent calls to change the Service Role to another value.</p>
163
163
  * @public
164
164
  */
165
- ServiceRole?: string;
165
+ ServiceRole?: string | undefined;
166
166
  /**
167
167
  * <p>Defines lifecycle settings for application versions.</p>
168
168
  * @public
169
169
  */
170
- VersionLifecycleConfig?: ApplicationVersionLifecycleConfig;
170
+ VersionLifecycleConfig?: ApplicationVersionLifecycleConfig | undefined;
171
171
  }
172
172
  /**
173
173
  * <p>Describes the properties of an application.</p>
@@ -178,42 +178,42 @@ export interface ApplicationDescription {
178
178
  * <p>The Amazon Resource Name (ARN) of the application.</p>
179
179
  * @public
180
180
  */
181
- ApplicationArn?: string;
181
+ ApplicationArn?: string | undefined;
182
182
  /**
183
183
  * <p>The name of the application.</p>
184
184
  * @public
185
185
  */
186
- ApplicationName?: string;
186
+ ApplicationName?: string | undefined;
187
187
  /**
188
188
  * <p>User-defined description of the application.</p>
189
189
  * @public
190
190
  */
191
- Description?: string;
191
+ Description?: string | undefined;
192
192
  /**
193
193
  * <p>The date when the application was created.</p>
194
194
  * @public
195
195
  */
196
- DateCreated?: Date;
196
+ DateCreated?: Date | undefined;
197
197
  /**
198
198
  * <p>The date when the application was last modified.</p>
199
199
  * @public
200
200
  */
201
- DateUpdated?: Date;
201
+ DateUpdated?: Date | undefined;
202
202
  /**
203
203
  * <p>The names of the versions for this application.</p>
204
204
  * @public
205
205
  */
206
- Versions?: string[];
206
+ Versions?: string[] | undefined;
207
207
  /**
208
208
  * <p>The names of the configuration templates associated with this application.</p>
209
209
  * @public
210
210
  */
211
- ConfigurationTemplates?: string[];
211
+ ConfigurationTemplates?: string[] | undefined;
212
212
  /**
213
213
  * <p>The lifecycle settings for the application.</p>
214
214
  * @public
215
215
  */
216
- ResourceLifecycleConfig?: ApplicationResourceLifecycleConfig;
216
+ ResourceLifecycleConfig?: ApplicationResourceLifecycleConfig | undefined;
217
217
  }
218
218
  /**
219
219
  * <p>Result message containing a single description of an application.</p>
@@ -224,7 +224,7 @@ export interface ApplicationDescriptionMessage {
224
224
  * <p> The <a>ApplicationDescription</a> of the application. </p>
225
225
  * @public
226
226
  */
227
- Application?: ApplicationDescription;
227
+ Application?: ApplicationDescription | undefined;
228
228
  }
229
229
  /**
230
230
  * <p>Result message containing a list of application descriptions.</p>
@@ -235,7 +235,7 @@ export interface ApplicationDescriptionsMessage {
235
235
  * <p>This parameter contains a list of <a>ApplicationDescription</a>.</p>
236
236
  * @public
237
237
  */
238
- Applications?: ApplicationDescription[];
238
+ Applications?: ApplicationDescription[] | undefined;
239
239
  }
240
240
  /**
241
241
  * <p>Represents the average latency for the slowest X percent of requests over the last 10
@@ -248,49 +248,49 @@ export interface Latency {
248
248
  * seconds.</p>
249
249
  * @public
250
250
  */
251
- P999?: number;
251
+ P999?: number | undefined;
252
252
  /**
253
253
  * <p>The average latency for the slowest 1 percent of requests over the last 10
254
254
  * seconds.</p>
255
255
  * @public
256
256
  */
257
- P99?: number;
257
+ P99?: number | undefined;
258
258
  /**
259
259
  * <p>The average latency for the slowest 5 percent of requests over the last 10
260
260
  * seconds.</p>
261
261
  * @public
262
262
  */
263
- P95?: number;
263
+ P95?: number | undefined;
264
264
  /**
265
265
  * <p>The average latency for the slowest 10 percent of requests over the last 10
266
266
  * seconds.</p>
267
267
  * @public
268
268
  */
269
- P90?: number;
269
+ P90?: number | undefined;
270
270
  /**
271
271
  * <p>The average latency for the slowest 15 percent of requests over the last 10
272
272
  * seconds.</p>
273
273
  * @public
274
274
  */
275
- P85?: number;
275
+ P85?: number | undefined;
276
276
  /**
277
277
  * <p>The average latency for the slowest 25 percent of requests over the last 10
278
278
  * seconds.</p>
279
279
  * @public
280
280
  */
281
- P75?: number;
281
+ P75?: number | undefined;
282
282
  /**
283
283
  * <p>The average latency for the slowest 50 percent of requests over the last 10
284
284
  * seconds.</p>
285
285
  * @public
286
286
  */
287
- P50?: number;
287
+ P50?: number | undefined;
288
288
  /**
289
289
  * <p>The average latency for the slowest 90 percent of requests over the last 10
290
290
  * seconds.</p>
291
291
  * @public
292
292
  */
293
- P10?: number;
293
+ P10?: number | undefined;
294
294
  }
295
295
  /**
296
296
  * <p>Represents the percentage of requests over the last 10 seconds that resulted in each
@@ -304,25 +304,25 @@ export interface StatusCodes {
304
304
  * etc.) status code.</p>
305
305
  * @public
306
306
  */
307
- Status2xx?: number;
307
+ Status2xx?: number | undefined;
308
308
  /**
309
309
  * <p>The percentage of requests over the last 10 seconds that resulted in a 3xx (300, 301,
310
310
  * etc.) status code.</p>
311
311
  * @public
312
312
  */
313
- Status3xx?: number;
313
+ Status3xx?: number | undefined;
314
314
  /**
315
315
  * <p>The percentage of requests over the last 10 seconds that resulted in a 4xx (400, 401,
316
316
  * etc.) status code.</p>
317
317
  * @public
318
318
  */
319
- Status4xx?: number;
319
+ Status4xx?: number | undefined;
320
320
  /**
321
321
  * <p>The percentage of requests over the last 10 seconds that resulted in a 5xx (500, 501,
322
322
  * etc.) status code.</p>
323
323
  * @public
324
324
  */
325
- Status5xx?: number;
325
+ Status5xx?: number | undefined;
326
326
  }
327
327
  /**
328
328
  * <p>Application request metrics for an AWS Elastic Beanstalk environment.</p>
@@ -335,25 +335,25 @@ export interface ApplicationMetrics {
335
335
  * (<code>duration</code>).</p>
336
336
  * @public
337
337
  */
338
- Duration?: number;
338
+ Duration?: number | undefined;
339
339
  /**
340
340
  * <p>Average number of requests handled by the web server per second over the last 10
341
341
  * seconds.</p>
342
342
  * @public
343
343
  */
344
- RequestCount?: number;
344
+ RequestCount?: number | undefined;
345
345
  /**
346
346
  * <p>Represents the percentage of requests over the last 10 seconds that resulted in each
347
347
  * type of status code response.</p>
348
348
  * @public
349
349
  */
350
- StatusCodes?: StatusCodes;
350
+ StatusCodes?: StatusCodes | undefined;
351
351
  /**
352
352
  * <p>Represents the average latency for the slowest X percent of requests over the last 10
353
353
  * seconds. Latencies are in seconds with one millisecond resolution.</p>
354
354
  * @public
355
355
  */
356
- Latency?: Latency;
356
+ Latency?: Latency | undefined;
357
357
  }
358
358
  /**
359
359
  * @public
@@ -363,12 +363,12 @@ export interface ApplicationResourceLifecycleDescriptionMessage {
363
363
  * <p>The name of the application.</p>
364
364
  * @public
365
365
  */
366
- ApplicationName?: string;
366
+ ApplicationName?: string | undefined;
367
367
  /**
368
368
  * <p>The lifecycle configuration.</p>
369
369
  * @public
370
370
  */
371
- ResourceLifecycleConfig?: ApplicationResourceLifecycleConfig;
371
+ ResourceLifecycleConfig?: ApplicationResourceLifecycleConfig | undefined;
372
372
  }
373
373
  /**
374
374
  * @public
@@ -463,12 +463,12 @@ export interface S3Location {
463
463
  * <p>The Amazon S3 bucket where the data is located.</p>
464
464
  * @public
465
465
  */
466
- S3Bucket?: string;
466
+ S3Bucket?: string | undefined;
467
467
  /**
468
468
  * <p>The Amazon S3 key where the data is located.</p>
469
469
  * @public
470
470
  */
471
- S3Key?: string;
471
+ S3Key?: string | undefined;
472
472
  }
473
473
  /**
474
474
  * @public
@@ -494,48 +494,48 @@ export interface ApplicationVersionDescription {
494
494
  * <p>The Amazon Resource Name (ARN) of the application version.</p>
495
495
  * @public
496
496
  */
497
- ApplicationVersionArn?: string;
497
+ ApplicationVersionArn?: string | undefined;
498
498
  /**
499
499
  * <p>The name of the application to which the application version belongs.</p>
500
500
  * @public
501
501
  */
502
- ApplicationName?: string;
502
+ ApplicationName?: string | undefined;
503
503
  /**
504
504
  * <p>The description of the application version.</p>
505
505
  * @public
506
506
  */
507
- Description?: string;
507
+ Description?: string | undefined;
508
508
  /**
509
509
  * <p>A unique identifier for the application version.</p>
510
510
  * @public
511
511
  */
512
- VersionLabel?: string;
512
+ VersionLabel?: string | undefined;
513
513
  /**
514
514
  * <p>If the version's source code was retrieved from AWS CodeCommit, the location of the
515
515
  * source code for the application version.</p>
516
516
  * @public
517
517
  */
518
- SourceBuildInformation?: SourceBuildInformation;
518
+ SourceBuildInformation?: SourceBuildInformation | undefined;
519
519
  /**
520
520
  * <p>Reference to the artifact from the AWS CodeBuild build.</p>
521
521
  * @public
522
522
  */
523
- BuildArn?: string;
523
+ BuildArn?: string | undefined;
524
524
  /**
525
525
  * <p>The storage location of the application version's source bundle in Amazon S3.</p>
526
526
  * @public
527
527
  */
528
- SourceBundle?: S3Location;
528
+ SourceBundle?: S3Location | undefined;
529
529
  /**
530
530
  * <p>The creation date of the application version.</p>
531
531
  * @public
532
532
  */
533
- DateCreated?: Date;
533
+ DateCreated?: Date | undefined;
534
534
  /**
535
535
  * <p>The last modified date of the application version.</p>
536
536
  * @public
537
537
  */
538
- DateUpdated?: Date;
538
+ DateUpdated?: Date | undefined;
539
539
  /**
540
540
  * <p>The processing status of the application version. Reflects the state of the application
541
541
  * version during its creation. Many of the values are only applicable if you specified
@@ -569,7 +569,7 @@ export interface ApplicationVersionDescription {
569
569
  * </ul>
570
570
  * @public
571
571
  */
572
- Status?: ApplicationVersionStatus;
572
+ Status?: ApplicationVersionStatus | undefined;
573
573
  }
574
574
  /**
575
575
  * <p>Result message wrapping a single description of an application version.</p>
@@ -581,7 +581,7 @@ export interface ApplicationVersionDescriptionMessage {
581
581
  * </p>
582
582
  * @public
583
583
  */
584
- ApplicationVersion?: ApplicationVersionDescription;
584
+ ApplicationVersion?: ApplicationVersionDescription | undefined;
585
585
  }
586
586
  /**
587
587
  * <p>Result message wrapping a list of application version descriptions.</p>
@@ -593,13 +593,13 @@ export interface ApplicationVersionDescriptionsMessage {
593
593
  * creation.</p>
594
594
  * @public
595
595
  */
596
- ApplicationVersions?: ApplicationVersionDescription[];
596
+ ApplicationVersions?: ApplicationVersionDescription[] | undefined;
597
597
  /**
598
598
  * <p>In a paginated request, the token that you can pass in a subsequent request to get the
599
599
  * next response page.</p>
600
600
  * @public
601
601
  */
602
- NextToken?: string;
602
+ NextToken?: string | undefined;
603
603
  }
604
604
  /**
605
605
  * <p>Request to execute a scheduled managed action immediately.</p>
@@ -610,12 +610,12 @@ export interface ApplyEnvironmentManagedActionRequest {
610
610
  * <p>The name of the target environment.</p>
611
611
  * @public
612
612
  */
613
- EnvironmentName?: string;
613
+ EnvironmentName?: string | undefined;
614
614
  /**
615
615
  * <p>The environment ID of the target environment.</p>
616
616
  * @public
617
617
  */
618
- EnvironmentId?: string;
618
+ EnvironmentId?: string | undefined;
619
619
  /**
620
620
  * <p>The action ID of the scheduled managed action to execute.</p>
621
621
  * @public
@@ -631,22 +631,22 @@ export interface ApplyEnvironmentManagedActionResult {
631
631
  * <p>The action ID of the managed action.</p>
632
632
  * @public
633
633
  */
634
- ActionId?: string;
634
+ ActionId?: string | undefined;
635
635
  /**
636
636
  * <p>A description of the managed action.</p>
637
637
  * @public
638
638
  */
639
- ActionDescription?: string;
639
+ ActionDescription?: string | undefined;
640
640
  /**
641
641
  * <p>The type of managed action.</p>
642
642
  * @public
643
643
  */
644
- ActionType?: ActionType;
644
+ ActionType?: ActionType | undefined;
645
645
  /**
646
646
  * <p>The status of the managed action.</p>
647
647
  * @public
648
648
  */
649
- Status?: string;
649
+ Status?: string | undefined;
650
650
  }
651
651
  /**
652
652
  * <p>A generic service exception has occurred.</p>
@@ -698,7 +698,7 @@ export interface AutoScalingGroup {
698
698
  * <p>The name of the <code>AutoScalingGroup</code> . </p>
699
699
  * @public
700
700
  */
701
- Name?: string;
701
+ Name?: string | undefined;
702
702
  }
703
703
  /**
704
704
  * <p>Describes the solution stack.</p>
@@ -709,12 +709,12 @@ export interface SolutionStackDescription {
709
709
  * <p>The name of the solution stack.</p>
710
710
  * @public
711
711
  */
712
- SolutionStackName?: string;
712
+ SolutionStackName?: string | undefined;
713
713
  /**
714
714
  * <p>The permitted file types allowed for a solution stack.</p>
715
715
  * @public
716
716
  */
717
- PermittedFileTypes?: string[];
717
+ PermittedFileTypes?: string[] | undefined;
718
718
  }
719
719
  /**
720
720
  * <p>Results message indicating whether a CNAME is available.</p>
@@ -746,13 +746,13 @@ export interface CheckDNSAvailabilityResultMessage {
746
746
  * </ul>
747
747
  * @public
748
748
  */
749
- Available?: boolean;
749
+ Available?: boolean | undefined;
750
750
  /**
751
751
  * <p>The fully qualified CNAME to reserve when <a>CreateEnvironment</a> is called
752
752
  * with the provided prefix.</p>
753
753
  * @public
754
754
  */
755
- FullyQualifiedCNAME?: string;
755
+ FullyQualifiedCNAME?: string | undefined;
756
756
  }
757
757
  /**
758
758
  * <p>Request to create or update a group of environments.</p>
@@ -763,7 +763,7 @@ export interface ComposeEnvironmentsMessage {
763
763
  * <p>The name of the application to which the specified source bundles belong.</p>
764
764
  * @public
765
765
  */
766
- ApplicationName?: string;
766
+ ApplicationName?: string | undefined;
767
767
  /**
768
768
  * <p>The name of the group to which the target environments belong. Specify a group name
769
769
  * only if the environment name defined in each target environment's manifest ends with a +
@@ -771,7 +771,7 @@ export interface ComposeEnvironmentsMessage {
771
771
  * (env.yaml)</a> for details.</p>
772
772
  * @public
773
773
  */
774
- GroupName?: string;
774
+ GroupName?: string | undefined;
775
775
  /**
776
776
  * <p>A list of version labels, specifying one or more application source bundles that belong
777
777
  * to the target application. Each source bundle must include an environment manifest that
@@ -779,7 +779,7 @@ export interface ComposeEnvironmentsMessage {
779
779
  * optionally can specify environment links to create.</p>
780
780
  * @public
781
781
  */
782
- VersionLabels?: string[];
782
+ VersionLabels?: string[] | undefined;
783
783
  }
784
784
  /**
785
785
  * <p>A link to another environment, defined in the environment's manifest. Links provide
@@ -793,12 +793,12 @@ export interface EnvironmentLink {
793
793
  * <p>The name of the link.</p>
794
794
  * @public
795
795
  */
796
- LinkName?: string;
796
+ LinkName?: string | undefined;
797
797
  /**
798
798
  * <p>The name of the linked environment (the dependency).</p>
799
799
  * @public
800
800
  */
801
- EnvironmentName?: string;
801
+ EnvironmentName?: string | undefined;
802
802
  }
803
803
  /**
804
804
  * @public
@@ -842,12 +842,12 @@ export interface Listener {
842
842
  * <p>The protocol that is used by the Listener.</p>
843
843
  * @public
844
844
  */
845
- Protocol?: string;
845
+ Protocol?: string | undefined;
846
846
  /**
847
847
  * <p>The port that is used by the Listener.</p>
848
848
  * @public
849
849
  */
850
- Port?: number;
850
+ Port?: number | undefined;
851
851
  }
852
852
  /**
853
853
  * <p>Describes the details of a LoadBalancer.</p>
@@ -858,17 +858,17 @@ export interface LoadBalancerDescription {
858
858
  * <p>The name of the LoadBalancer.</p>
859
859
  * @public
860
860
  */
861
- LoadBalancerName?: string;
861
+ LoadBalancerName?: string | undefined;
862
862
  /**
863
863
  * <p>The domain name of the LoadBalancer.</p>
864
864
  * @public
865
865
  */
866
- Domain?: string;
866
+ Domain?: string | undefined;
867
867
  /**
868
868
  * <p>A list of Listeners used by the LoadBalancer.</p>
869
869
  * @public
870
870
  */
871
- Listeners?: Listener[];
871
+ Listeners?: Listener[] | undefined;
872
872
  }
873
873
  /**
874
874
  * <p>Describes the AWS resources in use by this environment. This data is not live
@@ -880,7 +880,7 @@ export interface EnvironmentResourcesDescription {
880
880
  * <p>Describes the LoadBalancer.</p>
881
881
  * @public
882
882
  */
883
- LoadBalancer?: LoadBalancerDescription;
883
+ LoadBalancer?: LoadBalancerDescription | undefined;
884
884
  }
885
885
  /**
886
886
  * @public
@@ -920,7 +920,7 @@ export interface EnvironmentTier {
920
920
  * </ul>
921
921
  * @public
922
922
  */
923
- Name?: string;
923
+ Name?: string | undefined;
924
924
  /**
925
925
  * <p>The type of this environment tier.</p>
926
926
  * <p>Valid values:</p>
@@ -936,7 +936,7 @@ export interface EnvironmentTier {
936
936
  * </ul>
937
937
  * @public
938
938
  */
939
- Type?: string;
939
+ Type?: string | undefined;
940
940
  /**
941
941
  * <p>The version of this environment tier. When you don't set a value to it, Elastic Beanstalk uses the
942
942
  * latest compatible worker tier version.</p>
@@ -946,7 +946,7 @@ export interface EnvironmentTier {
946
946
  * </note>
947
947
  * @public
948
948
  */
949
- Version?: string;
949
+ Version?: string | undefined;
950
950
  }
951
951
  /**
952
952
  * <p>Describes the properties of an environment.</p>
@@ -957,64 +957,64 @@ export interface EnvironmentDescription {
957
957
  * <p>The name of this environment.</p>
958
958
  * @public
959
959
  */
960
- EnvironmentName?: string;
960
+ EnvironmentName?: string | undefined;
961
961
  /**
962
962
  * <p>The ID of this environment.</p>
963
963
  * @public
964
964
  */
965
- EnvironmentId?: string;
965
+ EnvironmentId?: string | undefined;
966
966
  /**
967
967
  * <p>The name of the application associated with this environment.</p>
968
968
  * @public
969
969
  */
970
- ApplicationName?: string;
970
+ ApplicationName?: string | undefined;
971
971
  /**
972
972
  * <p>The application version deployed in this environment.</p>
973
973
  * @public
974
974
  */
975
- VersionLabel?: string;
975
+ VersionLabel?: string | undefined;
976
976
  /**
977
977
  * <p> The name of the <code>SolutionStack</code> deployed with this environment. </p>
978
978
  * @public
979
979
  */
980
- SolutionStackName?: string;
980
+ SolutionStackName?: string | undefined;
981
981
  /**
982
982
  * <p>The ARN of the platform version.</p>
983
983
  * @public
984
984
  */
985
- PlatformArn?: string;
985
+ PlatformArn?: string | undefined;
986
986
  /**
987
987
  * <p>The name of the configuration template used to originally launch this
988
988
  * environment.</p>
989
989
  * @public
990
990
  */
991
- TemplateName?: string;
991
+ TemplateName?: string | undefined;
992
992
  /**
993
993
  * <p>Describes this environment.</p>
994
994
  * @public
995
995
  */
996
- Description?: string;
996
+ Description?: string | undefined;
997
997
  /**
998
998
  * <p>For load-balanced, autoscaling environments, the URL to the LoadBalancer. For
999
999
  * single-instance environments, the IP address of the instance.</p>
1000
1000
  * @public
1001
1001
  */
1002
- EndpointURL?: string;
1002
+ EndpointURL?: string | undefined;
1003
1003
  /**
1004
1004
  * <p>The URL to the CNAME for this environment.</p>
1005
1005
  * @public
1006
1006
  */
1007
- CNAME?: string;
1007
+ CNAME?: string | undefined;
1008
1008
  /**
1009
1009
  * <p>The creation date for this environment.</p>
1010
1010
  * @public
1011
1011
  */
1012
- DateCreated?: Date;
1012
+ DateCreated?: Date | undefined;
1013
1013
  /**
1014
1014
  * <p>The last modified date for this environment.</p>
1015
1015
  * @public
1016
1016
  */
1017
- DateUpdated?: Date;
1017
+ DateUpdated?: Date | undefined;
1018
1018
  /**
1019
1019
  * <p>The current operational status of the environment:</p>
1020
1020
  * <ul>
@@ -1043,7 +1043,7 @@ export interface EnvironmentDescription {
1043
1043
  * </ul>
1044
1044
  * @public
1045
1045
  */
1046
- Status?: EnvironmentStatus;
1046
+ Status?: EnvironmentStatus | undefined;
1047
1047
  /**
1048
1048
  * <p>Indicates if there is an in-progress environment configuration update or application
1049
1049
  * version deployment that you can cancel.</p>
@@ -1053,7 +1053,7 @@ export interface EnvironmentDescription {
1053
1053
  * <code>false:</code> There are no updates currently in progress. </p>
1054
1054
  * @public
1055
1055
  */
1056
- AbortableOperationInProgress?: boolean;
1056
+ AbortableOperationInProgress?: boolean | undefined;
1057
1057
  /**
1058
1058
  * <p>Describes the health status of the environment. AWS Elastic Beanstalk indicates the
1059
1059
  * failure levels for a running environment:</p>
@@ -1083,40 +1083,40 @@ export interface EnvironmentDescription {
1083
1083
  * </p>
1084
1084
  * @public
1085
1085
  */
1086
- Health?: EnvironmentHealth;
1086
+ Health?: EnvironmentHealth | undefined;
1087
1087
  /**
1088
1088
  * <p>Returns the health status of the application running in your environment. For more
1089
1089
  * information, see <a href="https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html">Health Colors and
1090
1090
  * Statuses</a>.</p>
1091
1091
  * @public
1092
1092
  */
1093
- HealthStatus?: EnvironmentHealthStatus;
1093
+ HealthStatus?: EnvironmentHealthStatus | undefined;
1094
1094
  /**
1095
1095
  * <p>The description of the AWS resources used by this environment.</p>
1096
1096
  * @public
1097
1097
  */
1098
- Resources?: EnvironmentResourcesDescription;
1098
+ Resources?: EnvironmentResourcesDescription | undefined;
1099
1099
  /**
1100
1100
  * <p>Describes the current tier of this environment.</p>
1101
1101
  * @public
1102
1102
  */
1103
- Tier?: EnvironmentTier;
1103
+ Tier?: EnvironmentTier | undefined;
1104
1104
  /**
1105
1105
  * <p>A list of links to other environments in the same group.</p>
1106
1106
  * @public
1107
1107
  */
1108
- EnvironmentLinks?: EnvironmentLink[];
1108
+ EnvironmentLinks?: EnvironmentLink[] | undefined;
1109
1109
  /**
1110
1110
  * <p>The environment's Amazon Resource Name (ARN), which can be used in other API requests that require an ARN.</p>
1111
1111
  * @public
1112
1112
  */
1113
- EnvironmentArn?: string;
1113
+ EnvironmentArn?: string | undefined;
1114
1114
  /**
1115
1115
  * <p>The Amazon Resource Name (ARN) of the environment's operations role. For more information,
1116
1116
  * see <a href="https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/iam-operationsrole.html">Operations roles</a> in the <i>AWS Elastic Beanstalk Developer Guide</i>.</p>
1117
1117
  * @public
1118
1118
  */
1119
- OperationsRole?: string;
1119
+ OperationsRole?: string | undefined;
1120
1120
  }
1121
1121
  /**
1122
1122
  * <p>Result message containing a list of environment descriptions.</p>
@@ -1127,13 +1127,13 @@ export interface EnvironmentDescriptionsMessage {
1127
1127
  * <p> Returns an <a>EnvironmentDescription</a> list. </p>
1128
1128
  * @public
1129
1129
  */
1130
- Environments?: EnvironmentDescription[];
1130
+ Environments?: EnvironmentDescription[] | undefined;
1131
1131
  /**
1132
1132
  * <p>In a paginated request, the token that you can pass in a subsequent request to get the
1133
1133
  * next response page.</p>
1134
1134
  * @public
1135
1135
  */
1136
- NextToken?: string;
1136
+ NextToken?: string | undefined;
1137
1137
  }
1138
1138
  /**
1139
1139
  * <p>The specified account has reached its limit of environments.</p>
@@ -1156,12 +1156,12 @@ export interface Tag {
1156
1156
  * <p>The key of the tag.</p>
1157
1157
  * @public
1158
1158
  */
1159
- Key?: string;
1159
+ Key?: string | undefined;
1160
1160
  /**
1161
1161
  * <p>The value of the tag.</p>
1162
1162
  * @public
1163
1163
  */
1164
- Value?: string;
1164
+ Value?: string | undefined;
1165
1165
  }
1166
1166
  /**
1167
1167
  * <p>Request to create an application.</p>
@@ -1177,20 +1177,20 @@ export interface CreateApplicationMessage {
1177
1177
  * <p>Your description of the application.</p>
1178
1178
  * @public
1179
1179
  */
1180
- Description?: string;
1180
+ Description?: string | undefined;
1181
1181
  /**
1182
1182
  * <p>Specifies an application resource lifecycle configuration to prevent your application
1183
1183
  * from accumulating too many versions.</p>
1184
1184
  * @public
1185
1185
  */
1186
- ResourceLifecycleConfig?: ApplicationResourceLifecycleConfig;
1186
+ ResourceLifecycleConfig?: ApplicationResourceLifecycleConfig | undefined;
1187
1187
  /**
1188
1188
  * <p>Specifies the tags applied to the application.</p>
1189
1189
  * <p>Elastic Beanstalk applies these tags only to the application. Environments that you create in the
1190
1190
  * application don't inherit the tags.</p>
1191
1191
  * @public
1192
1192
  */
1193
- Tags?: Tag[];
1193
+ Tags?: Tag[] | undefined;
1194
1194
  }
1195
1195
  /**
1196
1196
  * <p>The specified account has reached its limit of applications.</p>
@@ -1243,7 +1243,7 @@ export interface BuildConfiguration {
1243
1243
  * </p>
1244
1244
  * @public
1245
1245
  */
1246
- ArtifactName?: string;
1246
+ ArtifactName?: string | undefined;
1247
1247
  /**
1248
1248
  * <p>The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that enables AWS CodeBuild to interact with dependent AWS services on behalf of the AWS account.</p>
1249
1249
  * @public
@@ -1270,7 +1270,7 @@ export interface BuildConfiguration {
1270
1270
  * </ul>
1271
1271
  * @public
1272
1272
  */
1273
- ComputeType?: ComputeType;
1273
+ ComputeType?: ComputeType | undefined;
1274
1274
  /**
1275
1275
  * <p>The ID of the Docker image to use for this build project.</p>
1276
1276
  * @public
@@ -1280,7 +1280,7 @@ export interface BuildConfiguration {
1280
1280
  * <p>How long in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait until timing out any related build that does not get marked as completed. The default is 60 minutes.</p>
1281
1281
  * @public
1282
1282
  */
1283
- TimeoutInMinutes?: number;
1283
+ TimeoutInMinutes?: number | undefined;
1284
1284
  }
1285
1285
  /**
1286
1286
  * <p></p>
@@ -1306,13 +1306,13 @@ export interface CreateApplicationVersionMessage {
1306
1306
  * <p>A description of this application version.</p>
1307
1307
  * @public
1308
1308
  */
1309
- Description?: string;
1309
+ Description?: string | undefined;
1310
1310
  /**
1311
1311
  * <p>Specify a commit in an AWS CodeCommit Git repository to use as the source code for the
1312
1312
  * application version.</p>
1313
1313
  * @public
1314
1314
  */
1315
- SourceBuildInformation?: SourceBuildInformation;
1315
+ SourceBuildInformation?: SourceBuildInformation | undefined;
1316
1316
  /**
1317
1317
  * <p>The Amazon S3 bucket and key that identify the location of the source bundle for this
1318
1318
  * version.</p>
@@ -1326,18 +1326,18 @@ export interface CreateApplicationVersionMessage {
1326
1326
  * application.</p>
1327
1327
  * @public
1328
1328
  */
1329
- SourceBundle?: S3Location;
1329
+ SourceBundle?: S3Location | undefined;
1330
1330
  /**
1331
1331
  * <p>Settings for an AWS CodeBuild build.</p>
1332
1332
  * @public
1333
1333
  */
1334
- BuildConfiguration?: BuildConfiguration;
1334
+ BuildConfiguration?: BuildConfiguration | undefined;
1335
1335
  /**
1336
1336
  * <p>Set to <code>true</code> to create an application with the specified name if it doesn't
1337
1337
  * already exist.</p>
1338
1338
  * @public
1339
1339
  */
1340
- AutoCreateApplication?: boolean;
1340
+ AutoCreateApplication?: boolean | undefined;
1341
1341
  /**
1342
1342
  * <p>Pre-processes and validates the environment manifest (<code>env.yaml</code>) and
1343
1343
  * configuration files (<code>*.config</code> files in the <code>.ebextensions</code> folder) in
@@ -1353,14 +1353,14 @@ export interface CreateApplicationVersionMessage {
1353
1353
  * </note>
1354
1354
  * @public
1355
1355
  */
1356
- Process?: boolean;
1356
+ Process?: boolean | undefined;
1357
1357
  /**
1358
1358
  * <p>Specifies the tags applied to the application version.</p>
1359
1359
  * <p>Elastic Beanstalk applies these tags only to the application version. Environments that use the
1360
1360
  * application version don't inherit the tags.</p>
1361
1361
  * @public
1362
1362
  */
1363
- Tags?: Tag[];
1363
+ Tags?: Tag[] | undefined;
1364
1364
  }
1365
1365
  /**
1366
1366
  * <p>The specified S3 bucket does not belong to the S3 region in which the service is
@@ -1422,22 +1422,22 @@ export interface ConfigurationOptionSetting {
1422
1422
  * <p>A unique resource name for the option setting. Use it for a time–based scaling configuration option.</p>
1423
1423
  * @public
1424
1424
  */
1425
- ResourceName?: string;
1425
+ ResourceName?: string | undefined;
1426
1426
  /**
1427
1427
  * <p>A unique namespace that identifies the option's associated AWS resource.</p>
1428
1428
  * @public
1429
1429
  */
1430
- Namespace?: string;
1430
+ Namespace?: string | undefined;
1431
1431
  /**
1432
1432
  * <p>The name of the configuration option.</p>
1433
1433
  * @public
1434
1434
  */
1435
- OptionName?: string;
1435
+ OptionName?: string | undefined;
1436
1436
  /**
1437
1437
  * <p>The current value for the configuration option.</p>
1438
1438
  * @public
1439
1439
  */
1440
- Value?: string;
1440
+ Value?: string | undefined;
1441
1441
  }
1442
1442
  /**
1443
1443
  * <p>Describes the settings for a configuration set.</p>
@@ -1448,34 +1448,34 @@ export interface ConfigurationSettingsDescription {
1448
1448
  * <p>The name of the solution stack this configuration set uses.</p>
1449
1449
  * @public
1450
1450
  */
1451
- SolutionStackName?: string;
1451
+ SolutionStackName?: string | undefined;
1452
1452
  /**
1453
1453
  * <p>The ARN of the platform version.</p>
1454
1454
  * @public
1455
1455
  */
1456
- PlatformArn?: string;
1456
+ PlatformArn?: string | undefined;
1457
1457
  /**
1458
1458
  * <p>The name of the application associated with this configuration set.</p>
1459
1459
  * @public
1460
1460
  */
1461
- ApplicationName?: string;
1461
+ ApplicationName?: string | undefined;
1462
1462
  /**
1463
1463
  * <p> If not <code>null</code>, the name of the configuration template for this
1464
1464
  * configuration set. </p>
1465
1465
  * @public
1466
1466
  */
1467
- TemplateName?: string;
1467
+ TemplateName?: string | undefined;
1468
1468
  /**
1469
1469
  * <p>Describes this configuration set.</p>
1470
1470
  * @public
1471
1471
  */
1472
- Description?: string;
1472
+ Description?: string | undefined;
1473
1473
  /**
1474
1474
  * <p> If not <code>null</code>, the name of the environment for this configuration set.
1475
1475
  * </p>
1476
1476
  * @public
1477
1477
  */
1478
- EnvironmentName?: string;
1478
+ EnvironmentName?: string | undefined;
1479
1479
  /**
1480
1480
  * <p> If this configuration set is associated with an environment, the
1481
1481
  * <code>DeploymentStatus</code> parameter indicates the deployment status of this
@@ -1504,23 +1504,23 @@ export interface ConfigurationSettingsDescription {
1504
1504
  * </ul>
1505
1505
  * @public
1506
1506
  */
1507
- DeploymentStatus?: ConfigurationDeploymentStatus;
1507
+ DeploymentStatus?: ConfigurationDeploymentStatus | undefined;
1508
1508
  /**
1509
1509
  * <p>The date (in UTC time) when this configuration set was created.</p>
1510
1510
  * @public
1511
1511
  */
1512
- DateCreated?: Date;
1512
+ DateCreated?: Date | undefined;
1513
1513
  /**
1514
1514
  * <p>The date (in UTC time) when this configuration set was last modified.</p>
1515
1515
  * @public
1516
1516
  */
1517
- DateUpdated?: Date;
1517
+ DateUpdated?: Date | undefined;
1518
1518
  /**
1519
1519
  * <p>A list of the configuration options and their values in this configuration
1520
1520
  * set.</p>
1521
1521
  * @public
1522
1522
  */
1523
- OptionSettings?: ConfigurationOptionSetting[];
1523
+ OptionSettings?: ConfigurationOptionSetting[] | undefined;
1524
1524
  }
1525
1525
  /**
1526
1526
  * <p>A specification for an environment configuration.</p>
@@ -1531,12 +1531,12 @@ export interface SourceConfiguration {
1531
1531
  * <p>The name of the application associated with the configuration.</p>
1532
1532
  * @public
1533
1533
  */
1534
- ApplicationName?: string;
1534
+ ApplicationName?: string | undefined;
1535
1535
  /**
1536
1536
  * <p>The name of the configuration template.</p>
1537
1537
  * @public
1538
1538
  */
1539
- TemplateName?: string;
1539
+ TemplateName?: string | undefined;
1540
1540
  }
1541
1541
  /**
1542
1542
  * <p>Request to create a configuration template.</p>
@@ -1571,7 +1571,7 @@ export interface CreateConfigurationTemplateMessage {
1571
1571
  * solution stacks.</p>
1572
1572
  * @public
1573
1573
  */
1574
- SolutionStackName?: string;
1574
+ SolutionStackName?: string | undefined;
1575
1575
  /**
1576
1576
  * <p>The Amazon Resource Name (ARN) of the custom platform. For more information, see <a href="https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/custom-platforms.html"> Custom
1577
1577
  * Platforms</a> in the <i>AWS Elastic Beanstalk Developer Guide</i>.</p>
@@ -1581,7 +1581,7 @@ export interface CreateConfigurationTemplateMessage {
1581
1581
  * </note>
1582
1582
  * @public
1583
1583
  */
1584
- PlatformArn?: string;
1584
+ PlatformArn?: string | undefined;
1585
1585
  /**
1586
1586
  * <p>An Elastic Beanstalk configuration template to base this one on. If specified, Elastic Beanstalk uses the configuration values from the specified
1587
1587
  * configuration template to create a new configuration.</p>
@@ -1595,7 +1595,7 @@ export interface CreateConfigurationTemplateMessage {
1595
1595
  * name.</p>
1596
1596
  * @public
1597
1597
  */
1598
- SourceConfiguration?: SourceConfiguration;
1598
+ SourceConfiguration?: SourceConfiguration | undefined;
1599
1599
  /**
1600
1600
  * <p>The ID of an environment whose settings you want to use to create the configuration
1601
1601
  * template. You must specify <code>EnvironmentId</code> if you don't specify
@@ -1603,12 +1603,12 @@ export interface CreateConfigurationTemplateMessage {
1603
1603
  * <code>SourceConfiguration</code>.</p>
1604
1604
  * @public
1605
1605
  */
1606
- EnvironmentId?: string;
1606
+ EnvironmentId?: string | undefined;
1607
1607
  /**
1608
1608
  * <p>An optional description for this configuration.</p>
1609
1609
  * @public
1610
1610
  */
1611
- Description?: string;
1611
+ Description?: string | undefined;
1612
1612
  /**
1613
1613
  * <p>Option values for the Elastic Beanstalk configuration, such as the instance type. If specified, these
1614
1614
  * values override the values obtained from the solution stack or the source configuration
@@ -1616,12 +1616,12 @@ export interface CreateConfigurationTemplateMessage {
1616
1616
  * <i>AWS Elastic Beanstalk Developer Guide</i>.</p>
1617
1617
  * @public
1618
1618
  */
1619
- OptionSettings?: ConfigurationOptionSetting[];
1619
+ OptionSettings?: ConfigurationOptionSetting[] | undefined;
1620
1620
  /**
1621
1621
  * <p>Specifies the tags applied to the configuration template.</p>
1622
1622
  * @public
1623
1623
  */
1624
- Tags?: Tag[];
1624
+ Tags?: Tag[] | undefined;
1625
1625
  }
1626
1626
  /**
1627
1627
  * <p>The specified account has reached its limit of Amazon S3 buckets.</p>
@@ -1656,17 +1656,17 @@ export interface OptionSpecification {
1656
1656
  * <p>A unique resource name for a time-based scaling configuration option.</p>
1657
1657
  * @public
1658
1658
  */
1659
- ResourceName?: string;
1659
+ ResourceName?: string | undefined;
1660
1660
  /**
1661
1661
  * <p>A unique namespace identifying the option's associated AWS resource.</p>
1662
1662
  * @public
1663
1663
  */
1664
- Namespace?: string;
1664
+ Namespace?: string | undefined;
1665
1665
  /**
1666
1666
  * <p>The name of the configuration option.</p>
1667
1667
  * @public
1668
1668
  */
1669
- OptionName?: string;
1669
+ OptionName?: string | undefined;
1670
1670
  }
1671
1671
  /**
1672
1672
  * <p></p>
@@ -1688,7 +1688,7 @@ export interface CreateEnvironmentMessage {
1688
1688
  * the CNAME, and therefore part of the visible URL for your application.</p>
1689
1689
  * @public
1690
1690
  */
1691
- EnvironmentName?: string;
1691
+ EnvironmentName?: string | undefined;
1692
1692
  /**
1693
1693
  * <p>The name of the group to which the target environment belongs. Specify a group name
1694
1694
  * only if the environment's name is specified in an environment manifest and not with the
@@ -1696,37 +1696,37 @@ export interface CreateEnvironmentMessage {
1696
1696
  * (env.yaml)</a> for details.</p>
1697
1697
  * @public
1698
1698
  */
1699
- GroupName?: string;
1699
+ GroupName?: string | undefined;
1700
1700
  /**
1701
1701
  * <p>Your description for this environment.</p>
1702
1702
  * @public
1703
1703
  */
1704
- Description?: string;
1704
+ Description?: string | undefined;
1705
1705
  /**
1706
1706
  * <p>If specified, the environment attempts to use this value as the prefix for the CNAME in
1707
1707
  * your Elastic Beanstalk environment URL. If not specified, the CNAME is generated automatically by
1708
1708
  * appending a random alphanumeric string to the environment name.</p>
1709
1709
  * @public
1710
1710
  */
1711
- CNAMEPrefix?: string;
1711
+ CNAMEPrefix?: string | undefined;
1712
1712
  /**
1713
1713
  * <p>Specifies the tier to use in creating this environment. The environment tier that you
1714
1714
  * choose determines whether Elastic Beanstalk provisions resources to support a web application that handles
1715
1715
  * HTTP(S) requests or a web application that handles background-processing tasks.</p>
1716
1716
  * @public
1717
1717
  */
1718
- Tier?: EnvironmentTier;
1718
+ Tier?: EnvironmentTier | undefined;
1719
1719
  /**
1720
1720
  * <p>Specifies the tags applied to resources in the environment.</p>
1721
1721
  * @public
1722
1722
  */
1723
- Tags?: Tag[];
1723
+ Tags?: Tag[] | undefined;
1724
1724
  /**
1725
1725
  * <p>The name of the application version to deploy.</p>
1726
1726
  * <p>Default: If not specified, Elastic Beanstalk attempts to deploy the sample application.</p>
1727
1727
  * @public
1728
1728
  */
1729
- VersionLabel?: string;
1729
+ VersionLabel?: string | undefined;
1730
1730
  /**
1731
1731
  * <p>The name of the Elastic Beanstalk configuration template to use with the environment.</p>
1732
1732
  * <note>
@@ -1735,7 +1735,7 @@ export interface CreateEnvironmentMessage {
1735
1735
  * </note>
1736
1736
  * @public
1737
1737
  */
1738
- TemplateName?: string;
1738
+ TemplateName?: string | undefined;
1739
1739
  /**
1740
1740
  * <p>The name of an Elastic Beanstalk solution stack (platform version) to use with the environment. If
1741
1741
  * specified, Elastic Beanstalk sets the configuration values to the default values associated with the
@@ -1747,7 +1747,7 @@ export interface CreateEnvironmentMessage {
1747
1747
  * </note>
1748
1748
  * @public
1749
1749
  */
1750
- SolutionStackName?: string;
1750
+ SolutionStackName?: string | undefined;
1751
1751
  /**
1752
1752
  * <p>The Amazon Resource Name (ARN) of the custom platform to use with the environment. For
1753
1753
  * more information, see <a href="https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/custom-platforms.html">Custom Platforms</a> in the
@@ -1758,20 +1758,20 @@ export interface CreateEnvironmentMessage {
1758
1758
  * </note>
1759
1759
  * @public
1760
1760
  */
1761
- PlatformArn?: string;
1761
+ PlatformArn?: string | undefined;
1762
1762
  /**
1763
1763
  * <p>If specified, AWS Elastic Beanstalk sets the specified configuration options to the
1764
1764
  * requested value in the configuration set for the new environment. These override the values
1765
1765
  * obtained from the solution stack or the configuration template.</p>
1766
1766
  * @public
1767
1767
  */
1768
- OptionSettings?: ConfigurationOptionSetting[];
1768
+ OptionSettings?: ConfigurationOptionSetting[] | undefined;
1769
1769
  /**
1770
1770
  * <p>A list of custom user-defined configuration options to remove from the configuration
1771
1771
  * set for this new environment.</p>
1772
1772
  * @public
1773
1773
  */
1774
- OptionsToRemove?: OptionSpecification[];
1774
+ OptionsToRemove?: OptionSpecification[] | undefined;
1775
1775
  /**
1776
1776
  * <p>The Amazon Resource Name (ARN) of an existing IAM role to be used as the environment's
1777
1777
  * operations role. If specified, Elastic Beanstalk uses the operations role for permissions to downstream
@@ -1781,7 +1781,7 @@ export interface CreateEnvironmentMessage {
1781
1781
  * <i>AWS Elastic Beanstalk Developer Guide</i>.</p>
1782
1782
  * @public
1783
1783
  */
1784
- OperationsRole?: string;
1784
+ OperationsRole?: string | undefined;
1785
1785
  }
1786
1786
  /**
1787
1787
  * <p>Request to create a new platform version.</p>
@@ -1807,19 +1807,19 @@ export interface CreatePlatformVersionRequest {
1807
1807
  * <p>The name of the builder environment.</p>
1808
1808
  * @public
1809
1809
  */
1810
- EnvironmentName?: string;
1810
+ EnvironmentName?: string | undefined;
1811
1811
  /**
1812
1812
  * <p>The configuration option settings to apply to the builder environment.</p>
1813
1813
  * @public
1814
1814
  */
1815
- OptionSettings?: ConfigurationOptionSetting[];
1815
+ OptionSettings?: ConfigurationOptionSetting[] | undefined;
1816
1816
  /**
1817
1817
  * <p>Specifies the tags applied to the new platform version.</p>
1818
1818
  * <p>Elastic Beanstalk applies these tags only to the platform version. Environments that you create using
1819
1819
  * the platform version don't inherit the tags.</p>
1820
1820
  * @public
1821
1821
  */
1822
- Tags?: Tag[];
1822
+ Tags?: Tag[] | undefined;
1823
1823
  }
1824
1824
  /**
1825
1825
  * <p>The builder used to build the custom platform.</p>
@@ -1830,7 +1830,7 @@ export interface Builder {
1830
1830
  * <p>The ARN of the builder.</p>
1831
1831
  * @public
1832
1832
  */
1833
- ARN?: string;
1833
+ ARN?: string | undefined;
1834
1834
  }
1835
1835
  /**
1836
1836
  * @public
@@ -1856,43 +1856,43 @@ export interface PlatformSummary {
1856
1856
  * <p>The ARN of the platform version.</p>
1857
1857
  * @public
1858
1858
  */
1859
- PlatformArn?: string;
1859
+ PlatformArn?: string | undefined;
1860
1860
  /**
1861
1861
  * <p>The AWS account ID of the person who created the platform version.</p>
1862
1862
  * @public
1863
1863
  */
1864
- PlatformOwner?: string;
1864
+ PlatformOwner?: string | undefined;
1865
1865
  /**
1866
1866
  * <p>The status of the platform version. You can create an environment from the platform
1867
1867
  * version once it is ready.</p>
1868
1868
  * @public
1869
1869
  */
1870
- PlatformStatus?: PlatformStatus;
1870
+ PlatformStatus?: PlatformStatus | undefined;
1871
1871
  /**
1872
1872
  * <p>The category of platform version.</p>
1873
1873
  * @public
1874
1874
  */
1875
- PlatformCategory?: string;
1875
+ PlatformCategory?: string | undefined;
1876
1876
  /**
1877
1877
  * <p>The operating system used by the platform version.</p>
1878
1878
  * @public
1879
1879
  */
1880
- OperatingSystemName?: string;
1880
+ OperatingSystemName?: string | undefined;
1881
1881
  /**
1882
1882
  * <p>The version of the operating system used by the platform version.</p>
1883
1883
  * @public
1884
1884
  */
1885
- OperatingSystemVersion?: string;
1885
+ OperatingSystemVersion?: string | undefined;
1886
1886
  /**
1887
1887
  * <p>The tiers in which the platform version runs.</p>
1888
1888
  * @public
1889
1889
  */
1890
- SupportedTierList?: string[];
1890
+ SupportedTierList?: string[] | undefined;
1891
1891
  /**
1892
1892
  * <p>The additions associated with the platform version.</p>
1893
1893
  * @public
1894
1894
  */
1895
- SupportedAddonList?: string[];
1895
+ SupportedAddonList?: string[] | undefined;
1896
1896
  /**
1897
1897
  * <p>The state of the platform version in its lifecycle.</p>
1898
1898
  * <p>Possible values: <code>recommended</code> | empty</p>
@@ -1900,17 +1900,17 @@ export interface PlatformSummary {
1900
1900
  * one for its branch.</p>
1901
1901
  * @public
1902
1902
  */
1903
- PlatformLifecycleState?: string;
1903
+ PlatformLifecycleState?: string | undefined;
1904
1904
  /**
1905
1905
  * <p>The version string of the platform version.</p>
1906
1906
  * @public
1907
1907
  */
1908
- PlatformVersion?: string;
1908
+ PlatformVersion?: string | undefined;
1909
1909
  /**
1910
1910
  * <p>The platform branch to which the platform version belongs.</p>
1911
1911
  * @public
1912
1912
  */
1913
- PlatformBranchName?: string;
1913
+ PlatformBranchName?: string | undefined;
1914
1914
  /**
1915
1915
  * <p>The state of the platform version's branch in its lifecycle.</p>
1916
1916
  * <p>Possible values: <code>beta</code> | <code>supported</code> | <code>deprecated</code> |
@@ -1918,7 +1918,7 @@ export interface PlatformSummary {
1918
1918
  * </p>
1919
1919
  * @public
1920
1920
  */
1921
- PlatformBranchLifecycleState?: string;
1921
+ PlatformBranchLifecycleState?: string | undefined;
1922
1922
  }
1923
1923
  /**
1924
1924
  * @public
@@ -1928,12 +1928,12 @@ export interface CreatePlatformVersionResult {
1928
1928
  * <p>Detailed information about the new version of the custom platform.</p>
1929
1929
  * @public
1930
1930
  */
1931
- PlatformSummary?: PlatformSummary;
1931
+ PlatformSummary?: PlatformSummary | undefined;
1932
1932
  /**
1933
1933
  * <p>The builder used to create the custom platform.</p>
1934
1934
  * @public
1935
1935
  */
1936
- Builder?: Builder;
1936
+ Builder?: Builder | undefined;
1937
1937
  }
1938
1938
  /**
1939
1939
  * <p>You have exceeded the maximum number of allowed platforms associated with the account.</p>
@@ -1956,7 +1956,7 @@ export interface CreateStorageLocationResultMessage {
1956
1956
  * <p>The name of the Amazon S3 bucket created.</p>
1957
1957
  * @public
1958
1958
  */
1959
- S3Bucket?: string;
1959
+ S3Bucket?: string | undefined;
1960
1960
  }
1961
1961
  /**
1962
1962
  * <p>The specified account does not have a subscription to Amazon S3.</p>
@@ -1985,7 +1985,7 @@ export interface DeleteApplicationMessage {
1985
1985
  * application.</p>
1986
1986
  * @public
1987
1987
  */
1988
- TerminateEnvByForce?: boolean;
1988
+ TerminateEnvByForce?: boolean | undefined;
1989
1989
  }
1990
1990
  /**
1991
1991
  * <p>Unable to perform the specified operation because another operation that effects an
@@ -2021,7 +2021,7 @@ export interface DeleteApplicationVersionMessage {
2021
2021
  * bundle remains in Amazon S3.</p>
2022
2022
  * @public
2023
2023
  */
2024
- DeleteSourceBundle?: boolean;
2024
+ DeleteSourceBundle?: boolean | undefined;
2025
2025
  }
2026
2026
  /**
2027
2027
  * <p>Unable to delete the Amazon S3 source bundle associated with the application version.
@@ -2076,7 +2076,7 @@ export interface DeletePlatformVersionRequest {
2076
2076
  * <p>The ARN of the version of the custom platform.</p>
2077
2077
  * @public
2078
2078
  */
2079
- PlatformArn?: string;
2079
+ PlatformArn?: string | undefined;
2080
2080
  }
2081
2081
  /**
2082
2082
  * @public
@@ -2086,7 +2086,7 @@ export interface DeletePlatformVersionResult {
2086
2086
  * <p>Detailed information about the version of the custom platform.</p>
2087
2087
  * @public
2088
2088
  */
2089
- PlatformSummary?: PlatformSummary;
2089
+ PlatformSummary?: PlatformSummary | undefined;
2090
2090
  }
2091
2091
  /**
2092
2092
  * <p>You cannot delete the platform version because there are still environments running on it.</p>
@@ -2111,7 +2111,7 @@ export interface ResourceQuota {
2111
2111
  * use.</p>
2112
2112
  * @public
2113
2113
  */
2114
- Maximum?: number;
2114
+ Maximum?: number | undefined;
2115
2115
  }
2116
2116
  /**
2117
2117
  * <p>A set of per-resource AWS Elastic Beanstalk quotas associated with an AWS account. They reflect
@@ -2123,27 +2123,27 @@ export interface ResourceQuotas {
2123
2123
  * <p>The quota for applications in the AWS account.</p>
2124
2124
  * @public
2125
2125
  */
2126
- ApplicationQuota?: ResourceQuota;
2126
+ ApplicationQuota?: ResourceQuota | undefined;
2127
2127
  /**
2128
2128
  * <p>The quota for application versions in the AWS account.</p>
2129
2129
  * @public
2130
2130
  */
2131
- ApplicationVersionQuota?: ResourceQuota;
2131
+ ApplicationVersionQuota?: ResourceQuota | undefined;
2132
2132
  /**
2133
2133
  * <p>The quota for environments in the AWS account.</p>
2134
2134
  * @public
2135
2135
  */
2136
- EnvironmentQuota?: ResourceQuota;
2136
+ EnvironmentQuota?: ResourceQuota | undefined;
2137
2137
  /**
2138
2138
  * <p>The quota for configuration templates in the AWS account.</p>
2139
2139
  * @public
2140
2140
  */
2141
- ConfigurationTemplateQuota?: ResourceQuota;
2141
+ ConfigurationTemplateQuota?: ResourceQuota | undefined;
2142
2142
  /**
2143
2143
  * <p>The quota for custom platforms in the AWS account.</p>
2144
2144
  * @public
2145
2145
  */
2146
- CustomPlatformQuota?: ResourceQuota;
2146
+ CustomPlatformQuota?: ResourceQuota | undefined;
2147
2147
  }
2148
2148
  /**
2149
2149
  * @public
@@ -2153,7 +2153,7 @@ export interface DescribeAccountAttributesResult {
2153
2153
  * <p>The Elastic Beanstalk resource quotas associated with the calling AWS account.</p>
2154
2154
  * @public
2155
2155
  */
2156
- ResourceQuotas?: ResourceQuotas;
2156
+ ResourceQuotas?: ResourceQuotas | undefined;
2157
2157
  }
2158
2158
  /**
2159
2159
  * <p>Request to describe one or more applications.</p>
@@ -2165,7 +2165,7 @@ export interface DescribeApplicationsMessage {
2165
2165
  * those with the specified names.</p>
2166
2166
  * @public
2167
2167
  */
2168
- ApplicationNames?: string[];
2168
+ ApplicationNames?: string[] | undefined;
2169
2169
  }
2170
2170
  /**
2171
2171
  * <p>Request to describe application versions.</p>
@@ -2177,12 +2177,12 @@ export interface DescribeApplicationVersionsMessage {
2177
2177
  * application.</p>
2178
2178
  * @public
2179
2179
  */
2180
- ApplicationName?: string;
2180
+ ApplicationName?: string | undefined;
2181
2181
  /**
2182
2182
  * <p>Specify a version label to show a specific application version.</p>
2183
2183
  * @public
2184
2184
  */
2185
- VersionLabels?: string[];
2185
+ VersionLabels?: string[] | undefined;
2186
2186
  /**
2187
2187
  * <p>For a paginated request. Specify a maximum number of application versions to include in
2188
2188
  * each response.</p>
@@ -2190,14 +2190,14 @@ export interface DescribeApplicationVersionsMessage {
2190
2190
  * retrieved in a single response.</p>
2191
2191
  * @public
2192
2192
  */
2193
- MaxRecords?: number;
2193
+ MaxRecords?: number | undefined;
2194
2194
  /**
2195
2195
  * <p>For a paginated request. Specify a token from a previous response page to retrieve the next response page. All other
2196
2196
  * parameter values must be identical to the ones specified in the initial request.</p>
2197
2197
  * <p>If no <code>NextToken</code> is specified, the first page is retrieved.</p>
2198
2198
  * @public
2199
2199
  */
2200
- NextToken?: string;
2200
+ NextToken?: string | undefined;
2201
2201
  }
2202
2202
  /**
2203
2203
  * <p>A regular expression representing a restriction on a string configuration option
@@ -2210,12 +2210,12 @@ export interface OptionRestrictionRegex {
2210
2210
  * restriction must match.</p>
2211
2211
  * @public
2212
2212
  */
2213
- Pattern?: string;
2213
+ Pattern?: string | undefined;
2214
2214
  /**
2215
2215
  * <p>A unique name representing this regular expression.</p>
2216
2216
  * @public
2217
2217
  */
2218
- Label?: string;
2218
+ Label?: string | undefined;
2219
2219
  }
2220
2220
  /**
2221
2221
  * @public
@@ -2238,17 +2238,17 @@ export interface ConfigurationOptionDescription {
2238
2238
  * <p>A unique namespace identifying the option's associated AWS resource.</p>
2239
2239
  * @public
2240
2240
  */
2241
- Namespace?: string;
2241
+ Namespace?: string | undefined;
2242
2242
  /**
2243
2243
  * <p>The name of the configuration option.</p>
2244
2244
  * @public
2245
2245
  */
2246
- Name?: string;
2246
+ Name?: string | undefined;
2247
2247
  /**
2248
2248
  * <p>The default value for this configuration option.</p>
2249
2249
  * @public
2250
2250
  */
2251
- DefaultValue?: string;
2251
+ DefaultValue?: string | undefined;
2252
2252
  /**
2253
2253
  * <p>An indication of which action is required if the value for this configuration option
2254
2254
  * changes:</p>
@@ -2273,7 +2273,7 @@ export interface ConfigurationOptionDescription {
2273
2273
  * </ul>
2274
2274
  * @public
2275
2275
  */
2276
- ChangeSeverity?: string;
2276
+ ChangeSeverity?: string | undefined;
2277
2277
  /**
2278
2278
  * <p>An indication of whether the user defined this configuration option:</p>
2279
2279
  * <ul>
@@ -2293,7 +2293,7 @@ export interface ConfigurationOptionDescription {
2293
2293
  * </p>
2294
2294
  * @public
2295
2295
  */
2296
- UserDefined?: boolean;
2296
+ UserDefined?: boolean | undefined;
2297
2297
  /**
2298
2298
  * <p>An indication of which type of values this option has and whether it is allowable to
2299
2299
  * select one or more than one of the possible values:</p>
@@ -2322,37 +2322,37 @@ export interface ConfigurationOptionDescription {
2322
2322
  * </ul>
2323
2323
  * @public
2324
2324
  */
2325
- ValueType?: ConfigurationOptionValueType;
2325
+ ValueType?: ConfigurationOptionValueType | undefined;
2326
2326
  /**
2327
2327
  * <p>If specified, values for the configuration option are selected from this
2328
2328
  * list.</p>
2329
2329
  * @public
2330
2330
  */
2331
- ValueOptions?: string[];
2331
+ ValueOptions?: string[] | undefined;
2332
2332
  /**
2333
2333
  * <p>If specified, the configuration option must be a numeric value greater than this
2334
2334
  * value.</p>
2335
2335
  * @public
2336
2336
  */
2337
- MinValue?: number;
2337
+ MinValue?: number | undefined;
2338
2338
  /**
2339
2339
  * <p>If specified, the configuration option must be a numeric value less than this
2340
2340
  * value.</p>
2341
2341
  * @public
2342
2342
  */
2343
- MaxValue?: number;
2343
+ MaxValue?: number | undefined;
2344
2344
  /**
2345
2345
  * <p>If specified, the configuration option must be a string value no longer than this
2346
2346
  * value.</p>
2347
2347
  * @public
2348
2348
  */
2349
- MaxLength?: number;
2349
+ MaxLength?: number | undefined;
2350
2350
  /**
2351
2351
  * <p>If specified, the configuration option must be a string value that satisfies this
2352
2352
  * regular expression.</p>
2353
2353
  * @public
2354
2354
  */
2355
- Regex?: OptionRestrictionRegex;
2355
+ Regex?: OptionRestrictionRegex | undefined;
2356
2356
  }
2357
2357
  /**
2358
2358
  * <p>Describes the settings for a specified configuration set.</p>
@@ -2363,17 +2363,17 @@ export interface ConfigurationOptionsDescription {
2363
2363
  * <p>The name of the solution stack these configuration options belong to.</p>
2364
2364
  * @public
2365
2365
  */
2366
- SolutionStackName?: string;
2366
+ SolutionStackName?: string | undefined;
2367
2367
  /**
2368
2368
  * <p>The ARN of the platform version.</p>
2369
2369
  * @public
2370
2370
  */
2371
- PlatformArn?: string;
2371
+ PlatformArn?: string | undefined;
2372
2372
  /**
2373
2373
  * <p> A list of <a>ConfigurationOptionDescription</a>. </p>
2374
2374
  * @public
2375
2375
  */
2376
- Options?: ConfigurationOptionDescription[];
2376
+ Options?: ConfigurationOptionDescription[] | undefined;
2377
2377
  }
2378
2378
  /**
2379
2379
  * <p>Result message containing a list of application version descriptions.</p>
@@ -2386,34 +2386,34 @@ export interface DescribeConfigurationOptionsMessage {
2386
2386
  * configuration template or environment.</p>
2387
2387
  * @public
2388
2388
  */
2389
- ApplicationName?: string;
2389
+ ApplicationName?: string | undefined;
2390
2390
  /**
2391
2391
  * <p>The name of the configuration template whose configuration options you want to
2392
2392
  * describe.</p>
2393
2393
  * @public
2394
2394
  */
2395
- TemplateName?: string;
2395
+ TemplateName?: string | undefined;
2396
2396
  /**
2397
2397
  * <p>The name of the environment whose configuration options you want to describe.</p>
2398
2398
  * @public
2399
2399
  */
2400
- EnvironmentName?: string;
2400
+ EnvironmentName?: string | undefined;
2401
2401
  /**
2402
2402
  * <p>The name of the solution stack whose configuration options you want to
2403
2403
  * describe.</p>
2404
2404
  * @public
2405
2405
  */
2406
- SolutionStackName?: string;
2406
+ SolutionStackName?: string | undefined;
2407
2407
  /**
2408
2408
  * <p>The ARN of the custom platform.</p>
2409
2409
  * @public
2410
2410
  */
2411
- PlatformArn?: string;
2411
+ PlatformArn?: string | undefined;
2412
2412
  /**
2413
2413
  * <p>If specified, restricts the descriptions to only the specified options.</p>
2414
2414
  * @public
2415
2415
  */
2416
- Options?: OptionSpecification[];
2416
+ Options?: OptionSpecification[] | undefined;
2417
2417
  }
2418
2418
  /**
2419
2419
  * <p>The results from a request to change the configuration settings of an
@@ -2425,7 +2425,7 @@ export interface ConfigurationSettingsDescriptions {
2425
2425
  * <p> A list of <a>ConfigurationSettingsDescription</a>. </p>
2426
2426
  * @public
2427
2427
  */
2428
- ConfigurationSettings?: ConfigurationSettingsDescription[];
2428
+ ConfigurationSettings?: ConfigurationSettingsDescription[] | undefined;
2429
2429
  }
2430
2430
  /**
2431
2431
  * <p>Result message containing all of the configuration settings for a specified solution
@@ -2446,7 +2446,7 @@ export interface DescribeConfigurationSettingsMessage {
2446
2446
  * Beanstalk returns a <code>MissingRequiredParameter</code> error. </p>
2447
2447
  * @public
2448
2448
  */
2449
- TemplateName?: string;
2449
+ TemplateName?: string | undefined;
2450
2450
  /**
2451
2451
  * <p>The name of the environment to describe.</p>
2452
2452
  * <p> Condition: You must specify either this or a TemplateName, but not both. If you
@@ -2455,7 +2455,7 @@ export interface DescribeConfigurationSettingsMessage {
2455
2455
  * <code>MissingRequiredParameter</code> error. </p>
2456
2456
  * @public
2457
2457
  */
2458
- EnvironmentName?: string;
2458
+ EnvironmentName?: string | undefined;
2459
2459
  }
2460
2460
  /**
2461
2461
  * @public
@@ -2485,20 +2485,20 @@ export interface DescribeEnvironmentHealthRequest {
2485
2485
  * <p>You must specify either this or an EnvironmentName, or both.</p>
2486
2486
  * @public
2487
2487
  */
2488
- EnvironmentName?: string;
2488
+ EnvironmentName?: string | undefined;
2489
2489
  /**
2490
2490
  * <p>Specify the environment by ID.</p>
2491
2491
  * <p>You must specify either this or an EnvironmentName, or both.</p>
2492
2492
  * @public
2493
2493
  */
2494
- EnvironmentId?: string;
2494
+ EnvironmentId?: string | undefined;
2495
2495
  /**
2496
2496
  * <p>Specify the response elements to return. To retrieve all attributes, set to
2497
2497
  * <code>All</code>. If no attribute names are specified, returns the name of the
2498
2498
  * environment.</p>
2499
2499
  * @public
2500
2500
  */
2501
- AttributeNames?: EnvironmentHealthAttribute[];
2501
+ AttributeNames?: EnvironmentHealthAttribute[] | undefined;
2502
2502
  }
2503
2503
  /**
2504
2504
  * <p>Represents summary information about the health of an instance. For more information,
@@ -2512,55 +2512,55 @@ export interface InstanceHealthSummary {
2512
2512
  * reporting no data on an instance.</p>
2513
2513
  * @public
2514
2514
  */
2515
- NoData?: number;
2515
+ NoData?: number | undefined;
2516
2516
  /**
2517
2517
  * <p>
2518
2518
  * <b>Grey.</b> AWS Elastic Beanstalk and the health agent are
2519
2519
  * reporting an insufficient amount of data on an instance.</p>
2520
2520
  * @public
2521
2521
  */
2522
- Unknown?: number;
2522
+ Unknown?: number | undefined;
2523
2523
  /**
2524
2524
  * <p>
2525
2525
  * <b>Grey.</b> An operation is in progress on an instance within the
2526
2526
  * command timeout.</p>
2527
2527
  * @public
2528
2528
  */
2529
- Pending?: number;
2529
+ Pending?: number | undefined;
2530
2530
  /**
2531
2531
  * <p>
2532
2532
  * <b>Green.</b> An instance is passing health checks and the health
2533
2533
  * agent is not reporting any problems.</p>
2534
2534
  * @public
2535
2535
  */
2536
- Ok?: number;
2536
+ Ok?: number | undefined;
2537
2537
  /**
2538
2538
  * <p>
2539
2539
  * <b>Green.</b> An operation is in progress on an instance.</p>
2540
2540
  * @public
2541
2541
  */
2542
- Info?: number;
2542
+ Info?: number | undefined;
2543
2543
  /**
2544
2544
  * <p>
2545
2545
  * <b>Yellow.</b> The health agent is reporting a moderate number of
2546
2546
  * request failures or other issues for an instance or environment.</p>
2547
2547
  * @public
2548
2548
  */
2549
- Warning?: number;
2549
+ Warning?: number | undefined;
2550
2550
  /**
2551
2551
  * <p>
2552
2552
  * <b>Red.</b> The health agent is reporting a high number of request
2553
2553
  * failures or other issues for an instance or environment.</p>
2554
2554
  * @public
2555
2555
  */
2556
- Degraded?: number;
2556
+ Degraded?: number | undefined;
2557
2557
  /**
2558
2558
  * <p>
2559
2559
  * <b>Red.</b> The health agent is reporting a very high number of
2560
2560
  * request failures or other issues for an instance or environment.</p>
2561
2561
  * @public
2562
2562
  */
2563
- Severe?: number;
2563
+ Severe?: number | undefined;
2564
2564
  }
2565
2565
  /**
2566
2566
  * <p>Health details for an AWS Elastic Beanstalk environment.</p>
@@ -2571,46 +2571,46 @@ export interface DescribeEnvironmentHealthResult {
2571
2571
  * <p>The environment's name.</p>
2572
2572
  * @public
2573
2573
  */
2574
- EnvironmentName?: string;
2574
+ EnvironmentName?: string | undefined;
2575
2575
  /**
2576
2576
  * <p>The <a href="https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html">health status</a> of the
2577
2577
  * environment. For example, <code>Ok</code>.</p>
2578
2578
  * @public
2579
2579
  */
2580
- HealthStatus?: string;
2580
+ HealthStatus?: string | undefined;
2581
2581
  /**
2582
2582
  * <p>The environment's operational status. <code>Ready</code>, <code>Launching</code>,
2583
2583
  * <code>Updating</code>, <code>Terminating</code>, or <code>Terminated</code>.</p>
2584
2584
  * @public
2585
2585
  */
2586
- Status?: EnvironmentHealth;
2586
+ Status?: EnvironmentHealth | undefined;
2587
2587
  /**
2588
2588
  * <p>The <a href="https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html">health color</a> of the
2589
2589
  * environment.</p>
2590
2590
  * @public
2591
2591
  */
2592
- Color?: string;
2592
+ Color?: string | undefined;
2593
2593
  /**
2594
2594
  * <p>Descriptions of the data that contributed to the environment's current health
2595
2595
  * status.</p>
2596
2596
  * @public
2597
2597
  */
2598
- Causes?: string[];
2598
+ Causes?: string[] | undefined;
2599
2599
  /**
2600
2600
  * <p>Application request metrics for the environment.</p>
2601
2601
  * @public
2602
2602
  */
2603
- ApplicationMetrics?: ApplicationMetrics;
2603
+ ApplicationMetrics?: ApplicationMetrics | undefined;
2604
2604
  /**
2605
2605
  * <p>Summary health information for the instances in the environment.</p>
2606
2606
  * @public
2607
2607
  */
2608
- InstancesHealth?: InstanceHealthSummary;
2608
+ InstancesHealth?: InstanceHealthSummary | undefined;
2609
2609
  /**
2610
2610
  * <p>The date and time that the health information was retrieved.</p>
2611
2611
  * @public
2612
2612
  */
2613
- RefreshedAt?: Date;
2613
+ RefreshedAt?: Date | undefined;
2614
2614
  }
2615
2615
  /**
2616
2616
  * <p>One or more input parameters is not valid. Please correct the input parameters and try
@@ -2634,22 +2634,22 @@ export interface DescribeEnvironmentManagedActionHistoryRequest {
2634
2634
  * <p>The environment ID of the target environment.</p>
2635
2635
  * @public
2636
2636
  */
2637
- EnvironmentId?: string;
2637
+ EnvironmentId?: string | undefined;
2638
2638
  /**
2639
2639
  * <p>The name of the target environment.</p>
2640
2640
  * @public
2641
2641
  */
2642
- EnvironmentName?: string;
2642
+ EnvironmentName?: string | undefined;
2643
2643
  /**
2644
2644
  * <p>The pagination token returned by a previous request.</p>
2645
2645
  * @public
2646
2646
  */
2647
- NextToken?: string;
2647
+ NextToken?: string | undefined;
2648
2648
  /**
2649
2649
  * <p>The maximum number of items to return for a single request.</p>
2650
2650
  * @public
2651
2651
  */
2652
- MaxItems?: number;
2652
+ MaxItems?: number | undefined;
2653
2653
  }
2654
2654
  /**
2655
2655
  * @public
@@ -2677,42 +2677,42 @@ export interface ManagedActionHistoryItem {
2677
2677
  * <p>A unique identifier for the managed action.</p>
2678
2678
  * @public
2679
2679
  */
2680
- ActionId?: string;
2680
+ ActionId?: string | undefined;
2681
2681
  /**
2682
2682
  * <p>The type of the managed action.</p>
2683
2683
  * @public
2684
2684
  */
2685
- ActionType?: ActionType;
2685
+ ActionType?: ActionType | undefined;
2686
2686
  /**
2687
2687
  * <p>A description of the managed action.</p>
2688
2688
  * @public
2689
2689
  */
2690
- ActionDescription?: string;
2690
+ ActionDescription?: string | undefined;
2691
2691
  /**
2692
2692
  * <p>If the action failed, the type of failure.</p>
2693
2693
  * @public
2694
2694
  */
2695
- FailureType?: FailureType;
2695
+ FailureType?: FailureType | undefined;
2696
2696
  /**
2697
2697
  * <p>The status of the action.</p>
2698
2698
  * @public
2699
2699
  */
2700
- Status?: ActionHistoryStatus;
2700
+ Status?: ActionHistoryStatus | undefined;
2701
2701
  /**
2702
2702
  * <p>If the action failed, a description of the failure.</p>
2703
2703
  * @public
2704
2704
  */
2705
- FailureDescription?: string;
2705
+ FailureDescription?: string | undefined;
2706
2706
  /**
2707
2707
  * <p>The date and time that the action started executing.</p>
2708
2708
  * @public
2709
2709
  */
2710
- ExecutedTime?: Date;
2710
+ ExecutedTime?: Date | undefined;
2711
2711
  /**
2712
2712
  * <p>The date and time that the action finished executing.</p>
2713
2713
  * @public
2714
2714
  */
2715
- FinishedTime?: Date;
2715
+ FinishedTime?: Date | undefined;
2716
2716
  }
2717
2717
  /**
2718
2718
  * <p>A result message containing a list of completed and failed managed actions.</p>
@@ -2723,13 +2723,13 @@ export interface DescribeEnvironmentManagedActionHistoryResult {
2723
2723
  * <p>A list of completed and failed managed actions.</p>
2724
2724
  * @public
2725
2725
  */
2726
- ManagedActionHistoryItems?: ManagedActionHistoryItem[];
2726
+ ManagedActionHistoryItems?: ManagedActionHistoryItem[] | undefined;
2727
2727
  /**
2728
2728
  * <p>A pagination token that you pass to <a>DescribeEnvironmentManagedActionHistory</a> to get the next page of
2729
2729
  * results.</p>
2730
2730
  * @public
2731
2731
  */
2732
- NextToken?: string;
2732
+ NextToken?: string | undefined;
2733
2733
  }
2734
2734
  /**
2735
2735
  * <p>Request to list an environment's upcoming and in-progress managed actions.</p>
@@ -2740,17 +2740,17 @@ export interface DescribeEnvironmentManagedActionsRequest {
2740
2740
  * <p>The name of the target environment.</p>
2741
2741
  * @public
2742
2742
  */
2743
- EnvironmentName?: string;
2743
+ EnvironmentName?: string | undefined;
2744
2744
  /**
2745
2745
  * <p>The environment ID of the target environment.</p>
2746
2746
  * @public
2747
2747
  */
2748
- EnvironmentId?: string;
2748
+ EnvironmentId?: string | undefined;
2749
2749
  /**
2750
2750
  * <p>To show only actions with a particular status, specify a status.</p>
2751
2751
  * @public
2752
2752
  */
2753
- Status?: ActionStatus;
2753
+ Status?: ActionStatus | undefined;
2754
2754
  }
2755
2755
  /**
2756
2756
  * <p>The record of an upcoming or in-progress managed action.</p>
@@ -2761,29 +2761,29 @@ export interface ManagedAction {
2761
2761
  * <p>A unique identifier for the managed action.</p>
2762
2762
  * @public
2763
2763
  */
2764
- ActionId?: string;
2764
+ ActionId?: string | undefined;
2765
2765
  /**
2766
2766
  * <p>A description of the managed action.</p>
2767
2767
  * @public
2768
2768
  */
2769
- ActionDescription?: string;
2769
+ ActionDescription?: string | undefined;
2770
2770
  /**
2771
2771
  * <p>The type of managed action.</p>
2772
2772
  * @public
2773
2773
  */
2774
- ActionType?: ActionType;
2774
+ ActionType?: ActionType | undefined;
2775
2775
  /**
2776
2776
  * <p>The status of the managed action. If the action is <code>Scheduled</code>, you can
2777
2777
  * apply it immediately with <a>ApplyEnvironmentManagedAction</a>.</p>
2778
2778
  * @public
2779
2779
  */
2780
- Status?: ActionStatus;
2780
+ Status?: ActionStatus | undefined;
2781
2781
  /**
2782
2782
  * <p>The start time of the maintenance window in which the managed action will
2783
2783
  * execute.</p>
2784
2784
  * @public
2785
2785
  */
2786
- WindowStartTime?: Date;
2786
+ WindowStartTime?: Date | undefined;
2787
2787
  }
2788
2788
  /**
2789
2789
  * <p>The result message containing a list of managed actions.</p>
@@ -2794,7 +2794,7 @@ export interface DescribeEnvironmentManagedActionsResult {
2794
2794
  * <p>A list of upcoming and in-progress managed actions.</p>
2795
2795
  * @public
2796
2796
  */
2797
- ManagedActions?: ManagedAction[];
2797
+ ManagedActions?: ManagedAction[] | undefined;
2798
2798
  }
2799
2799
  /**
2800
2800
  * <p>Request to describe the resources in an environment.</p>
@@ -2808,7 +2808,7 @@ export interface DescribeEnvironmentResourcesMessage {
2808
2808
  * </p>
2809
2809
  * @public
2810
2810
  */
2811
- EnvironmentId?: string;
2811
+ EnvironmentId?: string | undefined;
2812
2812
  /**
2813
2813
  * <p>The name of the environment to retrieve AWS resource usage data.</p>
2814
2814
  * <p> Condition: You must specify either this or an EnvironmentId, or both. If you do not
@@ -2816,7 +2816,7 @@ export interface DescribeEnvironmentResourcesMessage {
2816
2816
  * </p>
2817
2817
  * @public
2818
2818
  */
2819
- EnvironmentName?: string;
2819
+ EnvironmentName?: string | undefined;
2820
2820
  }
2821
2821
  /**
2822
2822
  * <p>The description of an Amazon EC2 instance.</p>
@@ -2827,7 +2827,7 @@ export interface Instance {
2827
2827
  * <p>The ID of the Amazon EC2 instance.</p>
2828
2828
  * @public
2829
2829
  */
2830
- Id?: string;
2830
+ Id?: string | undefined;
2831
2831
  }
2832
2832
  /**
2833
2833
  * <p>Describes an Auto Scaling launch configuration.</p>
@@ -2838,7 +2838,7 @@ export interface LaunchConfiguration {
2838
2838
  * <p>The name of the launch configuration.</p>
2839
2839
  * @public
2840
2840
  */
2841
- Name?: string;
2841
+ Name?: string | undefined;
2842
2842
  }
2843
2843
  /**
2844
2844
  * <p>Describes an Amazon EC2 launch template.</p>
@@ -2849,7 +2849,7 @@ export interface LaunchTemplate {
2849
2849
  * <p>The ID of the launch template.</p>
2850
2850
  * @public
2851
2851
  */
2852
- Id?: string;
2852
+ Id?: string | undefined;
2853
2853
  }
2854
2854
  /**
2855
2855
  * <p>Describes a LoadBalancer.</p>
@@ -2860,7 +2860,7 @@ export interface LoadBalancer {
2860
2860
  * <p>The name of the LoadBalancer.</p>
2861
2861
  * @public
2862
2862
  */
2863
- Name?: string;
2863
+ Name?: string | undefined;
2864
2864
  }
2865
2865
  /**
2866
2866
  * <p>Describes a queue.</p>
@@ -2871,12 +2871,12 @@ export interface Queue {
2871
2871
  * <p>The name of the queue.</p>
2872
2872
  * @public
2873
2873
  */
2874
- Name?: string;
2874
+ Name?: string | undefined;
2875
2875
  /**
2876
2876
  * <p>The URL of the queue.</p>
2877
2877
  * @public
2878
2878
  */
2879
- URL?: string;
2879
+ URL?: string | undefined;
2880
2880
  }
2881
2881
  /**
2882
2882
  * <p>Describes a trigger.</p>
@@ -2887,7 +2887,7 @@ export interface Trigger {
2887
2887
  * <p>The name of the trigger.</p>
2888
2888
  * @public
2889
2889
  */
2890
- Name?: string;
2890
+ Name?: string | undefined;
2891
2891
  }
2892
2892
  /**
2893
2893
  * <p>Describes the AWS resources in use by this environment. This data is live.</p>
@@ -2898,42 +2898,42 @@ export interface EnvironmentResourceDescription {
2898
2898
  * <p>The name of the environment.</p>
2899
2899
  * @public
2900
2900
  */
2901
- EnvironmentName?: string;
2901
+ EnvironmentName?: string | undefined;
2902
2902
  /**
2903
2903
  * <p> The <code>AutoScalingGroups</code> used by this environment. </p>
2904
2904
  * @public
2905
2905
  */
2906
- AutoScalingGroups?: AutoScalingGroup[];
2906
+ AutoScalingGroups?: AutoScalingGroup[] | undefined;
2907
2907
  /**
2908
2908
  * <p>The Amazon EC2 instances used by this environment.</p>
2909
2909
  * @public
2910
2910
  */
2911
- Instances?: Instance[];
2911
+ Instances?: Instance[] | undefined;
2912
2912
  /**
2913
2913
  * <p>The Auto Scaling launch configurations in use by this environment.</p>
2914
2914
  * @public
2915
2915
  */
2916
- LaunchConfigurations?: LaunchConfiguration[];
2916
+ LaunchConfigurations?: LaunchConfiguration[] | undefined;
2917
2917
  /**
2918
2918
  * <p>The Amazon EC2 launch templates in use by this environment.</p>
2919
2919
  * @public
2920
2920
  */
2921
- LaunchTemplates?: LaunchTemplate[];
2921
+ LaunchTemplates?: LaunchTemplate[] | undefined;
2922
2922
  /**
2923
2923
  * <p>The LoadBalancers in use by this environment.</p>
2924
2924
  * @public
2925
2925
  */
2926
- LoadBalancers?: LoadBalancer[];
2926
+ LoadBalancers?: LoadBalancer[] | undefined;
2927
2927
  /**
2928
2928
  * <p>The <code>AutoScaling</code> triggers in use by this environment. </p>
2929
2929
  * @public
2930
2930
  */
2931
- Triggers?: Trigger[];
2931
+ Triggers?: Trigger[] | undefined;
2932
2932
  /**
2933
2933
  * <p>The queues used by this environment.</p>
2934
2934
  * @public
2935
2935
  */
2936
- Queues?: Queue[];
2936
+ Queues?: Queue[] | undefined;
2937
2937
  }
2938
2938
  /**
2939
2939
  * <p>Result message containing a list of environment resource descriptions.</p>
@@ -2944,7 +2944,7 @@ export interface EnvironmentResourceDescriptionsMessage {
2944
2944
  * <p> A list of <a>EnvironmentResourceDescription</a>. </p>
2945
2945
  * @public
2946
2946
  */
2947
- EnvironmentResources?: EnvironmentResourceDescription;
2947
+ EnvironmentResources?: EnvironmentResourceDescription | undefined;
2948
2948
  }
2949
2949
  /**
2950
2950
  * <p>Request to describe one or more environments.</p>
@@ -2956,25 +2956,25 @@ export interface DescribeEnvironmentsMessage {
2956
2956
  * those that are associated with this application.</p>
2957
2957
  * @public
2958
2958
  */
2959
- ApplicationName?: string;
2959
+ ApplicationName?: string | undefined;
2960
2960
  /**
2961
2961
  * <p>If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only
2962
2962
  * those that are associated with this application version.</p>
2963
2963
  * @public
2964
2964
  */
2965
- VersionLabel?: string;
2965
+ VersionLabel?: string | undefined;
2966
2966
  /**
2967
2967
  * <p>If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only
2968
2968
  * those that have the specified IDs.</p>
2969
2969
  * @public
2970
2970
  */
2971
- EnvironmentIds?: string[];
2971
+ EnvironmentIds?: string[] | undefined;
2972
2972
  /**
2973
2973
  * <p>If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only
2974
2974
  * those that have the specified names.</p>
2975
2975
  * @public
2976
2976
  */
2977
- EnvironmentNames?: string[];
2977
+ EnvironmentNames?: string[] | undefined;
2978
2978
  /**
2979
2979
  * <p>Indicates whether to include deleted environments:</p>
2980
2980
  * <p>
@@ -2984,13 +2984,13 @@ export interface DescribeEnvironmentsMessage {
2984
2984
  * <code>false</code>: Do not include deleted environments.</p>
2985
2985
  * @public
2986
2986
  */
2987
- IncludeDeleted?: boolean;
2987
+ IncludeDeleted?: boolean | undefined;
2988
2988
  /**
2989
2989
  * <p> If specified when <code>IncludeDeleted</code> is set to <code>true</code>, then
2990
2990
  * environments deleted after this date are displayed. </p>
2991
2991
  * @public
2992
2992
  */
2993
- IncludedDeletedBackTo?: Date;
2993
+ IncludedDeletedBackTo?: Date | undefined;
2994
2994
  /**
2995
2995
  * <p>For a paginated request. Specify a maximum number of environments to include in
2996
2996
  * each response.</p>
@@ -2998,14 +2998,14 @@ export interface DescribeEnvironmentsMessage {
2998
2998
  * retrieved in a single response.</p>
2999
2999
  * @public
3000
3000
  */
3001
- MaxRecords?: number;
3001
+ MaxRecords?: number | undefined;
3002
3002
  /**
3003
3003
  * <p>For a paginated request. Specify a token from a previous response page to retrieve the next response page. All other
3004
3004
  * parameter values must be identical to the ones specified in the initial request.</p>
3005
3005
  * <p>If no <code>NextToken</code> is specified, the first page is retrieved.</p>
3006
3006
  * @public
3007
3007
  */
3008
- NextToken?: string;
3008
+ NextToken?: string | undefined;
3009
3009
  }
3010
3010
  /**
3011
3011
  * @public
@@ -3033,72 +3033,72 @@ export interface DescribeEventsMessage {
3033
3033
  * those associated with this application.</p>
3034
3034
  * @public
3035
3035
  */
3036
- ApplicationName?: string;
3036
+ ApplicationName?: string | undefined;
3037
3037
  /**
3038
3038
  * <p>If specified, AWS Elastic Beanstalk restricts the returned descriptions to those
3039
3039
  * associated with this application version.</p>
3040
3040
  * @public
3041
3041
  */
3042
- VersionLabel?: string;
3042
+ VersionLabel?: string | undefined;
3043
3043
  /**
3044
3044
  * <p>If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that
3045
3045
  * are associated with this environment configuration.</p>
3046
3046
  * @public
3047
3047
  */
3048
- TemplateName?: string;
3048
+ TemplateName?: string | undefined;
3049
3049
  /**
3050
3050
  * <p>If specified, AWS Elastic Beanstalk restricts the returned descriptions to those
3051
3051
  * associated with this environment.</p>
3052
3052
  * @public
3053
3053
  */
3054
- EnvironmentId?: string;
3054
+ EnvironmentId?: string | undefined;
3055
3055
  /**
3056
3056
  * <p>If specified, AWS Elastic Beanstalk restricts the returned descriptions to those
3057
3057
  * associated with this environment.</p>
3058
3058
  * @public
3059
3059
  */
3060
- EnvironmentName?: string;
3060
+ EnvironmentName?: string | undefined;
3061
3061
  /**
3062
3062
  * <p>The ARN of a custom platform version. If specified, AWS Elastic Beanstalk restricts the
3063
3063
  * returned descriptions to those associated with this custom platform version.</p>
3064
3064
  * @public
3065
3065
  */
3066
- PlatformArn?: string;
3066
+ PlatformArn?: string | undefined;
3067
3067
  /**
3068
3068
  * <p>If specified, AWS Elastic Beanstalk restricts the described events to include only
3069
3069
  * those associated with this request ID.</p>
3070
3070
  * @public
3071
3071
  */
3072
- RequestId?: string;
3072
+ RequestId?: string | undefined;
3073
3073
  /**
3074
3074
  * <p>If specified, limits the events returned from this call to include only those with the
3075
3075
  * specified severity or higher.</p>
3076
3076
  * @public
3077
3077
  */
3078
- Severity?: EventSeverity;
3078
+ Severity?: EventSeverity | undefined;
3079
3079
  /**
3080
3080
  * <p>If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that
3081
3081
  * occur on or after this time.</p>
3082
3082
  * @public
3083
3083
  */
3084
- StartTime?: Date;
3084
+ StartTime?: Date | undefined;
3085
3085
  /**
3086
3086
  * <p> If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that
3087
3087
  * occur up to, but not including, the <code>EndTime</code>. </p>
3088
3088
  * @public
3089
3089
  */
3090
- EndTime?: Date;
3090
+ EndTime?: Date | undefined;
3091
3091
  /**
3092
3092
  * <p>Specifies the maximum number of events that can be returned, beginning with the most
3093
3093
  * recent event.</p>
3094
3094
  * @public
3095
3095
  */
3096
- MaxRecords?: number;
3096
+ MaxRecords?: number | undefined;
3097
3097
  /**
3098
3098
  * <p>Pagination token. If specified, the events return the next batch of results.</p>
3099
3099
  * @public
3100
3100
  */
3101
- NextToken?: string;
3101
+ NextToken?: string | undefined;
3102
3102
  }
3103
3103
  /**
3104
3104
  * <p>Describes an event.</p>
@@ -3109,47 +3109,47 @@ export interface EventDescription {
3109
3109
  * <p>The date when the event occurred.</p>
3110
3110
  * @public
3111
3111
  */
3112
- EventDate?: Date;
3112
+ EventDate?: Date | undefined;
3113
3113
  /**
3114
3114
  * <p>The event message.</p>
3115
3115
  * @public
3116
3116
  */
3117
- Message?: string;
3117
+ Message?: string | undefined;
3118
3118
  /**
3119
3119
  * <p>The application associated with the event.</p>
3120
3120
  * @public
3121
3121
  */
3122
- ApplicationName?: string;
3122
+ ApplicationName?: string | undefined;
3123
3123
  /**
3124
3124
  * <p>The release label for the application version associated with this event.</p>
3125
3125
  * @public
3126
3126
  */
3127
- VersionLabel?: string;
3127
+ VersionLabel?: string | undefined;
3128
3128
  /**
3129
3129
  * <p>The name of the configuration associated with this event.</p>
3130
3130
  * @public
3131
3131
  */
3132
- TemplateName?: string;
3132
+ TemplateName?: string | undefined;
3133
3133
  /**
3134
3134
  * <p>The name of the environment associated with this event.</p>
3135
3135
  * @public
3136
3136
  */
3137
- EnvironmentName?: string;
3137
+ EnvironmentName?: string | undefined;
3138
3138
  /**
3139
3139
  * <p>The ARN of the platform version.</p>
3140
3140
  * @public
3141
3141
  */
3142
- PlatformArn?: string;
3142
+ PlatformArn?: string | undefined;
3143
3143
  /**
3144
3144
  * <p>The web service request ID for the activity of this event.</p>
3145
3145
  * @public
3146
3146
  */
3147
- RequestId?: string;
3147
+ RequestId?: string | undefined;
3148
3148
  /**
3149
3149
  * <p>The severity level of this event.</p>
3150
3150
  * @public
3151
3151
  */
3152
- Severity?: EventSeverity;
3152
+ Severity?: EventSeverity | undefined;
3153
3153
  }
3154
3154
  /**
3155
3155
  * <p>Result message wrapping a list of event descriptions.</p>
@@ -3160,13 +3160,13 @@ export interface EventDescriptionsMessage {
3160
3160
  * <p> A list of <a>EventDescription</a>. </p>
3161
3161
  * @public
3162
3162
  */
3163
- Events?: EventDescription[];
3163
+ Events?: EventDescription[] | undefined;
3164
3164
  /**
3165
3165
  * <p> If returned, this indicates that there are more results to obtain. Use this token in
3166
3166
  * the next <a>DescribeEvents</a> call to get the next batch of events. </p>
3167
3167
  * @public
3168
3168
  */
3169
- NextToken?: string;
3169
+ NextToken?: string | undefined;
3170
3170
  }
3171
3171
  /**
3172
3172
  * @public
@@ -3198,24 +3198,24 @@ export interface DescribeInstancesHealthRequest {
3198
3198
  * <p>Specify the AWS Elastic Beanstalk environment by name.</p>
3199
3199
  * @public
3200
3200
  */
3201
- EnvironmentName?: string;
3201
+ EnvironmentName?: string | undefined;
3202
3202
  /**
3203
3203
  * <p>Specify the AWS Elastic Beanstalk environment by ID.</p>
3204
3204
  * @public
3205
3205
  */
3206
- EnvironmentId?: string;
3206
+ EnvironmentId?: string | undefined;
3207
3207
  /**
3208
3208
  * <p>Specifies the response elements you wish to receive. To retrieve all attributes, set to
3209
3209
  * <code>All</code>. If no attribute names are specified, returns a list of
3210
3210
  * instances.</p>
3211
3211
  * @public
3212
3212
  */
3213
- AttributeNames?: InstancesHealthAttribute[];
3213
+ AttributeNames?: InstancesHealthAttribute[] | undefined;
3214
3214
  /**
3215
3215
  * <p>Specify the pagination token returned by a previous call.</p>
3216
3216
  * @public
3217
3217
  */
3218
- NextToken?: string;
3218
+ NextToken?: string | undefined;
3219
3219
  }
3220
3220
  /**
3221
3221
  * <p>Information about an application version deployment.</p>
@@ -3226,13 +3226,13 @@ export interface Deployment {
3226
3226
  * <p>The version label of the application version in the deployment.</p>
3227
3227
  * @public
3228
3228
  */
3229
- VersionLabel?: string;
3229
+ VersionLabel?: string | undefined;
3230
3230
  /**
3231
3231
  * <p>The ID of the deployment. This number increases by one each time that you deploy source
3232
3232
  * code or change instance configuration settings.</p>
3233
3233
  * @public
3234
3234
  */
3235
- DeploymentId?: number;
3235
+ DeploymentId?: number | undefined;
3236
3236
  /**
3237
3237
  * <p>The status of the deployment:</p>
3238
3238
  * <ul>
@@ -3251,13 +3251,13 @@ export interface Deployment {
3251
3251
  * </ul>
3252
3252
  * @public
3253
3253
  */
3254
- Status?: string;
3254
+ Status?: string | undefined;
3255
3255
  /**
3256
3256
  * <p>For in-progress deployments, the time that the deployment started.</p>
3257
3257
  * <p>For completed deployments, the time that the deployment ended.</p>
3258
3258
  * @public
3259
3259
  */
3260
- DeploymentTime?: Date;
3260
+ DeploymentTime?: Date | undefined;
3261
3261
  }
3262
3262
  /**
3263
3263
  * <p>CPU utilization metrics for an instance.</p>
@@ -3269,55 +3269,55 @@ export interface CPUUtilization {
3269
3269
  * 10 seconds.</p>
3270
3270
  * @public
3271
3271
  */
3272
- User?: number;
3272
+ User?: number | undefined;
3273
3273
  /**
3274
3274
  * <p>Available on Linux environments only.</p>
3275
3275
  * <p>Percentage of time that the CPU has spent in the <code>Nice</code> state over the last
3276
3276
  * 10 seconds.</p>
3277
3277
  * @public
3278
3278
  */
3279
- Nice?: number;
3279
+ Nice?: number | undefined;
3280
3280
  /**
3281
3281
  * <p>Available on Linux environments only.</p>
3282
3282
  * <p>Percentage of time that the CPU has spent in the <code>System</code> state over the
3283
3283
  * last 10 seconds.</p>
3284
3284
  * @public
3285
3285
  */
3286
- System?: number;
3286
+ System?: number | undefined;
3287
3287
  /**
3288
3288
  * <p>Percentage of time that the CPU has spent in the <code>Idle</code> state over the last
3289
3289
  * 10 seconds.</p>
3290
3290
  * @public
3291
3291
  */
3292
- Idle?: number;
3292
+ Idle?: number | undefined;
3293
3293
  /**
3294
3294
  * <p>Available on Linux environments only.</p>
3295
3295
  * <p>Percentage of time that the CPU has spent in the <code>I/O Wait</code> state over the
3296
3296
  * last 10 seconds.</p>
3297
3297
  * @public
3298
3298
  */
3299
- IOWait?: number;
3299
+ IOWait?: number | undefined;
3300
3300
  /**
3301
3301
  * <p>Available on Linux environments only.</p>
3302
3302
  * <p>Percentage of time that the CPU has spent in the <code>IRQ</code> state over the last
3303
3303
  * 10 seconds.</p>
3304
3304
  * @public
3305
3305
  */
3306
- IRQ?: number;
3306
+ IRQ?: number | undefined;
3307
3307
  /**
3308
3308
  * <p>Available on Linux environments only.</p>
3309
3309
  * <p>Percentage of time that the CPU has spent in the <code>SoftIRQ</code> state over the
3310
3310
  * last 10 seconds.</p>
3311
3311
  * @public
3312
3312
  */
3313
- SoftIRQ?: number;
3313
+ SoftIRQ?: number | undefined;
3314
3314
  /**
3315
3315
  * <p>Available on Windows environments only.</p>
3316
3316
  * <p>Percentage of time that the CPU has spent in the <code>Privileged</code> state over the
3317
3317
  * last 10 seconds.</p>
3318
3318
  * @public
3319
3319
  */
3320
- Privileged?: number;
3320
+ Privileged?: number | undefined;
3321
3321
  }
3322
3322
  /**
3323
3323
  * <p>CPU utilization and load average metrics for an Amazon EC2 instance.</p>
@@ -3328,14 +3328,14 @@ export interface SystemStatus {
3328
3328
  * <p>CPU utilization metrics for the instance.</p>
3329
3329
  * @public
3330
3330
  */
3331
- CPUUtilization?: CPUUtilization;
3331
+ CPUUtilization?: CPUUtilization | undefined;
3332
3332
  /**
3333
3333
  * <p>Load average in the last 1-minute, 5-minute, and 15-minute periods.
3334
3334
  * For more information, see
3335
3335
  * <a href="https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-metrics.html#health-enhanced-metrics-os">Operating System Metrics</a>.</p>
3336
3336
  * @public
3337
3337
  */
3338
- LoadAverage?: number[];
3338
+ LoadAverage?: number[] | undefined;
3339
3339
  }
3340
3340
  /**
3341
3341
  * <p>Detailed health information about an Amazon EC2 instance in your Elastic Beanstalk
@@ -3347,56 +3347,56 @@ export interface SingleInstanceHealth {
3347
3347
  * <p>The ID of the Amazon EC2 instance.</p>
3348
3348
  * @public
3349
3349
  */
3350
- InstanceId?: string;
3350
+ InstanceId?: string | undefined;
3351
3351
  /**
3352
3352
  * <p>Returns the health status of the specified instance. For more information, see <a href="https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html">Health
3353
3353
  * Colors and Statuses</a>.</p>
3354
3354
  * @public
3355
3355
  */
3356
- HealthStatus?: string;
3356
+ HealthStatus?: string | undefined;
3357
3357
  /**
3358
3358
  * <p>Represents the color indicator that gives you information about the health of the EC2
3359
3359
  * instance. For more information, see <a href="https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html">Health Colors and
3360
3360
  * Statuses</a>.</p>
3361
3361
  * @public
3362
3362
  */
3363
- Color?: string;
3363
+ Color?: string | undefined;
3364
3364
  /**
3365
3365
  * <p>Represents the causes, which provide more information about the current health
3366
3366
  * status.</p>
3367
3367
  * @public
3368
3368
  */
3369
- Causes?: string[];
3369
+ Causes?: string[] | undefined;
3370
3370
  /**
3371
3371
  * <p>The time at which the EC2 instance was launched.</p>
3372
3372
  * @public
3373
3373
  */
3374
- LaunchedAt?: Date;
3374
+ LaunchedAt?: Date | undefined;
3375
3375
  /**
3376
3376
  * <p>Request metrics from your application.</p>
3377
3377
  * @public
3378
3378
  */
3379
- ApplicationMetrics?: ApplicationMetrics;
3379
+ ApplicationMetrics?: ApplicationMetrics | undefined;
3380
3380
  /**
3381
3381
  * <p>Operating system metrics from the instance.</p>
3382
3382
  * @public
3383
3383
  */
3384
- System?: SystemStatus;
3384
+ System?: SystemStatus | undefined;
3385
3385
  /**
3386
3386
  * <p>Information about the most recent deployment to an instance.</p>
3387
3387
  * @public
3388
3388
  */
3389
- Deployment?: Deployment;
3389
+ Deployment?: Deployment | undefined;
3390
3390
  /**
3391
3391
  * <p>The availability zone in which the instance runs.</p>
3392
3392
  * @public
3393
3393
  */
3394
- AvailabilityZone?: string;
3394
+ AvailabilityZone?: string | undefined;
3395
3395
  /**
3396
3396
  * <p>The instance's type.</p>
3397
3397
  * @public
3398
3398
  */
3399
- InstanceType?: string;
3399
+ InstanceType?: string | undefined;
3400
3400
  }
3401
3401
  /**
3402
3402
  * <p>Detailed health information about the Amazon EC2 instances in an AWS Elastic Beanstalk
@@ -3410,17 +3410,17 @@ export interface DescribeInstancesHealthResult {
3410
3410
  * in the members that are supported under the <code><CPUUtilization></code> type.</p>
3411
3411
  * @public
3412
3412
  */
3413
- InstanceHealthList?: SingleInstanceHealth[];
3413
+ InstanceHealthList?: SingleInstanceHealth[] | undefined;
3414
3414
  /**
3415
3415
  * <p>The date and time that the health information was retrieved.</p>
3416
3416
  * @public
3417
3417
  */
3418
- RefreshedAt?: Date;
3418
+ RefreshedAt?: Date | undefined;
3419
3419
  /**
3420
3420
  * <p>Pagination token for the next page of results, if available.</p>
3421
3421
  * @public
3422
3422
  */
3423
- NextToken?: string;
3423
+ NextToken?: string | undefined;
3424
3424
  }
3425
3425
  /**
3426
3426
  * @public
@@ -3430,7 +3430,7 @@ export interface DescribePlatformVersionRequest {
3430
3430
  * <p>The ARN of the platform version.</p>
3431
3431
  * @public
3432
3432
  */
3433
- PlatformArn?: string;
3433
+ PlatformArn?: string | undefined;
3434
3434
  }
3435
3435
  /**
3436
3436
  * <p>A custom AMI available to platforms.</p>
@@ -3441,12 +3441,12 @@ export interface CustomAmi {
3441
3441
  * <p>The type of virtualization used to create the custom AMI.</p>
3442
3442
  * @public
3443
3443
  */
3444
- VirtualizationType?: string;
3444
+ VirtualizationType?: string | undefined;
3445
3445
  /**
3446
3446
  * <p>THe ID of the image used to create the custom AMI.</p>
3447
3447
  * @public
3448
3448
  */
3449
- ImageId?: string;
3449
+ ImageId?: string | undefined;
3450
3450
  }
3451
3451
  /**
3452
3452
  * <p>A framework supported by the platform.</p>
@@ -3457,12 +3457,12 @@ export interface PlatformFramework {
3457
3457
  * <p>The name of the framework.</p>
3458
3458
  * @public
3459
3459
  */
3460
- Name?: string;
3460
+ Name?: string | undefined;
3461
3461
  /**
3462
3462
  * <p>The version of the framework.</p>
3463
3463
  * @public
3464
3464
  */
3465
- Version?: string;
3465
+ Version?: string | undefined;
3466
3466
  }
3467
3467
  /**
3468
3468
  * <p>A programming language supported by the platform.</p>
@@ -3473,12 +3473,12 @@ export interface PlatformProgrammingLanguage {
3473
3473
  * <p>The name of the programming language.</p>
3474
3474
  * @public
3475
3475
  */
3476
- Name?: string;
3476
+ Name?: string | undefined;
3477
3477
  /**
3478
3478
  * <p>The version of the programming language.</p>
3479
3479
  * @public
3480
3480
  */
3481
- Version?: string;
3481
+ Version?: string | undefined;
3482
3482
  }
3483
3483
  /**
3484
3484
  * <p>Detailed information about a platform version.</p>
@@ -3489,92 +3489,92 @@ export interface PlatformDescription {
3489
3489
  * <p>The ARN of the platform version.</p>
3490
3490
  * @public
3491
3491
  */
3492
- PlatformArn?: string;
3492
+ PlatformArn?: string | undefined;
3493
3493
  /**
3494
3494
  * <p>The AWS account ID of the person who created the platform version.</p>
3495
3495
  * @public
3496
3496
  */
3497
- PlatformOwner?: string;
3497
+ PlatformOwner?: string | undefined;
3498
3498
  /**
3499
3499
  * <p>The name of the platform version.</p>
3500
3500
  * @public
3501
3501
  */
3502
- PlatformName?: string;
3502
+ PlatformName?: string | undefined;
3503
3503
  /**
3504
3504
  * <p>The version of the platform version.</p>
3505
3505
  * @public
3506
3506
  */
3507
- PlatformVersion?: string;
3507
+ PlatformVersion?: string | undefined;
3508
3508
  /**
3509
3509
  * <p>The name of the solution stack used by the platform version.</p>
3510
3510
  * @public
3511
3511
  */
3512
- SolutionStackName?: string;
3512
+ SolutionStackName?: string | undefined;
3513
3513
  /**
3514
3514
  * <p>The status of the platform version.</p>
3515
3515
  * @public
3516
3516
  */
3517
- PlatformStatus?: PlatformStatus;
3517
+ PlatformStatus?: PlatformStatus | undefined;
3518
3518
  /**
3519
3519
  * <p>The date when the platform version was created.</p>
3520
3520
  * @public
3521
3521
  */
3522
- DateCreated?: Date;
3522
+ DateCreated?: Date | undefined;
3523
3523
  /**
3524
3524
  * <p>The date when the platform version was last updated.</p>
3525
3525
  * @public
3526
3526
  */
3527
- DateUpdated?: Date;
3527
+ DateUpdated?: Date | undefined;
3528
3528
  /**
3529
3529
  * <p>The category of the platform version.</p>
3530
3530
  * @public
3531
3531
  */
3532
- PlatformCategory?: string;
3532
+ PlatformCategory?: string | undefined;
3533
3533
  /**
3534
3534
  * <p>The description of the platform version.</p>
3535
3535
  * @public
3536
3536
  */
3537
- Description?: string;
3537
+ Description?: string | undefined;
3538
3538
  /**
3539
3539
  * <p>Information about the maintainer of the platform version.</p>
3540
3540
  * @public
3541
3541
  */
3542
- Maintainer?: string;
3542
+ Maintainer?: string | undefined;
3543
3543
  /**
3544
3544
  * <p>The operating system used by the platform version.</p>
3545
3545
  * @public
3546
3546
  */
3547
- OperatingSystemName?: string;
3547
+ OperatingSystemName?: string | undefined;
3548
3548
  /**
3549
3549
  * <p>The version of the operating system used by the platform version.</p>
3550
3550
  * @public
3551
3551
  */
3552
- OperatingSystemVersion?: string;
3552
+ OperatingSystemVersion?: string | undefined;
3553
3553
  /**
3554
3554
  * <p>The programming languages supported by the platform version.</p>
3555
3555
  * @public
3556
3556
  */
3557
- ProgrammingLanguages?: PlatformProgrammingLanguage[];
3557
+ ProgrammingLanguages?: PlatformProgrammingLanguage[] | undefined;
3558
3558
  /**
3559
3559
  * <p>The frameworks supported by the platform version.</p>
3560
3560
  * @public
3561
3561
  */
3562
- Frameworks?: PlatformFramework[];
3562
+ Frameworks?: PlatformFramework[] | undefined;
3563
3563
  /**
3564
3564
  * <p>The custom AMIs supported by the platform version.</p>
3565
3565
  * @public
3566
3566
  */
3567
- CustomAmiList?: CustomAmi[];
3567
+ CustomAmiList?: CustomAmi[] | undefined;
3568
3568
  /**
3569
3569
  * <p>The tiers supported by the platform version.</p>
3570
3570
  * @public
3571
3571
  */
3572
- SupportedTierList?: string[];
3572
+ SupportedTierList?: string[] | undefined;
3573
3573
  /**
3574
3574
  * <p>The additions supported by the platform version.</p>
3575
3575
  * @public
3576
3576
  */
3577
- SupportedAddonList?: string[];
3577
+ SupportedAddonList?: string[] | undefined;
3578
3578
  /**
3579
3579
  * <p>The state of the platform version in its lifecycle.</p>
3580
3580
  * <p>Possible values: <code>Recommended</code> | <code>null</code>
@@ -3584,12 +3584,12 @@ export interface PlatformDescription {
3584
3584
  * recent one.</p>
3585
3585
  * @public
3586
3586
  */
3587
- PlatformLifecycleState?: string;
3587
+ PlatformLifecycleState?: string | undefined;
3588
3588
  /**
3589
3589
  * <p>The platform branch to which the platform version belongs.</p>
3590
3590
  * @public
3591
3591
  */
3592
- PlatformBranchName?: string;
3592
+ PlatformBranchName?: string | undefined;
3593
3593
  /**
3594
3594
  * <p>The state of the platform version's branch in its lifecycle.</p>
3595
3595
  * <p>Possible values: <code>Beta</code> | <code>Supported</code> | <code>Deprecated</code> |
@@ -3597,7 +3597,7 @@ export interface PlatformDescription {
3597
3597
  * </p>
3598
3598
  * @public
3599
3599
  */
3600
- PlatformBranchLifecycleState?: string;
3600
+ PlatformBranchLifecycleState?: string | undefined;
3601
3601
  }
3602
3602
  /**
3603
3603
  * @public
@@ -3607,7 +3607,7 @@ export interface DescribePlatformVersionResult {
3607
3607
  * <p>Detailed information about the platform version.</p>
3608
3608
  * @public
3609
3609
  */
3610
- PlatformDescription?: PlatformDescription;
3610
+ PlatformDescription?: PlatformDescription | undefined;
3611
3611
  }
3612
3612
  /**
3613
3613
  * <p>Request to disassociate the operations role from an environment.</p>
@@ -3629,12 +3629,12 @@ export interface ListAvailableSolutionStacksResultMessage {
3629
3629
  * <p>A list of available solution stacks.</p>
3630
3630
  * @public
3631
3631
  */
3632
- SolutionStacks?: string[];
3632
+ SolutionStacks?: string[] | undefined;
3633
3633
  /**
3634
3634
  * <p> A list of available solution stacks and their <a>SolutionStackDescription</a>. </p>
3635
3635
  * @public
3636
3636
  */
3637
- SolutionStackDetails?: SolutionStackDescription[];
3637
+ SolutionStackDetails?: SolutionStackDescription[] | undefined;
3638
3638
  }
3639
3639
  /**
3640
3640
  * <p>Describes criteria to restrict a list of results.</p>
@@ -3657,19 +3657,19 @@ export interface SearchFilter {
3657
3657
  * action.</p>
3658
3658
  * @public
3659
3659
  */
3660
- Attribute?: string;
3660
+ Attribute?: string | undefined;
3661
3661
  /**
3662
3662
  * <p>The operator to apply to the <code>Attribute</code> with each of the <code>Values</code>.
3663
3663
  * Valid values vary by <code>Attribute</code>.</p>
3664
3664
  * @public
3665
3665
  */
3666
- Operator?: string;
3666
+ Operator?: string | undefined;
3667
3667
  /**
3668
3668
  * <p>The list of values applied to the <code>Attribute</code> and <code>Operator</code>
3669
3669
  * attributes. Number of values and valid values vary by <code>Attribute</code>.</p>
3670
3670
  * @public
3671
3671
  */
3672
- Values?: string[];
3672
+ Values?: string[] | undefined;
3673
3673
  }
3674
3674
  /**
3675
3675
  * @public
@@ -3748,12 +3748,12 @@ export interface ListPlatformBranchesRequest {
3748
3748
  * items.</p>
3749
3749
  * @public
3750
3750
  */
3751
- Filters?: SearchFilter[];
3751
+ Filters?: SearchFilter[] | undefined;
3752
3752
  /**
3753
3753
  * <p>The maximum number of platform branch values returned in one call.</p>
3754
3754
  * @public
3755
3755
  */
3756
- MaxRecords?: number;
3756
+ MaxRecords?: number | undefined;
3757
3757
  /**
3758
3758
  * <p>For a paginated request. Specify a token from a previous response page to retrieve the
3759
3759
  * next response page. All other parameter values must be identical to the ones specified in the
@@ -3761,7 +3761,7 @@ export interface ListPlatformBranchesRequest {
3761
3761
  * <p>If no <code>NextToken</code> is specified, the first page is retrieved.</p>
3762
3762
  * @public
3763
3763
  */
3764
- NextToken?: string;
3764
+ NextToken?: string | undefined;
3765
3765
  }
3766
3766
  /**
3767
3767
  * <p>Summary information about a platform branch.</p>
@@ -3772,12 +3772,12 @@ export interface PlatformBranchSummary {
3772
3772
  * <p>The name of the platform to which this platform branch belongs.</p>
3773
3773
  * @public
3774
3774
  */
3775
- PlatformName?: string;
3775
+ PlatformName?: string | undefined;
3776
3776
  /**
3777
3777
  * <p>The name of the platform branch.</p>
3778
3778
  * @public
3779
3779
  */
3780
- BranchName?: string;
3780
+ BranchName?: string | undefined;
3781
3781
  /**
3782
3782
  * <p>The support life cycle state of the platform branch.</p>
3783
3783
  * <p>Possible values: <code>beta</code> | <code>supported</code> | <code>deprecated</code> |
@@ -3785,7 +3785,7 @@ export interface PlatformBranchSummary {
3785
3785
  * </p>
3786
3786
  * @public
3787
3787
  */
3788
- LifecycleState?: string;
3788
+ LifecycleState?: string | undefined;
3789
3789
  /**
3790
3790
  * <p>An ordinal number that designates the order in which platform branches have been added to
3791
3791
  * a platform. This can be helpful, for example, if your code calls the
@@ -3795,14 +3795,14 @@ export interface PlatformBranchSummary {
3795
3795
  * platform.</p>
3796
3796
  * @public
3797
3797
  */
3798
- BranchOrder?: number;
3798
+ BranchOrder?: number | undefined;
3799
3799
  /**
3800
3800
  * <p>The environment tiers that platform versions in this branch support.</p>
3801
3801
  * <p>Possible values: <code>WebServer/Standard</code> | <code>Worker/SQS/HTTP</code>
3802
3802
  * </p>
3803
3803
  * @public
3804
3804
  */
3805
- SupportedTierList?: string[];
3805
+ SupportedTierList?: string[] | undefined;
3806
3806
  }
3807
3807
  /**
3808
3808
  * @public
@@ -3812,13 +3812,13 @@ export interface ListPlatformBranchesResult {
3812
3812
  * <p>Summary information about the platform branches.</p>
3813
3813
  * @public
3814
3814
  */
3815
- PlatformBranchSummaryList?: PlatformBranchSummary[];
3815
+ PlatformBranchSummaryList?: PlatformBranchSummary[] | undefined;
3816
3816
  /**
3817
3817
  * <p>In a paginated request, if this value isn't <code>null</code>, it's the token that you can
3818
3818
  * pass in a subsequent request to get the next response page.</p>
3819
3819
  * @public
3820
3820
  */
3821
- NextToken?: string;
3821
+ NextToken?: string | undefined;
3822
3822
  }
3823
3823
  /**
3824
3824
  * <p>Describes criteria to restrict the results when listing platform versions.</p>
@@ -3837,7 +3837,7 @@ export interface PlatformFilter {
3837
3837
  * </p>
3838
3838
  * @public
3839
3839
  */
3840
- Type?: string;
3840
+ Type?: string | undefined;
3841
3841
  /**
3842
3842
  * <p>The operator to apply to the <code>Type</code> with each of the
3843
3843
  * <code>Values</code>.</p>
@@ -3848,7 +3848,7 @@ export interface PlatformFilter {
3848
3848
  * </p>
3849
3849
  * @public
3850
3850
  */
3851
- Operator?: string;
3851
+ Operator?: string | undefined;
3852
3852
  /**
3853
3853
  * <p>The list of values applied to the filtering platform version attribute. Only one value is supported
3854
3854
  * for all current operators.</p>
@@ -3880,7 +3880,7 @@ export interface PlatformFilter {
3880
3880
  * </ul>
3881
3881
  * @public
3882
3882
  */
3883
- Values?: string[];
3883
+ Values?: string[] | undefined;
3884
3884
  }
3885
3885
  /**
3886
3886
  * @public
@@ -3892,12 +3892,12 @@ export interface ListPlatformVersionsRequest {
3892
3892
  * terms.</p>
3893
3893
  * @public
3894
3894
  */
3895
- Filters?: PlatformFilter[];
3895
+ Filters?: PlatformFilter[] | undefined;
3896
3896
  /**
3897
3897
  * <p>The maximum number of platform version values returned in one call.</p>
3898
3898
  * @public
3899
3899
  */
3900
- MaxRecords?: number;
3900
+ MaxRecords?: number | undefined;
3901
3901
  /**
3902
3902
  * <p>For a paginated request. Specify a token from a previous response page to retrieve the
3903
3903
  * next response page. All other parameter values must be identical to the ones specified in the
@@ -3905,7 +3905,7 @@ export interface ListPlatformVersionsRequest {
3905
3905
  * <p>If no <code>NextToken</code> is specified, the first page is retrieved.</p>
3906
3906
  * @public
3907
3907
  */
3908
- NextToken?: string;
3908
+ NextToken?: string | undefined;
3909
3909
  }
3910
3910
  /**
3911
3911
  * @public
@@ -3915,13 +3915,13 @@ export interface ListPlatformVersionsResult {
3915
3915
  * <p>Summary information about the platform versions.</p>
3916
3916
  * @public
3917
3917
  */
3918
- PlatformSummaryList?: PlatformSummary[];
3918
+ PlatformSummaryList?: PlatformSummary[] | undefined;
3919
3919
  /**
3920
3920
  * <p>In a paginated request, if this value isn't <code>null</code>, it's the token that you can
3921
3921
  * pass in a subsequent request to get the next response page.</p>
3922
3922
  * @public
3923
3923
  */
3924
- NextToken?: string;
3924
+ NextToken?: string | undefined;
3925
3925
  }
3926
3926
  /**
3927
3927
  * @public
@@ -3954,12 +3954,12 @@ export interface ResourceTagsDescriptionMessage {
3954
3954
  * <p>The Amazon Resource Name (ARN) of the resource for which a tag list was requested.</p>
3955
3955
  * @public
3956
3956
  */
3957
- ResourceArn?: string;
3957
+ ResourceArn?: string | undefined;
3958
3958
  /**
3959
3959
  * <p>A list of tag key-value pairs.</p>
3960
3960
  * @public
3961
3961
  */
3962
- ResourceTags?: Tag[];
3962
+ ResourceTags?: Tag[] | undefined;
3963
3963
  }
3964
3964
  /**
3965
3965
  * <p>The type of the specified Amazon Resource Name (ARN) isn't supported for this operation.</p>
@@ -3985,7 +3985,7 @@ export interface RebuildEnvironmentMessage {
3985
3985
  * </p>
3986
3986
  * @public
3987
3987
  */
3988
- EnvironmentId?: string;
3988
+ EnvironmentId?: string | undefined;
3989
3989
  /**
3990
3990
  * <p>The name of the environment to rebuild.</p>
3991
3991
  * <p> Condition: You must specify either this or an EnvironmentId, or both. If you do not
@@ -3993,7 +3993,7 @@ export interface RebuildEnvironmentMessage {
3993
3993
  * </p>
3994
3994
  * @public
3995
3995
  */
3996
- EnvironmentName?: string;
3996
+ EnvironmentName?: string | undefined;
3997
3997
  }
3998
3998
  /**
3999
3999
  * @public
@@ -4022,7 +4022,7 @@ export interface RequestEnvironmentInfoMessage {
4022
4022
  * </p>
4023
4023
  * @public
4024
4024
  */
4025
- EnvironmentId?: string;
4025
+ EnvironmentId?: string | undefined;
4026
4026
  /**
4027
4027
  * <p>The name of the environment of the requested data.</p>
4028
4028
  * <p>If no such environment is found, <code>RequestEnvironmentInfo</code> returns an
@@ -4032,7 +4032,7 @@ export interface RequestEnvironmentInfoMessage {
4032
4032
  * </p>
4033
4033
  * @public
4034
4034
  */
4035
- EnvironmentName?: string;
4035
+ EnvironmentName?: string | undefined;
4036
4036
  /**
4037
4037
  * <p>The type of information to request.</p>
4038
4038
  * @public
@@ -4051,7 +4051,7 @@ export interface RestartAppServerMessage {
4051
4051
  * </p>
4052
4052
  * @public
4053
4053
  */
4054
- EnvironmentId?: string;
4054
+ EnvironmentId?: string | undefined;
4055
4055
  /**
4056
4056
  * <p>The name of the environment to restart the server for.</p>
4057
4057
  * <p> Condition: You must specify either this or an EnvironmentId, or both. If you do not
@@ -4059,7 +4059,7 @@ export interface RestartAppServerMessage {
4059
4059
  * </p>
4060
4060
  * @public
4061
4061
  */
4062
- EnvironmentName?: string;
4062
+ EnvironmentName?: string | undefined;
4063
4063
  }
4064
4064
  /**
4065
4065
  * <p>Request to download logs retrieved with <a>RequestEnvironmentInfo</a>.</p>
@@ -4075,7 +4075,7 @@ export interface RetrieveEnvironmentInfoMessage {
4075
4075
  * error.</p>
4076
4076
  * @public
4077
4077
  */
4078
- EnvironmentId?: string;
4078
+ EnvironmentId?: string | undefined;
4079
4079
  /**
4080
4080
  * <p>The name of the data's environment.</p>
4081
4081
  * <p> If no such environment is found, returns an <code>InvalidParameterValue</code> error. </p>
@@ -4084,7 +4084,7 @@ export interface RetrieveEnvironmentInfoMessage {
4084
4084
  * </p>
4085
4085
  * @public
4086
4086
  */
4087
- EnvironmentName?: string;
4087
+ EnvironmentName?: string | undefined;
4088
4088
  /**
4089
4089
  * <p>The type of information to retrieve.</p>
4090
4090
  * @public
@@ -4100,17 +4100,17 @@ export interface EnvironmentInfoDescription {
4100
4100
  * <p>The type of information retrieved.</p>
4101
4101
  * @public
4102
4102
  */
4103
- InfoType?: EnvironmentInfoType;
4103
+ InfoType?: EnvironmentInfoType | undefined;
4104
4104
  /**
4105
4105
  * <p>The Amazon EC2 Instance ID for this information.</p>
4106
4106
  * @public
4107
4107
  */
4108
- Ec2InstanceId?: string;
4108
+ Ec2InstanceId?: string | undefined;
4109
4109
  /**
4110
4110
  * <p>The time stamp when this information was retrieved.</p>
4111
4111
  * @public
4112
4112
  */
4113
- SampleTimestamp?: Date;
4113
+ SampleTimestamp?: Date | undefined;
4114
4114
  /**
4115
4115
  * <p>The retrieved information. Currently contains a presigned Amazon S3 URL. The files are
4116
4116
  * deleted after 15 minutes.</p>
@@ -4118,7 +4118,7 @@ export interface EnvironmentInfoDescription {
4118
4118
  * URL available only to trusted parties.</p>
4119
4119
  * @public
4120
4120
  */
4121
- Message?: string;
4121
+ Message?: string | undefined;
4122
4122
  }
4123
4123
  /**
4124
4124
  * <p>Result message containing a description of the requested environment info.</p>
@@ -4129,7 +4129,7 @@ export interface RetrieveEnvironmentInfoResultMessage {
4129
4129
  * <p> The <a>EnvironmentInfoDescription</a> of the environment. </p>
4130
4130
  * @public
4131
4131
  */
4132
- EnvironmentInfo?: EnvironmentInfoDescription[];
4132
+ EnvironmentInfo?: EnvironmentInfoDescription[] | undefined;
4133
4133
  }
4134
4134
  /**
4135
4135
  * <p>Swaps the CNAMEs of two environments.</p>
@@ -4144,7 +4144,7 @@ export interface SwapEnvironmentCNAMEsMessage {
4144
4144
  * <code>DestinationEnvironmentId</code>. </p>
4145
4145
  * @public
4146
4146
  */
4147
- SourceEnvironmentId?: string;
4147
+ SourceEnvironmentId?: string | undefined;
4148
4148
  /**
4149
4149
  * <p>The name of the source environment.</p>
4150
4150
  * <p> Condition: You must specify at least the <code>SourceEnvironmentID</code> or the
@@ -4153,7 +4153,7 @@ export interface SwapEnvironmentCNAMEsMessage {
4153
4153
  * <code>DestinationEnvironmentName</code>. </p>
4154
4154
  * @public
4155
4155
  */
4156
- SourceEnvironmentName?: string;
4156
+ SourceEnvironmentName?: string | undefined;
4157
4157
  /**
4158
4158
  * <p>The ID of the destination environment.</p>
4159
4159
  * <p> Condition: You must specify at least the <code>DestinationEnvironmentID</code> or the
@@ -4161,7 +4161,7 @@ export interface SwapEnvironmentCNAMEsMessage {
4161
4161
  * <code>SourceEnvironmentId</code> with the <code>DestinationEnvironmentId</code>. </p>
4162
4162
  * @public
4163
4163
  */
4164
- DestinationEnvironmentId?: string;
4164
+ DestinationEnvironmentId?: string | undefined;
4165
4165
  /**
4166
4166
  * <p>The name of the destination environment.</p>
4167
4167
  * <p> Condition: You must specify at least the <code>DestinationEnvironmentID</code> or the
@@ -4170,7 +4170,7 @@ export interface SwapEnvironmentCNAMEsMessage {
4170
4170
  * </p>
4171
4171
  * @public
4172
4172
  */
4173
- DestinationEnvironmentName?: string;
4173
+ DestinationEnvironmentName?: string | undefined;
4174
4174
  }
4175
4175
  /**
4176
4176
  * <p>Request to terminate an environment.</p>
@@ -4184,7 +4184,7 @@ export interface TerminateEnvironmentMessage {
4184
4184
  * </p>
4185
4185
  * @public
4186
4186
  */
4187
- EnvironmentId?: string;
4187
+ EnvironmentId?: string | undefined;
4188
4188
  /**
4189
4189
  * <p>The name of the environment to terminate.</p>
4190
4190
  * <p> Condition: You must specify either this or an EnvironmentId, or both. If you do not
@@ -4192,7 +4192,7 @@ export interface TerminateEnvironmentMessage {
4192
4192
  * </p>
4193
4193
  * @public
4194
4194
  */
4195
- EnvironmentName?: string;
4195
+ EnvironmentName?: string | undefined;
4196
4196
  /**
4197
4197
  * <p>Indicates whether the associated AWS resources should shut down when the environment is
4198
4198
  * terminated:</p>
@@ -4216,13 +4216,13 @@ export interface TerminateEnvironmentMessage {
4216
4216
  * </p>
4217
4217
  * @public
4218
4218
  */
4219
- TerminateResources?: boolean;
4219
+ TerminateResources?: boolean | undefined;
4220
4220
  /**
4221
4221
  * <p>Terminates the target environment even if another environment in the same group is
4222
4222
  * dependent on it.</p>
4223
4223
  * @public
4224
4224
  */
4225
- ForceTerminate?: boolean;
4225
+ ForceTerminate?: boolean | undefined;
4226
4226
  }
4227
4227
  /**
4228
4228
  * <p>Request to update an application.</p>
@@ -4242,7 +4242,7 @@ export interface UpdateApplicationMessage {
4242
4242
  * description.</p>
4243
4243
  * @public
4244
4244
  */
4245
- Description?: string;
4245
+ Description?: string | undefined;
4246
4246
  }
4247
4247
  /**
4248
4248
  * @public
@@ -4282,7 +4282,7 @@ export interface UpdateApplicationVersionMessage {
4282
4282
  * <p>A new description for this version.</p>
4283
4283
  * @public
4284
4284
  */
4285
- Description?: string;
4285
+ Description?: string | undefined;
4286
4286
  }
4287
4287
  /**
4288
4288
  * <p>The result message containing the options for the specified solution stack.</p>
@@ -4309,20 +4309,20 @@ export interface UpdateConfigurationTemplateMessage {
4309
4309
  * <p>A new description for the configuration.</p>
4310
4310
  * @public
4311
4311
  */
4312
- Description?: string;
4312
+ Description?: string | undefined;
4313
4313
  /**
4314
4314
  * <p>A list of configuration option settings to update with the new specified option
4315
4315
  * value.</p>
4316
4316
  * @public
4317
4317
  */
4318
- OptionSettings?: ConfigurationOptionSetting[];
4318
+ OptionSettings?: ConfigurationOptionSetting[] | undefined;
4319
4319
  /**
4320
4320
  * <p>A list of configuration options to remove from the configuration set.</p>
4321
4321
  * <p> Constraint: You can remove only <code>UserDefined</code> configuration options.
4322
4322
  * </p>
4323
4323
  * @public
4324
4324
  */
4325
- OptionsToRemove?: OptionSpecification[];
4325
+ OptionsToRemove?: OptionSpecification[] | undefined;
4326
4326
  }
4327
4327
  /**
4328
4328
  * <p>Request to update an environment.</p>
@@ -4333,7 +4333,7 @@ export interface UpdateEnvironmentMessage {
4333
4333
  * <p>The name of the application with which the environment is associated.</p>
4334
4334
  * @public
4335
4335
  */
4336
- ApplicationName?: string;
4336
+ ApplicationName?: string | undefined;
4337
4337
  /**
4338
4338
  * <p>The ID of the environment to update.</p>
4339
4339
  * <p>If no environment with this ID exists, AWS Elastic Beanstalk returns an
@@ -4343,7 +4343,7 @@ export interface UpdateEnvironmentMessage {
4343
4343
  * </p>
4344
4344
  * @public
4345
4345
  */
4346
- EnvironmentId?: string;
4346
+ EnvironmentId?: string | undefined;
4347
4347
  /**
4348
4348
  * <p>The name of the environment to update. If no environment with this name exists, AWS
4349
4349
  * Elastic Beanstalk returns an <code>InvalidParameterValue</code> error. </p>
@@ -4352,7 +4352,7 @@ export interface UpdateEnvironmentMessage {
4352
4352
  * </p>
4353
4353
  * @public
4354
4354
  */
4355
- EnvironmentName?: string;
4355
+ EnvironmentName?: string | undefined;
4356
4356
  /**
4357
4357
  * <p>The name of the group to which the target environment belongs. Specify a group name
4358
4358
  * only if the environment's name is specified in an environment manifest and not with the
@@ -4360,58 +4360,58 @@ export interface UpdateEnvironmentMessage {
4360
4360
  * (env.yaml)</a> for details.</p>
4361
4361
  * @public
4362
4362
  */
4363
- GroupName?: string;
4363
+ GroupName?: string | undefined;
4364
4364
  /**
4365
4365
  * <p>If this parameter is specified, AWS Elastic Beanstalk updates the description of this
4366
4366
  * environment.</p>
4367
4367
  * @public
4368
4368
  */
4369
- Description?: string;
4369
+ Description?: string | undefined;
4370
4370
  /**
4371
4371
  * <p>This specifies the tier to use to update the environment.</p>
4372
4372
  * <p>Condition: At this time, if you change the tier version, name, or type, AWS Elastic
4373
4373
  * Beanstalk returns <code>InvalidParameterValue</code> error. </p>
4374
4374
  * @public
4375
4375
  */
4376
- Tier?: EnvironmentTier;
4376
+ Tier?: EnvironmentTier | undefined;
4377
4377
  /**
4378
4378
  * <p>If this parameter is specified, AWS Elastic Beanstalk deploys the named application
4379
4379
  * version to the environment. If no such application version is found, returns an
4380
4380
  * <code>InvalidParameterValue</code> error. </p>
4381
4381
  * @public
4382
4382
  */
4383
- VersionLabel?: string;
4383
+ VersionLabel?: string | undefined;
4384
4384
  /**
4385
4385
  * <p>If this parameter is specified, AWS Elastic Beanstalk deploys this configuration
4386
4386
  * template to the environment. If no such configuration template is found, AWS Elastic Beanstalk
4387
4387
  * returns an <code>InvalidParameterValue</code> error. </p>
4388
4388
  * @public
4389
4389
  */
4390
- TemplateName?: string;
4390
+ TemplateName?: string | undefined;
4391
4391
  /**
4392
4392
  * <p>This specifies the platform version that the environment will run after the environment
4393
4393
  * is updated.</p>
4394
4394
  * @public
4395
4395
  */
4396
- SolutionStackName?: string;
4396
+ SolutionStackName?: string | undefined;
4397
4397
  /**
4398
4398
  * <p>The ARN of the platform, if used.</p>
4399
4399
  * @public
4400
4400
  */
4401
- PlatformArn?: string;
4401
+ PlatformArn?: string | undefined;
4402
4402
  /**
4403
4403
  * <p>If specified, AWS Elastic Beanstalk updates the configuration set associated with the
4404
4404
  * running environment and sets the specified configuration options to the requested
4405
4405
  * value.</p>
4406
4406
  * @public
4407
4407
  */
4408
- OptionSettings?: ConfigurationOptionSetting[];
4408
+ OptionSettings?: ConfigurationOptionSetting[] | undefined;
4409
4409
  /**
4410
4410
  * <p>A list of custom user-defined configuration options to remove from the configuration
4411
4411
  * set for this environment.</p>
4412
4412
  * @public
4413
4413
  */
4414
- OptionsToRemove?: OptionSpecification[];
4414
+ OptionsToRemove?: OptionSpecification[] | undefined;
4415
4415
  }
4416
4416
  /**
4417
4417
  * <p>The number of tags in the resource would exceed the number of tags that each resource
@@ -4445,14 +4445,14 @@ export interface UpdateTagsForResourceMessage {
4445
4445
  * <code>TagsToRemove</code>.</p>
4446
4446
  * @public
4447
4447
  */
4448
- TagsToAdd?: Tag[];
4448
+ TagsToAdd?: Tag[] | undefined;
4449
4449
  /**
4450
4450
  * <p>A list of tag keys to remove. If a tag key doesn't exist, it is silently ignored.</p>
4451
4451
  * <p>Specify at least one of these parameters: <code>TagsToAdd</code>,
4452
4452
  * <code>TagsToRemove</code>.</p>
4453
4453
  * @public
4454
4454
  */
4455
- TagsToRemove?: string[];
4455
+ TagsToRemove?: string[] | undefined;
4456
4456
  }
4457
4457
  /**
4458
4458
  * @public
@@ -4475,7 +4475,7 @@ export interface ValidationMessage {
4475
4475
  * <p>A message describing the error or warning.</p>
4476
4476
  * @public
4477
4477
  */
4478
- Message?: string;
4478
+ Message?: string | undefined;
4479
4479
  /**
4480
4480
  * <p>An indication of the severity of this message:</p>
4481
4481
  * <ul>
@@ -4492,17 +4492,17 @@ export interface ValidationMessage {
4492
4492
  * </ul>
4493
4493
  * @public
4494
4494
  */
4495
- Severity?: ValidationSeverity;
4495
+ Severity?: ValidationSeverity | undefined;
4496
4496
  /**
4497
4497
  * <p>The namespace to which the option belongs.</p>
4498
4498
  * @public
4499
4499
  */
4500
- Namespace?: string;
4500
+ Namespace?: string | undefined;
4501
4501
  /**
4502
4502
  * <p>The name of the option.</p>
4503
4503
  * @public
4504
4504
  */
4505
- OptionName?: string;
4505
+ OptionName?: string | undefined;
4506
4506
  }
4507
4507
  /**
4508
4508
  * <p>Provides a list of validation messages.</p>
@@ -4513,7 +4513,7 @@ export interface ConfigurationSettingsValidationMessages {
4513
4513
  * <p> A list of <a>ValidationMessage</a>. </p>
4514
4514
  * @public
4515
4515
  */
4516
- Messages?: ValidationMessage[];
4516
+ Messages?: ValidationMessage[] | undefined;
4517
4517
  }
4518
4518
  /**
4519
4519
  * <p>A list of validation messages for a specified configuration template.</p>
@@ -4531,13 +4531,13 @@ export interface ValidateConfigurationSettingsMessage {
4531
4531
  * <p>Condition: You cannot specify both this and an environment name.</p>
4532
4532
  * @public
4533
4533
  */
4534
- TemplateName?: string;
4534
+ TemplateName?: string | undefined;
4535
4535
  /**
4536
4536
  * <p>The name of the environment to validate the settings against.</p>
4537
4537
  * <p>Condition: You cannot specify both this and a configuration template name.</p>
4538
4538
  * @public
4539
4539
  */
4540
- EnvironmentName?: string;
4540
+ EnvironmentName?: string | undefined;
4541
4541
  /**
4542
4542
  * <p>A list of the options and desired values to evaluate.</p>
4543
4543
  * @public