@aws-sdk/client-elastic-beanstalk 3.687.0 → 3.692.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.
@@ -1,8 +1,8 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { ElasticBeanstalkServiceException as __BaseException } from "./ElasticBeanstalkServiceException";
3
3
  export interface AbortEnvironmentUpdateMessage {
4
- EnvironmentId?: string;
5
- EnvironmentName?: string;
4
+ EnvironmentId?: string | undefined;
5
+ EnvironmentName?: string | undefined;
6
6
  }
7
7
  export declare class InsufficientPrivilegesException extends __BaseException {
8
8
  readonly name: "InsufficientPrivilegesException";
@@ -36,63 +36,63 @@ export declare const ActionType: {
36
36
  export type ActionType = (typeof ActionType)[keyof typeof ActionType];
37
37
  export interface MaxAgeRule {
38
38
  Enabled: boolean | undefined;
39
- MaxAgeInDays?: number;
40
- DeleteSourceFromS3?: boolean;
39
+ MaxAgeInDays?: number | undefined;
40
+ DeleteSourceFromS3?: boolean | undefined;
41
41
  }
42
42
  export interface MaxCountRule {
43
43
  Enabled: boolean | undefined;
44
- MaxCount?: number;
45
- DeleteSourceFromS3?: boolean;
44
+ MaxCount?: number | undefined;
45
+ DeleteSourceFromS3?: boolean | undefined;
46
46
  }
47
47
  export interface ApplicationVersionLifecycleConfig {
48
- MaxCountRule?: MaxCountRule;
49
- MaxAgeRule?: MaxAgeRule;
48
+ MaxCountRule?: MaxCountRule | undefined;
49
+ MaxAgeRule?: MaxAgeRule | undefined;
50
50
  }
51
51
  export interface ApplicationResourceLifecycleConfig {
52
- ServiceRole?: string;
53
- VersionLifecycleConfig?: ApplicationVersionLifecycleConfig;
52
+ ServiceRole?: string | undefined;
53
+ VersionLifecycleConfig?: ApplicationVersionLifecycleConfig | undefined;
54
54
  }
55
55
  export interface ApplicationDescription {
56
- ApplicationArn?: string;
57
- ApplicationName?: string;
58
- Description?: string;
59
- DateCreated?: Date;
60
- DateUpdated?: Date;
61
- Versions?: string[];
62
- ConfigurationTemplates?: string[];
63
- ResourceLifecycleConfig?: ApplicationResourceLifecycleConfig;
56
+ ApplicationArn?: string | undefined;
57
+ ApplicationName?: string | undefined;
58
+ Description?: string | undefined;
59
+ DateCreated?: Date | undefined;
60
+ DateUpdated?: Date | undefined;
61
+ Versions?: string[] | undefined;
62
+ ConfigurationTemplates?: string[] | undefined;
63
+ ResourceLifecycleConfig?: ApplicationResourceLifecycleConfig | undefined;
64
64
  }
65
65
  export interface ApplicationDescriptionMessage {
66
- Application?: ApplicationDescription;
66
+ Application?: ApplicationDescription | undefined;
67
67
  }
68
68
  export interface ApplicationDescriptionsMessage {
69
- Applications?: ApplicationDescription[];
69
+ Applications?: ApplicationDescription[] | undefined;
70
70
  }
71
71
  export interface Latency {
72
- P999?: number;
73
- P99?: number;
74
- P95?: number;
75
- P90?: number;
76
- P85?: number;
77
- P75?: number;
78
- P50?: number;
79
- P10?: number;
72
+ P999?: number | undefined;
73
+ P99?: number | undefined;
74
+ P95?: number | undefined;
75
+ P90?: number | undefined;
76
+ P85?: number | undefined;
77
+ P75?: number | undefined;
78
+ P50?: number | undefined;
79
+ P10?: number | undefined;
80
80
  }
81
81
  export interface StatusCodes {
82
- Status2xx?: number;
83
- Status3xx?: number;
84
- Status4xx?: number;
85
- Status5xx?: number;
82
+ Status2xx?: number | undefined;
83
+ Status3xx?: number | undefined;
84
+ Status4xx?: number | undefined;
85
+ Status5xx?: number | undefined;
86
86
  }
87
87
  export interface ApplicationMetrics {
88
- Duration?: number;
89
- RequestCount?: number;
90
- StatusCodes?: StatusCodes;
91
- Latency?: Latency;
88
+ Duration?: number | undefined;
89
+ RequestCount?: number | undefined;
90
+ StatusCodes?: StatusCodes | undefined;
91
+ Latency?: Latency | undefined;
92
92
  }
93
93
  export interface ApplicationResourceLifecycleDescriptionMessage {
94
- ApplicationName?: string;
95
- ResourceLifecycleConfig?: ApplicationResourceLifecycleConfig;
94
+ ApplicationName?: string | undefined;
95
+ ResourceLifecycleConfig?: ApplicationResourceLifecycleConfig | undefined;
96
96
  }
97
97
  export declare const SourceRepository: {
98
98
  readonly CodeCommit: "CodeCommit";
@@ -111,8 +111,8 @@ export interface SourceBuildInformation {
111
111
  SourceLocation: string | undefined;
112
112
  }
113
113
  export interface S3Location {
114
- S3Bucket?: string;
115
- S3Key?: string;
114
+ S3Bucket?: string | undefined;
115
+ S3Key?: string | undefined;
116
116
  }
117
117
  export declare const ApplicationVersionStatus: {
118
118
  readonly Building: "Building";
@@ -124,34 +124,34 @@ export declare const ApplicationVersionStatus: {
124
124
  export type ApplicationVersionStatus =
125
125
  (typeof ApplicationVersionStatus)[keyof typeof ApplicationVersionStatus];
126
126
  export interface ApplicationVersionDescription {
127
- ApplicationVersionArn?: string;
128
- ApplicationName?: string;
129
- Description?: string;
130
- VersionLabel?: string;
131
- SourceBuildInformation?: SourceBuildInformation;
132
- BuildArn?: string;
133
- SourceBundle?: S3Location;
134
- DateCreated?: Date;
135
- DateUpdated?: Date;
136
- Status?: ApplicationVersionStatus;
127
+ ApplicationVersionArn?: string | undefined;
128
+ ApplicationName?: string | undefined;
129
+ Description?: string | undefined;
130
+ VersionLabel?: string | undefined;
131
+ SourceBuildInformation?: SourceBuildInformation | undefined;
132
+ BuildArn?: string | undefined;
133
+ SourceBundle?: S3Location | undefined;
134
+ DateCreated?: Date | undefined;
135
+ DateUpdated?: Date | undefined;
136
+ Status?: ApplicationVersionStatus | undefined;
137
137
  }
138
138
  export interface ApplicationVersionDescriptionMessage {
139
- ApplicationVersion?: ApplicationVersionDescription;
139
+ ApplicationVersion?: ApplicationVersionDescription | undefined;
140
140
  }
141
141
  export interface ApplicationVersionDescriptionsMessage {
142
- ApplicationVersions?: ApplicationVersionDescription[];
143
- NextToken?: string;
142
+ ApplicationVersions?: ApplicationVersionDescription[] | undefined;
143
+ NextToken?: string | undefined;
144
144
  }
145
145
  export interface ApplyEnvironmentManagedActionRequest {
146
- EnvironmentName?: string;
147
- EnvironmentId?: string;
146
+ EnvironmentName?: string | undefined;
147
+ EnvironmentId?: string | undefined;
148
148
  ActionId: string | undefined;
149
149
  }
150
150
  export interface ApplyEnvironmentManagedActionResult {
151
- ActionId?: string;
152
- ActionDescription?: string;
153
- ActionType?: ActionType;
154
- Status?: string;
151
+ ActionId?: string | undefined;
152
+ ActionDescription?: string | undefined;
153
+ ActionType?: ActionType | undefined;
154
+ Status?: string | undefined;
155
155
  }
156
156
  export declare class ElasticBeanstalkServiceException extends __BaseException {
157
157
  readonly name: "ElasticBeanstalkServiceException";
@@ -178,27 +178,27 @@ export interface AssociateEnvironmentOperationsRoleMessage {
178
178
  OperationsRole: string | undefined;
179
179
  }
180
180
  export interface AutoScalingGroup {
181
- Name?: string;
181
+ Name?: string | undefined;
182
182
  }
183
183
  export interface SolutionStackDescription {
184
- SolutionStackName?: string;
185
- PermittedFileTypes?: string[];
184
+ SolutionStackName?: string | undefined;
185
+ PermittedFileTypes?: string[] | undefined;
186
186
  }
187
187
  export interface CheckDNSAvailabilityMessage {
188
188
  CNAMEPrefix: string | undefined;
189
189
  }
190
190
  export interface CheckDNSAvailabilityResultMessage {
191
- Available?: boolean;
192
- FullyQualifiedCNAME?: string;
191
+ Available?: boolean | undefined;
192
+ FullyQualifiedCNAME?: string | undefined;
193
193
  }
194
194
  export interface ComposeEnvironmentsMessage {
195
- ApplicationName?: string;
196
- GroupName?: string;
197
- VersionLabels?: string[];
195
+ ApplicationName?: string | undefined;
196
+ GroupName?: string | undefined;
197
+ VersionLabels?: string[] | undefined;
198
198
  }
199
199
  export interface EnvironmentLink {
200
- LinkName?: string;
201
- EnvironmentName?: string;
200
+ LinkName?: string | undefined;
201
+ EnvironmentName?: string | undefined;
202
202
  }
203
203
  export declare const EnvironmentHealth: {
204
204
  readonly Green: "Green";
@@ -222,16 +222,16 @@ export declare const EnvironmentHealthStatus: {
222
222
  export type EnvironmentHealthStatus =
223
223
  (typeof EnvironmentHealthStatus)[keyof typeof EnvironmentHealthStatus];
224
224
  export interface Listener {
225
- Protocol?: string;
226
- Port?: number;
225
+ Protocol?: string | undefined;
226
+ Port?: number | undefined;
227
227
  }
228
228
  export interface LoadBalancerDescription {
229
- LoadBalancerName?: string;
230
- Domain?: string;
231
- Listeners?: Listener[];
229
+ LoadBalancerName?: string | undefined;
230
+ Domain?: string | undefined;
231
+ Listeners?: Listener[] | undefined;
232
232
  }
233
233
  export interface EnvironmentResourcesDescription {
234
- LoadBalancer?: LoadBalancerDescription;
234
+ LoadBalancer?: LoadBalancerDescription | undefined;
235
235
  }
236
236
  export declare const EnvironmentStatus: {
237
237
  readonly Aborting: "Aborting";
@@ -246,36 +246,36 @@ export declare const EnvironmentStatus: {
246
246
  export type EnvironmentStatus =
247
247
  (typeof EnvironmentStatus)[keyof typeof EnvironmentStatus];
248
248
  export interface EnvironmentTier {
249
- Name?: string;
250
- Type?: string;
251
- Version?: string;
249
+ Name?: string | undefined;
250
+ Type?: string | undefined;
251
+ Version?: string | undefined;
252
252
  }
253
253
  export interface EnvironmentDescription {
254
- EnvironmentName?: string;
255
- EnvironmentId?: string;
256
- ApplicationName?: string;
257
- VersionLabel?: string;
258
- SolutionStackName?: string;
259
- PlatformArn?: string;
260
- TemplateName?: string;
261
- Description?: string;
262
- EndpointURL?: string;
263
- CNAME?: string;
264
- DateCreated?: Date;
265
- DateUpdated?: Date;
266
- Status?: EnvironmentStatus;
267
- AbortableOperationInProgress?: boolean;
268
- Health?: EnvironmentHealth;
269
- HealthStatus?: EnvironmentHealthStatus;
270
- Resources?: EnvironmentResourcesDescription;
271
- Tier?: EnvironmentTier;
272
- EnvironmentLinks?: EnvironmentLink[];
273
- EnvironmentArn?: string;
274
- OperationsRole?: string;
254
+ EnvironmentName?: string | undefined;
255
+ EnvironmentId?: string | undefined;
256
+ ApplicationName?: string | undefined;
257
+ VersionLabel?: string | undefined;
258
+ SolutionStackName?: string | undefined;
259
+ PlatformArn?: string | undefined;
260
+ TemplateName?: string | undefined;
261
+ Description?: string | undefined;
262
+ EndpointURL?: string | undefined;
263
+ CNAME?: string | undefined;
264
+ DateCreated?: Date | undefined;
265
+ DateUpdated?: Date | undefined;
266
+ Status?: EnvironmentStatus | undefined;
267
+ AbortableOperationInProgress?: boolean | undefined;
268
+ Health?: EnvironmentHealth | undefined;
269
+ HealthStatus?: EnvironmentHealthStatus | undefined;
270
+ Resources?: EnvironmentResourcesDescription | undefined;
271
+ Tier?: EnvironmentTier | undefined;
272
+ EnvironmentLinks?: EnvironmentLink[] | undefined;
273
+ EnvironmentArn?: string | undefined;
274
+ OperationsRole?: string | undefined;
275
275
  }
276
276
  export interface EnvironmentDescriptionsMessage {
277
- Environments?: EnvironmentDescription[];
278
- NextToken?: string;
277
+ Environments?: EnvironmentDescription[] | undefined;
278
+ NextToken?: string | undefined;
279
279
  }
280
280
  export declare class TooManyEnvironmentsException extends __BaseException {
281
281
  readonly name: "TooManyEnvironmentsException";
@@ -285,14 +285,14 @@ export declare class TooManyEnvironmentsException extends __BaseException {
285
285
  );
286
286
  }
287
287
  export interface Tag {
288
- Key?: string;
289
- Value?: string;
288
+ Key?: string | undefined;
289
+ Value?: string | undefined;
290
290
  }
291
291
  export interface CreateApplicationMessage {
292
292
  ApplicationName: string | undefined;
293
- Description?: string;
294
- ResourceLifecycleConfig?: ApplicationResourceLifecycleConfig;
295
- Tags?: Tag[];
293
+ Description?: string | undefined;
294
+ ResourceLifecycleConfig?: ApplicationResourceLifecycleConfig | undefined;
295
+ Tags?: Tag[] | undefined;
296
296
  }
297
297
  export declare class TooManyApplicationsException extends __BaseException {
298
298
  readonly name: "TooManyApplicationsException";
@@ -318,22 +318,22 @@ export declare const ComputeType: {
318
318
  };
319
319
  export type ComputeType = (typeof ComputeType)[keyof typeof ComputeType];
320
320
  export interface BuildConfiguration {
321
- ArtifactName?: string;
321
+ ArtifactName?: string | undefined;
322
322
  CodeBuildServiceRole: string | undefined;
323
- ComputeType?: ComputeType;
323
+ ComputeType?: ComputeType | undefined;
324
324
  Image: string | undefined;
325
- TimeoutInMinutes?: number;
325
+ TimeoutInMinutes?: number | undefined;
326
326
  }
327
327
  export interface CreateApplicationVersionMessage {
328
328
  ApplicationName: string | undefined;
329
329
  VersionLabel: string | undefined;
330
- Description?: string;
331
- SourceBuildInformation?: SourceBuildInformation;
332
- SourceBundle?: S3Location;
333
- BuildConfiguration?: BuildConfiguration;
334
- AutoCreateApplication?: boolean;
335
- Process?: boolean;
336
- Tags?: Tag[];
330
+ Description?: string | undefined;
331
+ SourceBuildInformation?: SourceBuildInformation | undefined;
332
+ SourceBundle?: S3Location | undefined;
333
+ BuildConfiguration?: BuildConfiguration | undefined;
334
+ AutoCreateApplication?: boolean | undefined;
335
+ Process?: boolean | undefined;
336
+ Tags?: Tag[] | undefined;
337
337
  }
338
338
  export declare class S3LocationNotInServiceRegionException extends __BaseException {
339
339
  readonly name: "S3LocationNotInServiceRegionException";
@@ -363,37 +363,37 @@ export declare const ConfigurationDeploymentStatus: {
363
363
  export type ConfigurationDeploymentStatus =
364
364
  (typeof ConfigurationDeploymentStatus)[keyof typeof ConfigurationDeploymentStatus];
365
365
  export interface ConfigurationOptionSetting {
366
- ResourceName?: string;
367
- Namespace?: string;
368
- OptionName?: string;
369
- Value?: string;
366
+ ResourceName?: string | undefined;
367
+ Namespace?: string | undefined;
368
+ OptionName?: string | undefined;
369
+ Value?: string | undefined;
370
370
  }
371
371
  export interface ConfigurationSettingsDescription {
372
- SolutionStackName?: string;
373
- PlatformArn?: string;
374
- ApplicationName?: string;
375
- TemplateName?: string;
376
- Description?: string;
377
- EnvironmentName?: string;
378
- DeploymentStatus?: ConfigurationDeploymentStatus;
379
- DateCreated?: Date;
380
- DateUpdated?: Date;
381
- OptionSettings?: ConfigurationOptionSetting[];
372
+ SolutionStackName?: string | undefined;
373
+ PlatformArn?: string | undefined;
374
+ ApplicationName?: string | undefined;
375
+ TemplateName?: string | undefined;
376
+ Description?: string | undefined;
377
+ EnvironmentName?: string | undefined;
378
+ DeploymentStatus?: ConfigurationDeploymentStatus | undefined;
379
+ DateCreated?: Date | undefined;
380
+ DateUpdated?: Date | undefined;
381
+ OptionSettings?: ConfigurationOptionSetting[] | undefined;
382
382
  }
383
383
  export interface SourceConfiguration {
384
- ApplicationName?: string;
385
- TemplateName?: string;
384
+ ApplicationName?: string | undefined;
385
+ TemplateName?: string | undefined;
386
386
  }
387
387
  export interface CreateConfigurationTemplateMessage {
388
388
  ApplicationName: string | undefined;
389
389
  TemplateName: string | undefined;
390
- SolutionStackName?: string;
391
- PlatformArn?: string;
392
- SourceConfiguration?: SourceConfiguration;
393
- EnvironmentId?: string;
394
- Description?: string;
395
- OptionSettings?: ConfigurationOptionSetting[];
396
- Tags?: Tag[];
390
+ SolutionStackName?: string | undefined;
391
+ PlatformArn?: string | undefined;
392
+ SourceConfiguration?: SourceConfiguration | undefined;
393
+ EnvironmentId?: string | undefined;
394
+ Description?: string | undefined;
395
+ OptionSettings?: ConfigurationOptionSetting[] | undefined;
396
+ Tags?: Tag[] | undefined;
397
397
  }
398
398
  export declare class TooManyBucketsException extends __BaseException {
399
399
  readonly name: "TooManyBucketsException";
@@ -413,36 +413,36 @@ export declare class TooManyConfigurationTemplatesException extends __BaseExcept
413
413
  );
414
414
  }
415
415
  export interface OptionSpecification {
416
- ResourceName?: string;
417
- Namespace?: string;
418
- OptionName?: string;
416
+ ResourceName?: string | undefined;
417
+ Namespace?: string | undefined;
418
+ OptionName?: string | undefined;
419
419
  }
420
420
  export interface CreateEnvironmentMessage {
421
421
  ApplicationName: string | undefined;
422
- EnvironmentName?: string;
423
- GroupName?: string;
424
- Description?: string;
425
- CNAMEPrefix?: string;
426
- Tier?: EnvironmentTier;
427
- Tags?: Tag[];
428
- VersionLabel?: string;
429
- TemplateName?: string;
430
- SolutionStackName?: string;
431
- PlatformArn?: string;
432
- OptionSettings?: ConfigurationOptionSetting[];
433
- OptionsToRemove?: OptionSpecification[];
434
- OperationsRole?: string;
422
+ EnvironmentName?: string | undefined;
423
+ GroupName?: string | undefined;
424
+ Description?: string | undefined;
425
+ CNAMEPrefix?: string | undefined;
426
+ Tier?: EnvironmentTier | undefined;
427
+ Tags?: Tag[] | undefined;
428
+ VersionLabel?: string | undefined;
429
+ TemplateName?: string | undefined;
430
+ SolutionStackName?: string | undefined;
431
+ PlatformArn?: string | undefined;
432
+ OptionSettings?: ConfigurationOptionSetting[] | undefined;
433
+ OptionsToRemove?: OptionSpecification[] | undefined;
434
+ OperationsRole?: string | undefined;
435
435
  }
436
436
  export interface CreatePlatformVersionRequest {
437
437
  PlatformName: string | undefined;
438
438
  PlatformVersion: string | undefined;
439
439
  PlatformDefinitionBundle: S3Location | undefined;
440
- EnvironmentName?: string;
441
- OptionSettings?: ConfigurationOptionSetting[];
442
- Tags?: Tag[];
440
+ EnvironmentName?: string | undefined;
441
+ OptionSettings?: ConfigurationOptionSetting[] | undefined;
442
+ Tags?: Tag[] | undefined;
443
443
  }
444
444
  export interface Builder {
445
- ARN?: string;
445
+ ARN?: string | undefined;
446
446
  }
447
447
  export declare const PlatformStatus: {
448
448
  readonly Creating: "Creating";
@@ -454,22 +454,22 @@ export declare const PlatformStatus: {
454
454
  export type PlatformStatus =
455
455
  (typeof PlatformStatus)[keyof typeof PlatformStatus];
456
456
  export interface PlatformSummary {
457
- PlatformArn?: string;
458
- PlatformOwner?: string;
459
- PlatformStatus?: PlatformStatus;
460
- PlatformCategory?: string;
461
- OperatingSystemName?: string;
462
- OperatingSystemVersion?: string;
463
- SupportedTierList?: string[];
464
- SupportedAddonList?: string[];
465
- PlatformLifecycleState?: string;
466
- PlatformVersion?: string;
467
- PlatformBranchName?: string;
468
- PlatformBranchLifecycleState?: string;
457
+ PlatformArn?: string | undefined;
458
+ PlatformOwner?: string | undefined;
459
+ PlatformStatus?: PlatformStatus | undefined;
460
+ PlatformCategory?: string | undefined;
461
+ OperatingSystemName?: string | undefined;
462
+ OperatingSystemVersion?: string | undefined;
463
+ SupportedTierList?: string[] | undefined;
464
+ SupportedAddonList?: string[] | undefined;
465
+ PlatformLifecycleState?: string | undefined;
466
+ PlatformVersion?: string | undefined;
467
+ PlatformBranchName?: string | undefined;
468
+ PlatformBranchLifecycleState?: string | undefined;
469
469
  }
470
470
  export interface CreatePlatformVersionResult {
471
- PlatformSummary?: PlatformSummary;
472
- Builder?: Builder;
471
+ PlatformSummary?: PlatformSummary | undefined;
472
+ Builder?: Builder | undefined;
473
473
  }
474
474
  export declare class TooManyPlatformsException extends __BaseException {
475
475
  readonly name: "TooManyPlatformsException";
@@ -479,7 +479,7 @@ export declare class TooManyPlatformsException extends __BaseException {
479
479
  );
480
480
  }
481
481
  export interface CreateStorageLocationResultMessage {
482
- S3Bucket?: string;
482
+ S3Bucket?: string | undefined;
483
483
  }
484
484
  export declare class S3SubscriptionRequiredException extends __BaseException {
485
485
  readonly name: "S3SubscriptionRequiredException";
@@ -493,7 +493,7 @@ export declare class S3SubscriptionRequiredException extends __BaseException {
493
493
  }
494
494
  export interface DeleteApplicationMessage {
495
495
  ApplicationName: string | undefined;
496
- TerminateEnvByForce?: boolean;
496
+ TerminateEnvByForce?: boolean | undefined;
497
497
  }
498
498
  export declare class OperationInProgressException extends __BaseException {
499
499
  readonly name: "OperationInProgressException";
@@ -505,7 +505,7 @@ export declare class OperationInProgressException extends __BaseException {
505
505
  export interface DeleteApplicationVersionMessage {
506
506
  ApplicationName: string | undefined;
507
507
  VersionLabel: string | undefined;
508
- DeleteSourceBundle?: boolean;
508
+ DeleteSourceBundle?: boolean | undefined;
509
509
  }
510
510
  export declare class SourceBundleDeletionException extends __BaseException {
511
511
  readonly name: "SourceBundleDeletionException";
@@ -523,10 +523,10 @@ export interface DeleteEnvironmentConfigurationMessage {
523
523
  EnvironmentName: string | undefined;
524
524
  }
525
525
  export interface DeletePlatformVersionRequest {
526
- PlatformArn?: string;
526
+ PlatformArn?: string | undefined;
527
527
  }
528
528
  export interface DeletePlatformVersionResult {
529
- PlatformSummary?: PlatformSummary;
529
+ PlatformSummary?: PlatformSummary | undefined;
530
530
  }
531
531
  export declare class PlatformVersionStillReferencedException extends __BaseException {
532
532
  readonly name: "PlatformVersionStillReferencedException";
@@ -539,30 +539,30 @@ export declare class PlatformVersionStillReferencedException extends __BaseExcep
539
539
  );
540
540
  }
541
541
  export interface ResourceQuota {
542
- Maximum?: number;
542
+ Maximum?: number | undefined;
543
543
  }
544
544
  export interface ResourceQuotas {
545
- ApplicationQuota?: ResourceQuota;
546
- ApplicationVersionQuota?: ResourceQuota;
547
- EnvironmentQuota?: ResourceQuota;
548
- ConfigurationTemplateQuota?: ResourceQuota;
549
- CustomPlatformQuota?: ResourceQuota;
545
+ ApplicationQuota?: ResourceQuota | undefined;
546
+ ApplicationVersionQuota?: ResourceQuota | undefined;
547
+ EnvironmentQuota?: ResourceQuota | undefined;
548
+ ConfigurationTemplateQuota?: ResourceQuota | undefined;
549
+ CustomPlatformQuota?: ResourceQuota | undefined;
550
550
  }
551
551
  export interface DescribeAccountAttributesResult {
552
- ResourceQuotas?: ResourceQuotas;
552
+ ResourceQuotas?: ResourceQuotas | undefined;
553
553
  }
554
554
  export interface DescribeApplicationsMessage {
555
- ApplicationNames?: string[];
555
+ ApplicationNames?: string[] | undefined;
556
556
  }
557
557
  export interface DescribeApplicationVersionsMessage {
558
- ApplicationName?: string;
559
- VersionLabels?: string[];
560
- MaxRecords?: number;
561
- NextToken?: string;
558
+ ApplicationName?: string | undefined;
559
+ VersionLabels?: string[] | undefined;
560
+ MaxRecords?: number | undefined;
561
+ NextToken?: string | undefined;
562
562
  }
563
563
  export interface OptionRestrictionRegex {
564
- Pattern?: string;
565
- Label?: string;
564
+ Pattern?: string | undefined;
565
+ Label?: string | undefined;
566
566
  }
567
567
  export declare const ConfigurationOptionValueType: {
568
568
  readonly List: "List";
@@ -571,38 +571,38 @@ export declare const ConfigurationOptionValueType: {
571
571
  export type ConfigurationOptionValueType =
572
572
  (typeof ConfigurationOptionValueType)[keyof typeof ConfigurationOptionValueType];
573
573
  export interface ConfigurationOptionDescription {
574
- Namespace?: string;
575
- Name?: string;
576
- DefaultValue?: string;
577
- ChangeSeverity?: string;
578
- UserDefined?: boolean;
579
- ValueType?: ConfigurationOptionValueType;
580
- ValueOptions?: string[];
581
- MinValue?: number;
582
- MaxValue?: number;
583
- MaxLength?: number;
584
- Regex?: OptionRestrictionRegex;
574
+ Namespace?: string | undefined;
575
+ Name?: string | undefined;
576
+ DefaultValue?: string | undefined;
577
+ ChangeSeverity?: string | undefined;
578
+ UserDefined?: boolean | undefined;
579
+ ValueType?: ConfigurationOptionValueType | undefined;
580
+ ValueOptions?: string[] | undefined;
581
+ MinValue?: number | undefined;
582
+ MaxValue?: number | undefined;
583
+ MaxLength?: number | undefined;
584
+ Regex?: OptionRestrictionRegex | undefined;
585
585
  }
586
586
  export interface ConfigurationOptionsDescription {
587
- SolutionStackName?: string;
588
- PlatformArn?: string;
589
- Options?: ConfigurationOptionDescription[];
587
+ SolutionStackName?: string | undefined;
588
+ PlatformArn?: string | undefined;
589
+ Options?: ConfigurationOptionDescription[] | undefined;
590
590
  }
591
591
  export interface DescribeConfigurationOptionsMessage {
592
- ApplicationName?: string;
593
- TemplateName?: string;
594
- EnvironmentName?: string;
595
- SolutionStackName?: string;
596
- PlatformArn?: string;
597
- Options?: OptionSpecification[];
592
+ ApplicationName?: string | undefined;
593
+ TemplateName?: string | undefined;
594
+ EnvironmentName?: string | undefined;
595
+ SolutionStackName?: string | undefined;
596
+ PlatformArn?: string | undefined;
597
+ Options?: OptionSpecification[] | undefined;
598
598
  }
599
599
  export interface ConfigurationSettingsDescriptions {
600
- ConfigurationSettings?: ConfigurationSettingsDescription[];
600
+ ConfigurationSettings?: ConfigurationSettingsDescription[] | undefined;
601
601
  }
602
602
  export interface DescribeConfigurationSettingsMessage {
603
603
  ApplicationName: string | undefined;
604
- TemplateName?: string;
605
- EnvironmentName?: string;
604
+ TemplateName?: string | undefined;
605
+ EnvironmentName?: string | undefined;
606
606
  }
607
607
  export declare const EnvironmentHealthAttribute: {
608
608
  readonly All: "All";
@@ -617,29 +617,29 @@ export declare const EnvironmentHealthAttribute: {
617
617
  export type EnvironmentHealthAttribute =
618
618
  (typeof EnvironmentHealthAttribute)[keyof typeof EnvironmentHealthAttribute];
619
619
  export interface DescribeEnvironmentHealthRequest {
620
- EnvironmentName?: string;
621
- EnvironmentId?: string;
622
- AttributeNames?: EnvironmentHealthAttribute[];
620
+ EnvironmentName?: string | undefined;
621
+ EnvironmentId?: string | undefined;
622
+ AttributeNames?: EnvironmentHealthAttribute[] | undefined;
623
623
  }
624
624
  export interface InstanceHealthSummary {
625
- NoData?: number;
626
- Unknown?: number;
627
- Pending?: number;
628
- Ok?: number;
629
- Info?: number;
630
- Warning?: number;
631
- Degraded?: number;
632
- Severe?: number;
625
+ NoData?: number | undefined;
626
+ Unknown?: number | undefined;
627
+ Pending?: number | undefined;
628
+ Ok?: number | undefined;
629
+ Info?: number | undefined;
630
+ Warning?: number | undefined;
631
+ Degraded?: number | undefined;
632
+ Severe?: number | undefined;
633
633
  }
634
634
  export interface DescribeEnvironmentHealthResult {
635
- EnvironmentName?: string;
636
- HealthStatus?: string;
637
- Status?: EnvironmentHealth;
638
- Color?: string;
639
- Causes?: string[];
640
- ApplicationMetrics?: ApplicationMetrics;
641
- InstancesHealth?: InstanceHealthSummary;
642
- RefreshedAt?: Date;
635
+ EnvironmentName?: string | undefined;
636
+ HealthStatus?: string | undefined;
637
+ Status?: EnvironmentHealth | undefined;
638
+ Color?: string | undefined;
639
+ Causes?: string[] | undefined;
640
+ ApplicationMetrics?: ApplicationMetrics | undefined;
641
+ InstancesHealth?: InstanceHealthSummary | undefined;
642
+ RefreshedAt?: Date | undefined;
643
643
  }
644
644
  export declare class InvalidRequestException extends __BaseException {
645
645
  readonly name: "InvalidRequestException";
@@ -649,10 +649,10 @@ export declare class InvalidRequestException extends __BaseException {
649
649
  );
650
650
  }
651
651
  export interface DescribeEnvironmentManagedActionHistoryRequest {
652
- EnvironmentId?: string;
653
- EnvironmentName?: string;
654
- NextToken?: string;
655
- MaxItems?: number;
652
+ EnvironmentId?: string | undefined;
653
+ EnvironmentName?: string | undefined;
654
+ NextToken?: string | undefined;
655
+ MaxItems?: number | undefined;
656
656
  }
657
657
  export declare const FailureType: {
658
658
  readonly CancellationFailed: "CancellationFailed";
@@ -665,79 +665,79 @@ export declare const FailureType: {
665
665
  };
666
666
  export type FailureType = (typeof FailureType)[keyof typeof FailureType];
667
667
  export interface ManagedActionHistoryItem {
668
- ActionId?: string;
669
- ActionType?: ActionType;
670
- ActionDescription?: string;
671
- FailureType?: FailureType;
672
- Status?: ActionHistoryStatus;
673
- FailureDescription?: string;
674
- ExecutedTime?: Date;
675
- FinishedTime?: Date;
668
+ ActionId?: string | undefined;
669
+ ActionType?: ActionType | undefined;
670
+ ActionDescription?: string | undefined;
671
+ FailureType?: FailureType | undefined;
672
+ Status?: ActionHistoryStatus | undefined;
673
+ FailureDescription?: string | undefined;
674
+ ExecutedTime?: Date | undefined;
675
+ FinishedTime?: Date | undefined;
676
676
  }
677
677
  export interface DescribeEnvironmentManagedActionHistoryResult {
678
- ManagedActionHistoryItems?: ManagedActionHistoryItem[];
679
- NextToken?: string;
678
+ ManagedActionHistoryItems?: ManagedActionHistoryItem[] | undefined;
679
+ NextToken?: string | undefined;
680
680
  }
681
681
  export interface DescribeEnvironmentManagedActionsRequest {
682
- EnvironmentName?: string;
683
- EnvironmentId?: string;
684
- Status?: ActionStatus;
682
+ EnvironmentName?: string | undefined;
683
+ EnvironmentId?: string | undefined;
684
+ Status?: ActionStatus | undefined;
685
685
  }
686
686
  export interface ManagedAction {
687
- ActionId?: string;
688
- ActionDescription?: string;
689
- ActionType?: ActionType;
690
- Status?: ActionStatus;
691
- WindowStartTime?: Date;
687
+ ActionId?: string | undefined;
688
+ ActionDescription?: string | undefined;
689
+ ActionType?: ActionType | undefined;
690
+ Status?: ActionStatus | undefined;
691
+ WindowStartTime?: Date | undefined;
692
692
  }
693
693
  export interface DescribeEnvironmentManagedActionsResult {
694
- ManagedActions?: ManagedAction[];
694
+ ManagedActions?: ManagedAction[] | undefined;
695
695
  }
696
696
  export interface DescribeEnvironmentResourcesMessage {
697
- EnvironmentId?: string;
698
- EnvironmentName?: string;
697
+ EnvironmentId?: string | undefined;
698
+ EnvironmentName?: string | undefined;
699
699
  }
700
700
  export interface Instance {
701
- Id?: string;
701
+ Id?: string | undefined;
702
702
  }
703
703
  export interface LaunchConfiguration {
704
- Name?: string;
704
+ Name?: string | undefined;
705
705
  }
706
706
  export interface LaunchTemplate {
707
- Id?: string;
707
+ Id?: string | undefined;
708
708
  }
709
709
  export interface LoadBalancer {
710
- Name?: string;
710
+ Name?: string | undefined;
711
711
  }
712
712
  export interface Queue {
713
- Name?: string;
714
- URL?: string;
713
+ Name?: string | undefined;
714
+ URL?: string | undefined;
715
715
  }
716
716
  export interface Trigger {
717
- Name?: string;
717
+ Name?: string | undefined;
718
718
  }
719
719
  export interface EnvironmentResourceDescription {
720
- EnvironmentName?: string;
721
- AutoScalingGroups?: AutoScalingGroup[];
722
- Instances?: Instance[];
723
- LaunchConfigurations?: LaunchConfiguration[];
724
- LaunchTemplates?: LaunchTemplate[];
725
- LoadBalancers?: LoadBalancer[];
726
- Triggers?: Trigger[];
727
- Queues?: Queue[];
720
+ EnvironmentName?: string | undefined;
721
+ AutoScalingGroups?: AutoScalingGroup[] | undefined;
722
+ Instances?: Instance[] | undefined;
723
+ LaunchConfigurations?: LaunchConfiguration[] | undefined;
724
+ LaunchTemplates?: LaunchTemplate[] | undefined;
725
+ LoadBalancers?: LoadBalancer[] | undefined;
726
+ Triggers?: Trigger[] | undefined;
727
+ Queues?: Queue[] | undefined;
728
728
  }
729
729
  export interface EnvironmentResourceDescriptionsMessage {
730
- EnvironmentResources?: EnvironmentResourceDescription;
730
+ EnvironmentResources?: EnvironmentResourceDescription | undefined;
731
731
  }
732
732
  export interface DescribeEnvironmentsMessage {
733
- ApplicationName?: string;
734
- VersionLabel?: string;
735
- EnvironmentIds?: string[];
736
- EnvironmentNames?: string[];
737
- IncludeDeleted?: boolean;
738
- IncludedDeletedBackTo?: Date;
739
- MaxRecords?: number;
740
- NextToken?: string;
733
+ ApplicationName?: string | undefined;
734
+ VersionLabel?: string | undefined;
735
+ EnvironmentIds?: string[] | undefined;
736
+ EnvironmentNames?: string[] | undefined;
737
+ IncludeDeleted?: boolean | undefined;
738
+ IncludedDeletedBackTo?: Date | undefined;
739
+ MaxRecords?: number | undefined;
740
+ NextToken?: string | undefined;
741
741
  }
742
742
  export declare const EventSeverity: {
743
743
  readonly DEBUG: "DEBUG";
@@ -749,33 +749,33 @@ export declare const EventSeverity: {
749
749
  };
750
750
  export type EventSeverity = (typeof EventSeverity)[keyof typeof EventSeverity];
751
751
  export interface DescribeEventsMessage {
752
- ApplicationName?: string;
753
- VersionLabel?: string;
754
- TemplateName?: string;
755
- EnvironmentId?: string;
756
- EnvironmentName?: string;
757
- PlatformArn?: string;
758
- RequestId?: string;
759
- Severity?: EventSeverity;
760
- StartTime?: Date;
761
- EndTime?: Date;
762
- MaxRecords?: number;
763
- NextToken?: string;
752
+ ApplicationName?: string | undefined;
753
+ VersionLabel?: string | undefined;
754
+ TemplateName?: string | undefined;
755
+ EnvironmentId?: string | undefined;
756
+ EnvironmentName?: string | undefined;
757
+ PlatformArn?: string | undefined;
758
+ RequestId?: string | undefined;
759
+ Severity?: EventSeverity | undefined;
760
+ StartTime?: Date | undefined;
761
+ EndTime?: Date | undefined;
762
+ MaxRecords?: number | undefined;
763
+ NextToken?: string | undefined;
764
764
  }
765
765
  export interface EventDescription {
766
- EventDate?: Date;
767
- Message?: string;
768
- ApplicationName?: string;
769
- VersionLabel?: string;
770
- TemplateName?: string;
771
- EnvironmentName?: string;
772
- PlatformArn?: string;
773
- RequestId?: string;
774
- Severity?: EventSeverity;
766
+ EventDate?: Date | undefined;
767
+ Message?: string | undefined;
768
+ ApplicationName?: string | undefined;
769
+ VersionLabel?: string | undefined;
770
+ TemplateName?: string | undefined;
771
+ EnvironmentName?: string | undefined;
772
+ PlatformArn?: string | undefined;
773
+ RequestId?: string | undefined;
774
+ Severity?: EventSeverity | undefined;
775
775
  }
776
776
  export interface EventDescriptionsMessage {
777
- Events?: EventDescription[];
778
- NextToken?: string;
777
+ Events?: EventDescription[] | undefined;
778
+ NextToken?: string | undefined;
779
779
  }
780
780
  export declare const InstancesHealthAttribute: {
781
781
  readonly All: "All";
@@ -793,130 +793,130 @@ export declare const InstancesHealthAttribute: {
793
793
  export type InstancesHealthAttribute =
794
794
  (typeof InstancesHealthAttribute)[keyof typeof InstancesHealthAttribute];
795
795
  export interface DescribeInstancesHealthRequest {
796
- EnvironmentName?: string;
797
- EnvironmentId?: string;
798
- AttributeNames?: InstancesHealthAttribute[];
799
- NextToken?: string;
796
+ EnvironmentName?: string | undefined;
797
+ EnvironmentId?: string | undefined;
798
+ AttributeNames?: InstancesHealthAttribute[] | undefined;
799
+ NextToken?: string | undefined;
800
800
  }
801
801
  export interface Deployment {
802
- VersionLabel?: string;
803
- DeploymentId?: number;
804
- Status?: string;
805
- DeploymentTime?: Date;
802
+ VersionLabel?: string | undefined;
803
+ DeploymentId?: number | undefined;
804
+ Status?: string | undefined;
805
+ DeploymentTime?: Date | undefined;
806
806
  }
807
807
  export interface CPUUtilization {
808
- User?: number;
809
- Nice?: number;
810
- System?: number;
811
- Idle?: number;
812
- IOWait?: number;
813
- IRQ?: number;
814
- SoftIRQ?: number;
815
- Privileged?: number;
808
+ User?: number | undefined;
809
+ Nice?: number | undefined;
810
+ System?: number | undefined;
811
+ Idle?: number | undefined;
812
+ IOWait?: number | undefined;
813
+ IRQ?: number | undefined;
814
+ SoftIRQ?: number | undefined;
815
+ Privileged?: number | undefined;
816
816
  }
817
817
  export interface SystemStatus {
818
- CPUUtilization?: CPUUtilization;
819
- LoadAverage?: number[];
818
+ CPUUtilization?: CPUUtilization | undefined;
819
+ LoadAverage?: number[] | undefined;
820
820
  }
821
821
  export interface SingleInstanceHealth {
822
- InstanceId?: string;
823
- HealthStatus?: string;
824
- Color?: string;
825
- Causes?: string[];
826
- LaunchedAt?: Date;
827
- ApplicationMetrics?: ApplicationMetrics;
828
- System?: SystemStatus;
829
- Deployment?: Deployment;
830
- AvailabilityZone?: string;
831
- InstanceType?: string;
822
+ InstanceId?: string | undefined;
823
+ HealthStatus?: string | undefined;
824
+ Color?: string | undefined;
825
+ Causes?: string[] | undefined;
826
+ LaunchedAt?: Date | undefined;
827
+ ApplicationMetrics?: ApplicationMetrics | undefined;
828
+ System?: SystemStatus | undefined;
829
+ Deployment?: Deployment | undefined;
830
+ AvailabilityZone?: string | undefined;
831
+ InstanceType?: string | undefined;
832
832
  }
833
833
  export interface DescribeInstancesHealthResult {
834
- InstanceHealthList?: SingleInstanceHealth[];
835
- RefreshedAt?: Date;
836
- NextToken?: string;
834
+ InstanceHealthList?: SingleInstanceHealth[] | undefined;
835
+ RefreshedAt?: Date | undefined;
836
+ NextToken?: string | undefined;
837
837
  }
838
838
  export interface DescribePlatformVersionRequest {
839
- PlatformArn?: string;
839
+ PlatformArn?: string | undefined;
840
840
  }
841
841
  export interface CustomAmi {
842
- VirtualizationType?: string;
843
- ImageId?: string;
842
+ VirtualizationType?: string | undefined;
843
+ ImageId?: string | undefined;
844
844
  }
845
845
  export interface PlatformFramework {
846
- Name?: string;
847
- Version?: string;
846
+ Name?: string | undefined;
847
+ Version?: string | undefined;
848
848
  }
849
849
  export interface PlatformProgrammingLanguage {
850
- Name?: string;
851
- Version?: string;
850
+ Name?: string | undefined;
851
+ Version?: string | undefined;
852
852
  }
853
853
  export interface PlatformDescription {
854
- PlatformArn?: string;
855
- PlatformOwner?: string;
856
- PlatformName?: string;
857
- PlatformVersion?: string;
858
- SolutionStackName?: string;
859
- PlatformStatus?: PlatformStatus;
860
- DateCreated?: Date;
861
- DateUpdated?: Date;
862
- PlatformCategory?: string;
863
- Description?: string;
864
- Maintainer?: string;
865
- OperatingSystemName?: string;
866
- OperatingSystemVersion?: string;
867
- ProgrammingLanguages?: PlatformProgrammingLanguage[];
868
- Frameworks?: PlatformFramework[];
869
- CustomAmiList?: CustomAmi[];
870
- SupportedTierList?: string[];
871
- SupportedAddonList?: string[];
872
- PlatformLifecycleState?: string;
873
- PlatformBranchName?: string;
874
- PlatformBranchLifecycleState?: string;
854
+ PlatformArn?: string | undefined;
855
+ PlatformOwner?: string | undefined;
856
+ PlatformName?: string | undefined;
857
+ PlatformVersion?: string | undefined;
858
+ SolutionStackName?: string | undefined;
859
+ PlatformStatus?: PlatformStatus | undefined;
860
+ DateCreated?: Date | undefined;
861
+ DateUpdated?: Date | undefined;
862
+ PlatformCategory?: string | undefined;
863
+ Description?: string | undefined;
864
+ Maintainer?: string | undefined;
865
+ OperatingSystemName?: string | undefined;
866
+ OperatingSystemVersion?: string | undefined;
867
+ ProgrammingLanguages?: PlatformProgrammingLanguage[] | undefined;
868
+ Frameworks?: PlatformFramework[] | undefined;
869
+ CustomAmiList?: CustomAmi[] | undefined;
870
+ SupportedTierList?: string[] | undefined;
871
+ SupportedAddonList?: string[] | undefined;
872
+ PlatformLifecycleState?: string | undefined;
873
+ PlatformBranchName?: string | undefined;
874
+ PlatformBranchLifecycleState?: string | undefined;
875
875
  }
876
876
  export interface DescribePlatformVersionResult {
877
- PlatformDescription?: PlatformDescription;
877
+ PlatformDescription?: PlatformDescription | undefined;
878
878
  }
879
879
  export interface DisassociateEnvironmentOperationsRoleMessage {
880
880
  EnvironmentName: string | undefined;
881
881
  }
882
882
  export interface ListAvailableSolutionStacksResultMessage {
883
- SolutionStacks?: string[];
884
- SolutionStackDetails?: SolutionStackDescription[];
883
+ SolutionStacks?: string[] | undefined;
884
+ SolutionStackDetails?: SolutionStackDescription[] | undefined;
885
885
  }
886
886
  export interface SearchFilter {
887
- Attribute?: string;
888
- Operator?: string;
889
- Values?: string[];
887
+ Attribute?: string | undefined;
888
+ Operator?: string | undefined;
889
+ Values?: string[] | undefined;
890
890
  }
891
891
  export interface ListPlatformBranchesRequest {
892
- Filters?: SearchFilter[];
893
- MaxRecords?: number;
894
- NextToken?: string;
892
+ Filters?: SearchFilter[] | undefined;
893
+ MaxRecords?: number | undefined;
894
+ NextToken?: string | undefined;
895
895
  }
896
896
  export interface PlatformBranchSummary {
897
- PlatformName?: string;
898
- BranchName?: string;
899
- LifecycleState?: string;
900
- BranchOrder?: number;
901
- SupportedTierList?: string[];
897
+ PlatformName?: string | undefined;
898
+ BranchName?: string | undefined;
899
+ LifecycleState?: string | undefined;
900
+ BranchOrder?: number | undefined;
901
+ SupportedTierList?: string[] | undefined;
902
902
  }
903
903
  export interface ListPlatformBranchesResult {
904
- PlatformBranchSummaryList?: PlatformBranchSummary[];
905
- NextToken?: string;
904
+ PlatformBranchSummaryList?: PlatformBranchSummary[] | undefined;
905
+ NextToken?: string | undefined;
906
906
  }
907
907
  export interface PlatformFilter {
908
- Type?: string;
909
- Operator?: string;
910
- Values?: string[];
908
+ Type?: string | undefined;
909
+ Operator?: string | undefined;
910
+ Values?: string[] | undefined;
911
911
  }
912
912
  export interface ListPlatformVersionsRequest {
913
- Filters?: PlatformFilter[];
914
- MaxRecords?: number;
915
- NextToken?: string;
913
+ Filters?: PlatformFilter[] | undefined;
914
+ MaxRecords?: number | undefined;
915
+ NextToken?: string | undefined;
916
916
  }
917
917
  export interface ListPlatformVersionsResult {
918
- PlatformSummaryList?: PlatformSummary[];
919
- NextToken?: string;
918
+ PlatformSummaryList?: PlatformSummary[] | undefined;
919
+ NextToken?: string | undefined;
920
920
  }
921
921
  export interface ListTagsForResourceMessage {
922
922
  ResourceArn: string | undefined;
@@ -929,8 +929,8 @@ export declare class ResourceNotFoundException extends __BaseException {
929
929
  );
930
930
  }
931
931
  export interface ResourceTagsDescriptionMessage {
932
- ResourceArn?: string;
933
- ResourceTags?: Tag[];
932
+ ResourceArn?: string | undefined;
933
+ ResourceTags?: Tag[] | undefined;
934
934
  }
935
935
  export declare class ResourceTypeNotSupportedException extends __BaseException {
936
936
  readonly name: "ResourceTypeNotSupportedException";
@@ -943,8 +943,8 @@ export declare class ResourceTypeNotSupportedException extends __BaseException {
943
943
  );
944
944
  }
945
945
  export interface RebuildEnvironmentMessage {
946
- EnvironmentId?: string;
947
- EnvironmentName?: string;
946
+ EnvironmentId?: string | undefined;
947
+ EnvironmentName?: string | undefined;
948
948
  }
949
949
  export declare const EnvironmentInfoType: {
950
950
  readonly bundle: "bundle";
@@ -953,43 +953,43 @@ export declare const EnvironmentInfoType: {
953
953
  export type EnvironmentInfoType =
954
954
  (typeof EnvironmentInfoType)[keyof typeof EnvironmentInfoType];
955
955
  export interface RequestEnvironmentInfoMessage {
956
- EnvironmentId?: string;
957
- EnvironmentName?: string;
956
+ EnvironmentId?: string | undefined;
957
+ EnvironmentName?: string | undefined;
958
958
  InfoType: EnvironmentInfoType | undefined;
959
959
  }
960
960
  export interface RestartAppServerMessage {
961
- EnvironmentId?: string;
962
- EnvironmentName?: string;
961
+ EnvironmentId?: string | undefined;
962
+ EnvironmentName?: string | undefined;
963
963
  }
964
964
  export interface RetrieveEnvironmentInfoMessage {
965
- EnvironmentId?: string;
966
- EnvironmentName?: string;
965
+ EnvironmentId?: string | undefined;
966
+ EnvironmentName?: string | undefined;
967
967
  InfoType: EnvironmentInfoType | undefined;
968
968
  }
969
969
  export interface EnvironmentInfoDescription {
970
- InfoType?: EnvironmentInfoType;
971
- Ec2InstanceId?: string;
972
- SampleTimestamp?: Date;
973
- Message?: string;
970
+ InfoType?: EnvironmentInfoType | undefined;
971
+ Ec2InstanceId?: string | undefined;
972
+ SampleTimestamp?: Date | undefined;
973
+ Message?: string | undefined;
974
974
  }
975
975
  export interface RetrieveEnvironmentInfoResultMessage {
976
- EnvironmentInfo?: EnvironmentInfoDescription[];
976
+ EnvironmentInfo?: EnvironmentInfoDescription[] | undefined;
977
977
  }
978
978
  export interface SwapEnvironmentCNAMEsMessage {
979
- SourceEnvironmentId?: string;
980
- SourceEnvironmentName?: string;
981
- DestinationEnvironmentId?: string;
982
- DestinationEnvironmentName?: string;
979
+ SourceEnvironmentId?: string | undefined;
980
+ SourceEnvironmentName?: string | undefined;
981
+ DestinationEnvironmentId?: string | undefined;
982
+ DestinationEnvironmentName?: string | undefined;
983
983
  }
984
984
  export interface TerminateEnvironmentMessage {
985
- EnvironmentId?: string;
986
- EnvironmentName?: string;
987
- TerminateResources?: boolean;
988
- ForceTerminate?: boolean;
985
+ EnvironmentId?: string | undefined;
986
+ EnvironmentName?: string | undefined;
987
+ TerminateResources?: boolean | undefined;
988
+ ForceTerminate?: boolean | undefined;
989
989
  }
990
990
  export interface UpdateApplicationMessage {
991
991
  ApplicationName: string | undefined;
992
- Description?: string;
992
+ Description?: string | undefined;
993
993
  }
994
994
  export interface UpdateApplicationResourceLifecycleMessage {
995
995
  ApplicationName: string | undefined;
@@ -998,28 +998,28 @@ export interface UpdateApplicationResourceLifecycleMessage {
998
998
  export interface UpdateApplicationVersionMessage {
999
999
  ApplicationName: string | undefined;
1000
1000
  VersionLabel: string | undefined;
1001
- Description?: string;
1001
+ Description?: string | undefined;
1002
1002
  }
1003
1003
  export interface UpdateConfigurationTemplateMessage {
1004
1004
  ApplicationName: string | undefined;
1005
1005
  TemplateName: string | undefined;
1006
- Description?: string;
1007
- OptionSettings?: ConfigurationOptionSetting[];
1008
- OptionsToRemove?: OptionSpecification[];
1006
+ Description?: string | undefined;
1007
+ OptionSettings?: ConfigurationOptionSetting[] | undefined;
1008
+ OptionsToRemove?: OptionSpecification[] | undefined;
1009
1009
  }
1010
1010
  export interface UpdateEnvironmentMessage {
1011
- ApplicationName?: string;
1012
- EnvironmentId?: string;
1013
- EnvironmentName?: string;
1014
- GroupName?: string;
1015
- Description?: string;
1016
- Tier?: EnvironmentTier;
1017
- VersionLabel?: string;
1018
- TemplateName?: string;
1019
- SolutionStackName?: string;
1020
- PlatformArn?: string;
1021
- OptionSettings?: ConfigurationOptionSetting[];
1022
- OptionsToRemove?: OptionSpecification[];
1011
+ ApplicationName?: string | undefined;
1012
+ EnvironmentId?: string | undefined;
1013
+ EnvironmentName?: string | undefined;
1014
+ GroupName?: string | undefined;
1015
+ Description?: string | undefined;
1016
+ Tier?: EnvironmentTier | undefined;
1017
+ VersionLabel?: string | undefined;
1018
+ TemplateName?: string | undefined;
1019
+ SolutionStackName?: string | undefined;
1020
+ PlatformArn?: string | undefined;
1021
+ OptionSettings?: ConfigurationOptionSetting[] | undefined;
1022
+ OptionsToRemove?: OptionSpecification[] | undefined;
1023
1023
  }
1024
1024
  export declare class TooManyTagsException extends __BaseException {
1025
1025
  readonly name: "TooManyTagsException";
@@ -1030,8 +1030,8 @@ export declare class TooManyTagsException extends __BaseException {
1030
1030
  }
1031
1031
  export interface UpdateTagsForResourceMessage {
1032
1032
  ResourceArn: string | undefined;
1033
- TagsToAdd?: Tag[];
1034
- TagsToRemove?: string[];
1033
+ TagsToAdd?: Tag[] | undefined;
1034
+ TagsToRemove?: string[] | undefined;
1035
1035
  }
1036
1036
  export declare const ValidationSeverity: {
1037
1037
  readonly error: "error";
@@ -1040,17 +1040,17 @@ export declare const ValidationSeverity: {
1040
1040
  export type ValidationSeverity =
1041
1041
  (typeof ValidationSeverity)[keyof typeof ValidationSeverity];
1042
1042
  export interface ValidationMessage {
1043
- Message?: string;
1044
- Severity?: ValidationSeverity;
1045
- Namespace?: string;
1046
- OptionName?: string;
1043
+ Message?: string | undefined;
1044
+ Severity?: ValidationSeverity | undefined;
1045
+ Namespace?: string | undefined;
1046
+ OptionName?: string | undefined;
1047
1047
  }
1048
1048
  export interface ConfigurationSettingsValidationMessages {
1049
- Messages?: ValidationMessage[];
1049
+ Messages?: ValidationMessage[] | undefined;
1050
1050
  }
1051
1051
  export interface ValidateConfigurationSettingsMessage {
1052
1052
  ApplicationName: string | undefined;
1053
- TemplateName?: string;
1054
- EnvironmentName?: string;
1053
+ TemplateName?: string | undefined;
1054
+ EnvironmentName?: string | undefined;
1055
1055
  OptionSettings: ConfigurationOptionSetting[] | undefined;
1056
1056
  }