@aws-sdk/client-codedeploy 3.52.0 → 3.54.1

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,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { CodeDeployServiceException as __BaseException } from "./CodeDeployServiceException";
2
3
  /**
3
4
  * <p>Information about a tag.</p>
4
5
  */
@@ -43,79 +44,79 @@ export declare namespace AddTagsToOnPremisesInstancesInput {
43
44
  * <p>The maximum number of allowed on-premises instances in a single call was
44
45
  * exceeded.</p>
45
46
  */
46
- export interface InstanceLimitExceededException extends __SmithyException, $MetadataBearer {
47
- name: "InstanceLimitExceededException";
48
- $fault: "client";
47
+ export declare class InstanceLimitExceededException extends __BaseException {
48
+ readonly name: "InstanceLimitExceededException";
49
+ readonly $fault: "client";
49
50
  /**
50
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
51
+ * @internal
51
52
  */
52
- message?: string;
53
+ constructor(opts: __ExceptionOptionType<InstanceLimitExceededException, __BaseException>);
53
54
  }
54
55
  /**
55
56
  * <p>An on-premises instance name was not specified.</p>
56
57
  */
57
- export interface InstanceNameRequiredException extends __SmithyException, $MetadataBearer {
58
- name: "InstanceNameRequiredException";
59
- $fault: "client";
58
+ export declare class InstanceNameRequiredException extends __BaseException {
59
+ readonly name: "InstanceNameRequiredException";
60
+ readonly $fault: "client";
60
61
  /**
61
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
62
+ * @internal
62
63
  */
63
- message?: string;
64
+ constructor(opts: __ExceptionOptionType<InstanceNameRequiredException, __BaseException>);
64
65
  }
65
66
  /**
66
67
  * <p>The specified on-premises instance is not registered.</p>
67
68
  */
68
- export interface InstanceNotRegisteredException extends __SmithyException, $MetadataBearer {
69
- name: "InstanceNotRegisteredException";
70
- $fault: "client";
69
+ export declare class InstanceNotRegisteredException extends __BaseException {
70
+ readonly name: "InstanceNotRegisteredException";
71
+ readonly $fault: "client";
71
72
  /**
72
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
73
+ * @internal
73
74
  */
74
- message?: string;
75
+ constructor(opts: __ExceptionOptionType<InstanceNotRegisteredException, __BaseException>);
75
76
  }
76
77
  /**
77
78
  * <p>The on-premises instance name was specified in an invalid format.</p>
78
79
  */
79
- export interface InvalidInstanceNameException extends __SmithyException, $MetadataBearer {
80
- name: "InvalidInstanceNameException";
81
- $fault: "client";
80
+ export declare class InvalidInstanceNameException extends __BaseException {
81
+ readonly name: "InvalidInstanceNameException";
82
+ readonly $fault: "client";
82
83
  /**
83
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
84
+ * @internal
84
85
  */
85
- message?: string;
86
+ constructor(opts: __ExceptionOptionType<InvalidInstanceNameException, __BaseException>);
86
87
  }
87
88
  /**
88
89
  * <p>The tag was specified in an invalid format.</p>
89
90
  */
90
- export interface InvalidTagException extends __SmithyException, $MetadataBearer {
91
- name: "InvalidTagException";
92
- $fault: "client";
91
+ export declare class InvalidTagException extends __BaseException {
92
+ readonly name: "InvalidTagException";
93
+ readonly $fault: "client";
93
94
  /**
94
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
95
+ * @internal
95
96
  */
96
- message?: string;
97
+ constructor(opts: __ExceptionOptionType<InvalidTagException, __BaseException>);
97
98
  }
98
99
  /**
99
100
  * <p>The maximum allowed number of tags was exceeded.</p>
100
101
  */
101
- export interface TagLimitExceededException extends __SmithyException, $MetadataBearer {
102
- name: "TagLimitExceededException";
103
- $fault: "client";
102
+ export declare class TagLimitExceededException extends __BaseException {
103
+ readonly name: "TagLimitExceededException";
104
+ readonly $fault: "client";
104
105
  /**
105
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
106
+ * @internal
106
107
  */
107
- message?: string;
108
+ constructor(opts: __ExceptionOptionType<TagLimitExceededException, __BaseException>);
108
109
  }
109
110
  /**
110
111
  * <p>A tag was not specified.</p>
111
112
  */
112
- export interface TagRequiredException extends __SmithyException, $MetadataBearer {
113
- name: "TagRequiredException";
114
- $fault: "client";
113
+ export declare class TagRequiredException extends __BaseException {
114
+ readonly name: "TagRequiredException";
115
+ readonly $fault: "client";
115
116
  /**
116
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
117
+ * @internal
117
118
  */
118
- message?: string;
119
+ constructor(opts: __ExceptionOptionType<TagRequiredException, __BaseException>);
119
120
  }
120
121
  /**
121
122
  * <p>Information about an alarm.</p>
@@ -173,36 +174,36 @@ export declare namespace AlarmConfiguration {
173
174
  /**
174
175
  * <p>The maximum number of alarms for a deployment group (10) was exceeded.</p>
175
176
  */
176
- export interface AlarmsLimitExceededException extends __SmithyException, $MetadataBearer {
177
- name: "AlarmsLimitExceededException";
178
- $fault: "client";
177
+ export declare class AlarmsLimitExceededException extends __BaseException {
178
+ readonly name: "AlarmsLimitExceededException";
179
+ readonly $fault: "client";
179
180
  /**
180
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
181
+ * @internal
181
182
  */
182
- message?: string;
183
+ constructor(opts: __ExceptionOptionType<AlarmsLimitExceededException, __BaseException>);
183
184
  }
184
185
  /**
185
186
  * <p>An application with the specified name with the IAM user or AWS account already
186
187
  * exists.</p>
187
188
  */
188
- export interface ApplicationAlreadyExistsException extends __SmithyException, $MetadataBearer {
189
- name: "ApplicationAlreadyExistsException";
190
- $fault: "client";
189
+ export declare class ApplicationAlreadyExistsException extends __BaseException {
190
+ readonly name: "ApplicationAlreadyExistsException";
191
+ readonly $fault: "client";
191
192
  /**
192
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
193
+ * @internal
193
194
  */
194
- message?: string;
195
+ constructor(opts: __ExceptionOptionType<ApplicationAlreadyExistsException, __BaseException>);
195
196
  }
196
197
  /**
197
198
  * <p>The application does not exist with the IAM user or AWS account.</p>
198
199
  */
199
- export interface ApplicationDoesNotExistException extends __SmithyException, $MetadataBearer {
200
- name: "ApplicationDoesNotExistException";
201
- $fault: "client";
200
+ export declare class ApplicationDoesNotExistException extends __BaseException {
201
+ readonly name: "ApplicationDoesNotExistException";
202
+ readonly $fault: "client";
202
203
  /**
203
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
204
+ * @internal
204
205
  */
205
- message?: string;
206
+ constructor(opts: __ExceptionOptionType<ApplicationDoesNotExistException, __BaseException>);
206
207
  }
207
208
  export declare enum ComputePlatform {
208
209
  ECS = "ECS",
@@ -249,24 +250,24 @@ export declare namespace ApplicationInfo {
249
250
  /**
250
251
  * <p>More applications were attempted to be created than are allowed.</p>
251
252
  */
252
- export interface ApplicationLimitExceededException extends __SmithyException, $MetadataBearer {
253
- name: "ApplicationLimitExceededException";
254
- $fault: "client";
253
+ export declare class ApplicationLimitExceededException extends __BaseException {
254
+ readonly name: "ApplicationLimitExceededException";
255
+ readonly $fault: "client";
255
256
  /**
256
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
257
+ * @internal
257
258
  */
258
- message?: string;
259
+ constructor(opts: __ExceptionOptionType<ApplicationLimitExceededException, __BaseException>);
259
260
  }
260
261
  /**
261
262
  * <p>The minimum number of required application names was not specified.</p>
262
263
  */
263
- export interface ApplicationNameRequiredException extends __SmithyException, $MetadataBearer {
264
- name: "ApplicationNameRequiredException";
265
- $fault: "client";
264
+ export declare class ApplicationNameRequiredException extends __BaseException {
265
+ readonly name: "ApplicationNameRequiredException";
266
+ readonly $fault: "client";
266
267
  /**
267
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
268
+ * @internal
268
269
  */
269
- message?: string;
270
+ constructor(opts: __ExceptionOptionType<ApplicationNameRequiredException, __BaseException>);
270
271
  }
271
272
  export declare enum ApplicationRevisionSortBy {
272
273
  FirstUsedTime = "firstUsedTime",
@@ -307,13 +308,13 @@ export declare namespace AppSpecContent {
307
308
  * <p> The specified ARN is not supported. For example, it might be an ARN for a resource
308
309
  * that is not expected. </p>
309
310
  */
310
- export interface ArnNotSupportedException extends __SmithyException, $MetadataBearer {
311
- name: "ArnNotSupportedException";
312
- $fault: "client";
311
+ export declare class ArnNotSupportedException extends __BaseException {
312
+ readonly name: "ArnNotSupportedException";
313
+ readonly $fault: "client";
313
314
  /**
314
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
315
+ * @internal
315
316
  */
316
- message?: string;
317
+ constructor(opts: __ExceptionOptionType<ArnNotSupportedException, __BaseException>);
317
318
  }
318
319
  export declare enum AutoRollbackEvent {
319
320
  DEPLOYMENT_FAILURE = "DEPLOYMENT_FAILURE",
@@ -623,46 +624,46 @@ export declare namespace BatchGetApplicationRevisionsOutput {
623
624
  /**
624
625
  * <p>The maximum number of names or IDs allowed for this request (100) was exceeded.</p>
625
626
  */
626
- export interface BatchLimitExceededException extends __SmithyException, $MetadataBearer {
627
- name: "BatchLimitExceededException";
628
- $fault: "client";
627
+ export declare class BatchLimitExceededException extends __BaseException {
628
+ readonly name: "BatchLimitExceededException";
629
+ readonly $fault: "client";
629
630
  /**
630
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
631
+ * @internal
631
632
  */
632
- message?: string;
633
+ constructor(opts: __ExceptionOptionType<BatchLimitExceededException, __BaseException>);
633
634
  }
634
635
  /**
635
636
  * <p>The application name was specified in an invalid format.</p>
636
637
  */
637
- export interface InvalidApplicationNameException extends __SmithyException, $MetadataBearer {
638
- name: "InvalidApplicationNameException";
639
- $fault: "client";
638
+ export declare class InvalidApplicationNameException extends __BaseException {
639
+ readonly name: "InvalidApplicationNameException";
640
+ readonly $fault: "client";
640
641
  /**
641
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
642
+ * @internal
642
643
  */
643
- message?: string;
644
+ constructor(opts: __ExceptionOptionType<InvalidApplicationNameException, __BaseException>);
644
645
  }
645
646
  /**
646
647
  * <p>The revision was specified in an invalid format.</p>
647
648
  */
648
- export interface InvalidRevisionException extends __SmithyException, $MetadataBearer {
649
- name: "InvalidRevisionException";
650
- $fault: "client";
649
+ export declare class InvalidRevisionException extends __BaseException {
650
+ readonly name: "InvalidRevisionException";
651
+ readonly $fault: "client";
651
652
  /**
652
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
653
+ * @internal
653
654
  */
654
- message?: string;
655
+ constructor(opts: __ExceptionOptionType<InvalidRevisionException, __BaseException>);
655
656
  }
656
657
  /**
657
658
  * <p>The revision ID was not specified.</p>
658
659
  */
659
- export interface RevisionRequiredException extends __SmithyException, $MetadataBearer {
660
- name: "RevisionRequiredException";
661
- $fault: "client";
660
+ export declare class RevisionRequiredException extends __BaseException {
661
+ readonly name: "RevisionRequiredException";
662
+ readonly $fault: "client";
662
663
  /**
663
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
664
+ * @internal
664
665
  */
665
- message?: string;
666
+ constructor(opts: __ExceptionOptionType<RevisionRequiredException, __BaseException>);
666
667
  }
667
668
  /**
668
669
  * <p>Represents the input of a <code>BatchGetApplications</code> operation.</p>
@@ -1371,35 +1372,35 @@ export declare namespace BatchGetDeploymentGroupsOutput {
1371
1372
  /**
1372
1373
  * <p>The deployment configuration does not exist with the IAM user or AWS account.</p>
1373
1374
  */
1374
- export interface DeploymentConfigDoesNotExistException extends __SmithyException, $MetadataBearer {
1375
- name: "DeploymentConfigDoesNotExistException";
1376
- $fault: "client";
1375
+ export declare class DeploymentConfigDoesNotExistException extends __BaseException {
1376
+ readonly name: "DeploymentConfigDoesNotExistException";
1377
+ readonly $fault: "client";
1377
1378
  /**
1378
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
1379
+ * @internal
1379
1380
  */
1380
- message?: string;
1381
+ constructor(opts: __ExceptionOptionType<DeploymentConfigDoesNotExistException, __BaseException>);
1381
1382
  }
1382
1383
  /**
1383
1384
  * <p>The deployment group name was not specified.</p>
1384
1385
  */
1385
- export interface DeploymentGroupNameRequiredException extends __SmithyException, $MetadataBearer {
1386
- name: "DeploymentGroupNameRequiredException";
1387
- $fault: "client";
1386
+ export declare class DeploymentGroupNameRequiredException extends __BaseException {
1387
+ readonly name: "DeploymentGroupNameRequiredException";
1388
+ readonly $fault: "client";
1388
1389
  /**
1389
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
1390
+ * @internal
1390
1391
  */
1391
- message?: string;
1392
+ constructor(opts: __ExceptionOptionType<DeploymentGroupNameRequiredException, __BaseException>);
1392
1393
  }
1393
1394
  /**
1394
1395
  * <p>The deployment group name was specified in an invalid format.</p>
1395
1396
  */
1396
- export interface InvalidDeploymentGroupNameException extends __SmithyException, $MetadataBearer {
1397
- name: "InvalidDeploymentGroupNameException";
1398
- $fault: "client";
1397
+ export declare class InvalidDeploymentGroupNameException extends __BaseException {
1398
+ readonly name: "InvalidDeploymentGroupNameException";
1399
+ readonly $fault: "client";
1399
1400
  /**
1400
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
1401
+ * @internal
1401
1402
  */
1402
- message?: string;
1403
+ constructor(opts: __ExceptionOptionType<InvalidDeploymentGroupNameException, __BaseException>);
1403
1404
  }
1404
1405
  /**
1405
1406
  * <p> Represents the input of a <code>BatchGetDeploymentInstances</code> operation. </p>
@@ -1653,60 +1654,60 @@ export declare namespace BatchGetDeploymentInstancesOutput {
1653
1654
  /**
1654
1655
  * <p>The deployment with the IAM user or AWS account does not exist.</p>
1655
1656
  */
1656
- export interface DeploymentDoesNotExistException extends __SmithyException, $MetadataBearer {
1657
- name: "DeploymentDoesNotExistException";
1658
- $fault: "client";
1657
+ export declare class DeploymentDoesNotExistException extends __BaseException {
1658
+ readonly name: "DeploymentDoesNotExistException";
1659
+ readonly $fault: "client";
1659
1660
  /**
1660
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
1661
+ * @internal
1661
1662
  */
1662
- message?: string;
1663
+ constructor(opts: __ExceptionOptionType<DeploymentDoesNotExistException, __BaseException>);
1663
1664
  }
1664
1665
  /**
1665
1666
  * <p>At least one deployment ID must be specified.</p>
1666
1667
  */
1667
- export interface DeploymentIdRequiredException extends __SmithyException, $MetadataBearer {
1668
- name: "DeploymentIdRequiredException";
1669
- $fault: "client";
1668
+ export declare class DeploymentIdRequiredException extends __BaseException {
1669
+ readonly name: "DeploymentIdRequiredException";
1670
+ readonly $fault: "client";
1670
1671
  /**
1671
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
1672
+ * @internal
1672
1673
  */
1673
- message?: string;
1674
+ constructor(opts: __ExceptionOptionType<DeploymentIdRequiredException, __BaseException>);
1674
1675
  }
1675
1676
  /**
1676
1677
  * @deprecated
1677
1678
  *
1678
1679
  * <p>The instance ID was not specified.</p>
1679
1680
  */
1680
- export interface InstanceIdRequiredException extends __SmithyException, $MetadataBearer {
1681
- name: "InstanceIdRequiredException";
1682
- $fault: "client";
1681
+ export declare class InstanceIdRequiredException extends __BaseException {
1682
+ readonly name: "InstanceIdRequiredException";
1683
+ readonly $fault: "client";
1683
1684
  /**
1684
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
1685
+ * @internal
1685
1686
  */
1686
- message?: string;
1687
+ constructor(opts: __ExceptionOptionType<InstanceIdRequiredException, __BaseException>);
1687
1688
  }
1688
1689
  /**
1689
1690
  * <p>The computePlatform is invalid. The computePlatform should be <code>Lambda</code>,
1690
1691
  * <code>Server</code>, or <code>ECS</code>.</p>
1691
1692
  */
1692
- export interface InvalidComputePlatformException extends __SmithyException, $MetadataBearer {
1693
- name: "InvalidComputePlatformException";
1694
- $fault: "client";
1693
+ export declare class InvalidComputePlatformException extends __BaseException {
1694
+ readonly name: "InvalidComputePlatformException";
1695
+ readonly $fault: "client";
1695
1696
  /**
1696
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
1697
+ * @internal
1697
1698
  */
1698
- message?: string;
1699
+ constructor(opts: __ExceptionOptionType<InvalidComputePlatformException, __BaseException>);
1699
1700
  }
1700
1701
  /**
1701
1702
  * <p>At least one of the deployment IDs was specified in an invalid format.</p>
1702
1703
  */
1703
- export interface InvalidDeploymentIdException extends __SmithyException, $MetadataBearer {
1704
- name: "InvalidDeploymentIdException";
1705
- $fault: "client";
1704
+ export declare class InvalidDeploymentIdException extends __BaseException {
1705
+ readonly name: "InvalidDeploymentIdException";
1706
+ readonly $fault: "client";
1706
1707
  /**
1707
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
1708
+ * @internal
1708
1709
  */
1709
- message?: string;
1710
+ constructor(opts: __ExceptionOptionType<InvalidDeploymentIdException, __BaseException>);
1710
1711
  }
1711
1712
  /**
1712
1713
  * <p> Represents the input of a <code>BatchGetDeployments</code> operation. </p>
@@ -2599,72 +2600,72 @@ export declare namespace BatchGetDeploymentTargetsOutput {
2599
2600
  /**
2600
2601
  * <p>The specified deployment has not started.</p>
2601
2602
  */
2602
- export interface DeploymentNotStartedException extends __SmithyException, $MetadataBearer {
2603
- name: "DeploymentNotStartedException";
2604
- $fault: "client";
2603
+ export declare class DeploymentNotStartedException extends __BaseException {
2604
+ readonly name: "DeploymentNotStartedException";
2605
+ readonly $fault: "client";
2605
2606
  /**
2606
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
2607
+ * @internal
2607
2608
  */
2608
- message?: string;
2609
+ constructor(opts: __ExceptionOptionType<DeploymentNotStartedException, __BaseException>);
2609
2610
  }
2610
2611
  /**
2611
2612
  * <p> The provided target ID does not belong to the attempted deployment. </p>
2612
2613
  */
2613
- export interface DeploymentTargetDoesNotExistException extends __SmithyException, $MetadataBearer {
2614
- name: "DeploymentTargetDoesNotExistException";
2615
- $fault: "client";
2614
+ export declare class DeploymentTargetDoesNotExistException extends __BaseException {
2615
+ readonly name: "DeploymentTargetDoesNotExistException";
2616
+ readonly $fault: "client";
2616
2617
  /**
2617
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
2618
+ * @internal
2618
2619
  */
2619
- message?: string;
2620
+ constructor(opts: __ExceptionOptionType<DeploymentTargetDoesNotExistException, __BaseException>);
2620
2621
  }
2621
2622
  /**
2622
2623
  * <p> A deployment target ID was not provided. </p>
2623
2624
  */
2624
- export interface DeploymentTargetIdRequiredException extends __SmithyException, $MetadataBearer {
2625
- name: "DeploymentTargetIdRequiredException";
2626
- $fault: "client";
2625
+ export declare class DeploymentTargetIdRequiredException extends __BaseException {
2626
+ readonly name: "DeploymentTargetIdRequiredException";
2627
+ readonly $fault: "client";
2627
2628
  /**
2628
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
2629
+ * @internal
2629
2630
  */
2630
- message?: string;
2631
+ constructor(opts: __ExceptionOptionType<DeploymentTargetIdRequiredException, __BaseException>);
2631
2632
  }
2632
2633
  /**
2633
2634
  * <p> The maximum number of targets that can be associated with an Amazon ECS or AWS Lambda
2634
2635
  * deployment was exceeded. The target list of both types of deployments must have exactly
2635
2636
  * one item. This exception does not apply to EC2/On-premises deployments. </p>
2636
2637
  */
2637
- export interface DeploymentTargetListSizeExceededException extends __SmithyException, $MetadataBearer {
2638
- name: "DeploymentTargetListSizeExceededException";
2639
- $fault: "client";
2638
+ export declare class DeploymentTargetListSizeExceededException extends __BaseException {
2639
+ readonly name: "DeploymentTargetListSizeExceededException";
2640
+ readonly $fault: "client";
2640
2641
  /**
2641
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
2642
+ * @internal
2642
2643
  */
2643
- message?: string;
2644
+ constructor(opts: __ExceptionOptionType<DeploymentTargetListSizeExceededException, __BaseException>);
2644
2645
  }
2645
2646
  /**
2646
2647
  * @deprecated
2647
2648
  *
2648
2649
  * <p>The specified instance does not exist in the deployment group.</p>
2649
2650
  */
2650
- export interface InstanceDoesNotExistException extends __SmithyException, $MetadataBearer {
2651
- name: "InstanceDoesNotExistException";
2652
- $fault: "client";
2651
+ export declare class InstanceDoesNotExistException extends __BaseException {
2652
+ readonly name: "InstanceDoesNotExistException";
2653
+ readonly $fault: "client";
2653
2654
  /**
2654
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
2655
+ * @internal
2655
2656
  */
2656
- message?: string;
2657
+ constructor(opts: __ExceptionOptionType<InstanceDoesNotExistException, __BaseException>);
2657
2658
  }
2658
2659
  /**
2659
2660
  * <p> The target ID provided was not valid. </p>
2660
2661
  */
2661
- export interface InvalidDeploymentTargetIdException extends __SmithyException, $MetadataBearer {
2662
- name: "InvalidDeploymentTargetIdException";
2663
- $fault: "client";
2662
+ export declare class InvalidDeploymentTargetIdException extends __BaseException {
2663
+ readonly name: "InvalidDeploymentTargetIdException";
2664
+ readonly $fault: "client";
2664
2665
  /**
2665
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
2666
+ * @internal
2666
2667
  */
2667
- message?: string;
2668
+ constructor(opts: __ExceptionOptionType<InvalidDeploymentTargetIdException, __BaseException>);
2668
2669
  }
2669
2670
  /**
2670
2671
  * <p>Represents the input of a <code>BatchGetOnPremisesInstances</code> operation.</p>
@@ -2740,13 +2741,13 @@ export declare namespace BatchGetOnPremisesInstancesOutput {
2740
2741
  /**
2741
2742
  * <p>A bucket name is required, but was not provided.</p>
2742
2743
  */
2743
- export interface BucketNameFilterRequiredException extends __SmithyException, $MetadataBearer {
2744
- name: "BucketNameFilterRequiredException";
2745
- $fault: "client";
2744
+ export declare class BucketNameFilterRequiredException extends __BaseException {
2745
+ readonly name: "BucketNameFilterRequiredException";
2746
+ readonly $fault: "client";
2746
2747
  /**
2747
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
2748
+ * @internal
2748
2749
  */
2749
- message?: string;
2750
+ constructor(opts: __ExceptionOptionType<BucketNameFilterRequiredException, __BaseException>);
2750
2751
  }
2751
2752
  export declare enum DeploymentWaitType {
2752
2753
  READY_WAIT = "READY_WAIT",
@@ -2775,57 +2776,57 @@ export declare namespace ContinueDeploymentInput {
2775
2776
  /**
2776
2777
  * <p>The deployment is already complete.</p>
2777
2778
  */
2778
- export interface DeploymentAlreadyCompletedException extends __SmithyException, $MetadataBearer {
2779
- name: "DeploymentAlreadyCompletedException";
2780
- $fault: "client";
2779
+ export declare class DeploymentAlreadyCompletedException extends __BaseException {
2780
+ readonly name: "DeploymentAlreadyCompletedException";
2781
+ readonly $fault: "client";
2781
2782
  /**
2782
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
2783
+ * @internal
2783
2784
  */
2784
- message?: string;
2785
+ constructor(opts: __ExceptionOptionType<DeploymentAlreadyCompletedException, __BaseException>);
2785
2786
  }
2786
2787
  /**
2787
2788
  * <p>The deployment does not have a status of Ready and can't continue yet.</p>
2788
2789
  */
2789
- export interface DeploymentIsNotInReadyStateException extends __SmithyException, $MetadataBearer {
2790
- name: "DeploymentIsNotInReadyStateException";
2791
- $fault: "client";
2790
+ export declare class DeploymentIsNotInReadyStateException extends __BaseException {
2791
+ readonly name: "DeploymentIsNotInReadyStateException";
2792
+ readonly $fault: "client";
2792
2793
  /**
2793
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
2794
+ * @internal
2794
2795
  */
2795
- message?: string;
2796
+ constructor(opts: __ExceptionOptionType<DeploymentIsNotInReadyStateException, __BaseException>);
2796
2797
  }
2797
2798
  /**
2798
2799
  * <p>The specified deployment status doesn't exist or cannot be determined.</p>
2799
2800
  */
2800
- export interface InvalidDeploymentStatusException extends __SmithyException, $MetadataBearer {
2801
- name: "InvalidDeploymentStatusException";
2802
- $fault: "client";
2801
+ export declare class InvalidDeploymentStatusException extends __BaseException {
2802
+ readonly name: "InvalidDeploymentStatusException";
2803
+ readonly $fault: "client";
2803
2804
  /**
2804
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
2805
+ * @internal
2805
2806
  */
2806
- message?: string;
2807
+ constructor(opts: __ExceptionOptionType<InvalidDeploymentStatusException, __BaseException>);
2807
2808
  }
2808
2809
  /**
2809
2810
  * <p> The wait type is invalid. </p>
2810
2811
  */
2811
- export interface InvalidDeploymentWaitTypeException extends __SmithyException, $MetadataBearer {
2812
- name: "InvalidDeploymentWaitTypeException";
2813
- $fault: "client";
2812
+ export declare class InvalidDeploymentWaitTypeException extends __BaseException {
2813
+ readonly name: "InvalidDeploymentWaitTypeException";
2814
+ readonly $fault: "client";
2814
2815
  /**
2815
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
2816
+ * @internal
2816
2817
  */
2817
- message?: string;
2818
+ constructor(opts: __ExceptionOptionType<InvalidDeploymentWaitTypeException, __BaseException>);
2818
2819
  }
2819
2820
  /**
2820
2821
  * <p>A call was submitted that is not supported for the specified deployment type.</p>
2821
2822
  */
2822
- export interface UnsupportedActionForDeploymentTypeException extends __SmithyException, $MetadataBearer {
2823
- name: "UnsupportedActionForDeploymentTypeException";
2824
- $fault: "client";
2823
+ export declare class UnsupportedActionForDeploymentTypeException extends __BaseException {
2824
+ readonly name: "UnsupportedActionForDeploymentTypeException";
2825
+ readonly $fault: "client";
2825
2826
  /**
2826
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
2827
+ * @internal
2827
2828
  */
2828
- message?: string;
2829
+ constructor(opts: __ExceptionOptionType<UnsupportedActionForDeploymentTypeException, __BaseException>);
2829
2830
  }
2830
2831
  /**
2831
2832
  * <p>Represents the input of a <code>CreateApplication</code> operation.</p>
@@ -2872,13 +2873,13 @@ export declare namespace CreateApplicationOutput {
2872
2873
  /**
2873
2874
  * <p> The specified tags are not valid. </p>
2874
2875
  */
2875
- export interface InvalidTagsToAddException extends __SmithyException, $MetadataBearer {
2876
- name: "InvalidTagsToAddException";
2877
- $fault: "client";
2876
+ export declare class InvalidTagsToAddException extends __BaseException {
2877
+ readonly name: "InvalidTagsToAddException";
2878
+ readonly $fault: "client";
2878
2879
  /**
2879
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
2880
+ * @internal
2880
2881
  */
2881
- message?: string;
2882
+ constructor(opts: __ExceptionOptionType<InvalidTagsToAddException, __BaseException>);
2882
2883
  }
2883
2884
  /**
2884
2885
  * <p>Represents the input of a <code>CreateDeployment</code> operation.</p>
@@ -2998,70 +2999,70 @@ export declare namespace CreateDeploymentOutput {
2998
2999
  /**
2999
3000
  * <p>The named deployment group with the IAM user or AWS account does not exist.</p>
3000
3001
  */
3001
- export interface DeploymentGroupDoesNotExistException extends __SmithyException, $MetadataBearer {
3002
- name: "DeploymentGroupDoesNotExistException";
3003
- $fault: "client";
3002
+ export declare class DeploymentGroupDoesNotExistException extends __BaseException {
3003
+ readonly name: "DeploymentGroupDoesNotExistException";
3004
+ readonly $fault: "client";
3004
3005
  /**
3005
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3006
+ * @internal
3006
3007
  */
3007
- message?: string;
3008
+ constructor(opts: __ExceptionOptionType<DeploymentGroupDoesNotExistException, __BaseException>);
3008
3009
  }
3009
3010
  /**
3010
3011
  * <p>The number of allowed deployments was exceeded.</p>
3011
3012
  */
3012
- export interface DeploymentLimitExceededException extends __SmithyException, $MetadataBearer {
3013
- name: "DeploymentLimitExceededException";
3014
- $fault: "client";
3013
+ export declare class DeploymentLimitExceededException extends __BaseException {
3014
+ readonly name: "DeploymentLimitExceededException";
3015
+ readonly $fault: "client";
3015
3016
  /**
3016
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3017
+ * @internal
3017
3018
  */
3018
- message?: string;
3019
+ constructor(opts: __ExceptionOptionType<DeploymentLimitExceededException, __BaseException>);
3019
3020
  }
3020
3021
  /**
3021
3022
  * <p>The description is too long.</p>
3022
3023
  */
3023
- export interface DescriptionTooLongException extends __SmithyException, $MetadataBearer {
3024
- name: "DescriptionTooLongException";
3025
- $fault: "client";
3024
+ export declare class DescriptionTooLongException extends __BaseException {
3025
+ readonly name: "DescriptionTooLongException";
3026
+ readonly $fault: "client";
3026
3027
  /**
3027
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3028
+ * @internal
3028
3029
  */
3029
- message?: string;
3030
+ constructor(opts: __ExceptionOptionType<DescriptionTooLongException, __BaseException>);
3030
3031
  }
3031
3032
  /**
3032
3033
  * <p>The automatic rollback configuration was specified in an invalid format. For example,
3033
3034
  * automatic rollback is enabled, but an invalid triggering event type or no event types
3034
3035
  * were listed.</p>
3035
3036
  */
3036
- export interface InvalidAutoRollbackConfigException extends __SmithyException, $MetadataBearer {
3037
- name: "InvalidAutoRollbackConfigException";
3038
- $fault: "client";
3037
+ export declare class InvalidAutoRollbackConfigException extends __BaseException {
3038
+ readonly name: "InvalidAutoRollbackConfigException";
3039
+ readonly $fault: "client";
3039
3040
  /**
3040
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3041
+ * @internal
3041
3042
  */
3042
- message?: string;
3043
+ constructor(opts: __ExceptionOptionType<InvalidAutoRollbackConfigException, __BaseException>);
3043
3044
  }
3044
3045
  /**
3045
3046
  * <p>The Auto Scaling group was specified in an invalid format or does not exist.</p>
3046
3047
  */
3047
- export interface InvalidAutoScalingGroupException extends __SmithyException, $MetadataBearer {
3048
- name: "InvalidAutoScalingGroupException";
3049
- $fault: "client";
3048
+ export declare class InvalidAutoScalingGroupException extends __BaseException {
3049
+ readonly name: "InvalidAutoScalingGroupException";
3050
+ readonly $fault: "client";
3050
3051
  /**
3051
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3052
+ * @internal
3052
3053
  */
3053
- message?: string;
3054
+ constructor(opts: __ExceptionOptionType<InvalidAutoScalingGroupException, __BaseException>);
3054
3055
  }
3055
3056
  /**
3056
3057
  * <p>The deployment configuration name was specified in an invalid format.</p>
3057
3058
  */
3058
- export interface InvalidDeploymentConfigNameException extends __SmithyException, $MetadataBearer {
3059
- name: "InvalidDeploymentConfigNameException";
3060
- $fault: "client";
3059
+ export declare class InvalidDeploymentConfigNameException extends __BaseException {
3060
+ readonly name: "InvalidDeploymentConfigNameException";
3061
+ readonly $fault: "client";
3061
3062
  /**
3062
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3063
+ * @internal
3063
3064
  */
3064
- message?: string;
3065
+ constructor(opts: __ExceptionOptionType<InvalidDeploymentConfigNameException, __BaseException>);
3065
3066
  }
3066
3067
  /**
3067
3068
  * <p>An invalid fileExistsBehavior option was specified to determine how AWS CodeDeploy
@@ -3069,61 +3070,61 @@ export interface InvalidDeploymentConfigNameException extends __SmithyException,
3069
3070
  * weren't part of the previous successful deployment. Valid values include "DISALLOW,"
3070
3071
  * "OVERWRITE," and "RETAIN."</p>
3071
3072
  */
3072
- export interface InvalidFileExistsBehaviorException extends __SmithyException, $MetadataBearer {
3073
- name: "InvalidFileExistsBehaviorException";
3074
- $fault: "client";
3073
+ export declare class InvalidFileExistsBehaviorException extends __BaseException {
3074
+ readonly name: "InvalidFileExistsBehaviorException";
3075
+ readonly $fault: "client";
3075
3076
  /**
3076
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3077
+ * @internal
3077
3078
  */
3078
- message?: string;
3079
+ constructor(opts: __ExceptionOptionType<InvalidFileExistsBehaviorException, __BaseException>);
3079
3080
  }
3080
3081
  /**
3081
3082
  * <p>The GitHub token is not valid.</p>
3082
3083
  */
3083
- export interface InvalidGitHubAccountTokenException extends __SmithyException, $MetadataBearer {
3084
- name: "InvalidGitHubAccountTokenException";
3085
- $fault: "client";
3084
+ export declare class InvalidGitHubAccountTokenException extends __BaseException {
3085
+ readonly name: "InvalidGitHubAccountTokenException";
3086
+ readonly $fault: "client";
3086
3087
  /**
3087
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3088
+ * @internal
3088
3089
  */
3089
- message?: string;
3090
+ constructor(opts: __ExceptionOptionType<InvalidGitHubAccountTokenException, __BaseException>);
3090
3091
  }
3091
3092
  /**
3092
3093
  * <p>The IgnoreApplicationStopFailures value is invalid. For AWS Lambda deployments,
3093
3094
  * <code>false</code> is expected. For EC2/On-premises deployments, <code>true</code>
3094
3095
  * or <code>false</code> is expected.</p>
3095
3096
  */
3096
- export interface InvalidIgnoreApplicationStopFailuresValueException extends __SmithyException, $MetadataBearer {
3097
- name: "InvalidIgnoreApplicationStopFailuresValueException";
3098
- $fault: "client";
3097
+ export declare class InvalidIgnoreApplicationStopFailuresValueException extends __BaseException {
3098
+ readonly name: "InvalidIgnoreApplicationStopFailuresValueException";
3099
+ readonly $fault: "client";
3099
3100
  /**
3100
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3101
+ * @internal
3101
3102
  */
3102
- message?: string;
3103
+ constructor(opts: __ExceptionOptionType<InvalidIgnoreApplicationStopFailuresValueException, __BaseException>);
3103
3104
  }
3104
3105
  /**
3105
3106
  * <p>An invalid load balancer name, or no load balancer name, was specified.</p>
3106
3107
  */
3107
- export interface InvalidLoadBalancerInfoException extends __SmithyException, $MetadataBearer {
3108
- name: "InvalidLoadBalancerInfoException";
3109
- $fault: "client";
3108
+ export declare class InvalidLoadBalancerInfoException extends __BaseException {
3109
+ readonly name: "InvalidLoadBalancerInfoException";
3110
+ readonly $fault: "client";
3110
3111
  /**
3111
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3112
+ * @internal
3112
3113
  */
3113
- message?: string;
3114
+ constructor(opts: __ExceptionOptionType<InvalidLoadBalancerInfoException, __BaseException>);
3114
3115
  }
3115
3116
  /**
3116
3117
  * <p>The service role ARN was specified in an invalid format. Or, if an Auto Scaling group
3117
3118
  * was specified, the specified service role does not grant the appropriate permissions to
3118
3119
  * Amazon EC2 Auto Scaling.</p>
3119
3120
  */
3120
- export interface InvalidRoleException extends __SmithyException, $MetadataBearer {
3121
- name: "InvalidRoleException";
3122
- $fault: "client";
3121
+ export declare class InvalidRoleException extends __BaseException {
3122
+ readonly name: "InvalidRoleException";
3123
+ readonly $fault: "client";
3123
3124
  /**
3124
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3125
+ * @internal
3125
3126
  */
3126
- message?: string;
3127
+ constructor(opts: __ExceptionOptionType<InvalidRoleException, __BaseException>);
3127
3128
  }
3128
3129
  /**
3129
3130
  * <p>The target instance configuration is invalid. Possible causes include:</p>
@@ -3143,60 +3144,60 @@ export interface InvalidRoleException extends __SmithyException, $MetadataBearer
3143
3144
  * </li>
3144
3145
  * </ul>
3145
3146
  */
3146
- export interface InvalidTargetInstancesException extends __SmithyException, $MetadataBearer {
3147
- name: "InvalidTargetInstancesException";
3148
- $fault: "client";
3147
+ export declare class InvalidTargetInstancesException extends __BaseException {
3148
+ readonly name: "InvalidTargetInstancesException";
3149
+ readonly $fault: "client";
3149
3150
  /**
3150
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3151
+ * @internal
3151
3152
  */
3152
- message?: string;
3153
+ constructor(opts: __ExceptionOptionType<InvalidTargetInstancesException, __BaseException>);
3153
3154
  }
3154
3155
  /**
3155
3156
  * <p> The configuration that specifies how traffic is routed during a deployment is
3156
3157
  * invalid.</p>
3157
3158
  */
3158
- export interface InvalidTrafficRoutingConfigurationException extends __SmithyException, $MetadataBearer {
3159
- name: "InvalidTrafficRoutingConfigurationException";
3160
- $fault: "client";
3159
+ export declare class InvalidTrafficRoutingConfigurationException extends __BaseException {
3160
+ readonly name: "InvalidTrafficRoutingConfigurationException";
3161
+ readonly $fault: "client";
3161
3162
  /**
3162
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3163
+ * @internal
3163
3164
  */
3164
- message?: string;
3165
+ constructor(opts: __ExceptionOptionType<InvalidTrafficRoutingConfigurationException, __BaseException>);
3165
3166
  }
3166
3167
  /**
3167
3168
  * <p>The UpdateOutdatedInstancesOnly value is invalid. For AWS Lambda deployments,
3168
3169
  * <code>false</code> is expected. For EC2/On-premises deployments, <code>true</code>
3169
3170
  * or <code>false</code> is expected.</p>
3170
3171
  */
3171
- export interface InvalidUpdateOutdatedInstancesOnlyValueException extends __SmithyException, $MetadataBearer {
3172
- name: "InvalidUpdateOutdatedInstancesOnlyValueException";
3173
- $fault: "client";
3172
+ export declare class InvalidUpdateOutdatedInstancesOnlyValueException extends __BaseException {
3173
+ readonly name: "InvalidUpdateOutdatedInstancesOnlyValueException";
3174
+ readonly $fault: "client";
3174
3175
  /**
3175
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3176
+ * @internal
3176
3177
  */
3177
- message?: string;
3178
+ constructor(opts: __ExceptionOptionType<InvalidUpdateOutdatedInstancesOnlyValueException, __BaseException>);
3178
3179
  }
3179
3180
  /**
3180
3181
  * <p>The named revision does not exist with the IAM user or AWS account.</p>
3181
3182
  */
3182
- export interface RevisionDoesNotExistException extends __SmithyException, $MetadataBearer {
3183
- name: "RevisionDoesNotExistException";
3184
- $fault: "client";
3183
+ export declare class RevisionDoesNotExistException extends __BaseException {
3184
+ readonly name: "RevisionDoesNotExistException";
3185
+ readonly $fault: "client";
3185
3186
  /**
3186
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3187
+ * @internal
3187
3188
  */
3188
- message?: string;
3189
+ constructor(opts: __ExceptionOptionType<RevisionDoesNotExistException, __BaseException>);
3189
3190
  }
3190
3191
  /**
3191
3192
  * <p>An API function was called too frequently.</p>
3192
3193
  */
3193
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
3194
- name: "ThrottlingException";
3195
- $fault: "client";
3194
+ export declare class ThrottlingException extends __BaseException {
3195
+ readonly name: "ThrottlingException";
3196
+ readonly $fault: "client";
3196
3197
  /**
3197
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3198
+ * @internal
3198
3199
  */
3199
- message?: string;
3200
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
3200
3201
  }
3201
3202
  export declare type MinimumHealthyHostsType = "FLEET_PERCENT" | "HOST_COUNT";
3202
3203
  /**
@@ -3397,46 +3398,46 @@ export declare namespace CreateDeploymentConfigOutput {
3397
3398
  * <p>A deployment configuration with the specified name with the IAM user or AWS account
3398
3399
  * already exists.</p>
3399
3400
  */
3400
- export interface DeploymentConfigAlreadyExistsException extends __SmithyException, $MetadataBearer {
3401
- name: "DeploymentConfigAlreadyExistsException";
3402
- $fault: "client";
3401
+ export declare class DeploymentConfigAlreadyExistsException extends __BaseException {
3402
+ readonly name: "DeploymentConfigAlreadyExistsException";
3403
+ readonly $fault: "client";
3403
3404
  /**
3404
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3405
+ * @internal
3405
3406
  */
3406
- message?: string;
3407
+ constructor(opts: __ExceptionOptionType<DeploymentConfigAlreadyExistsException, __BaseException>);
3407
3408
  }
3408
3409
  /**
3409
3410
  * <p>The deployment configurations limit was exceeded.</p>
3410
3411
  */
3411
- export interface DeploymentConfigLimitExceededException extends __SmithyException, $MetadataBearer {
3412
- name: "DeploymentConfigLimitExceededException";
3413
- $fault: "client";
3412
+ export declare class DeploymentConfigLimitExceededException extends __BaseException {
3413
+ readonly name: "DeploymentConfigLimitExceededException";
3414
+ readonly $fault: "client";
3414
3415
  /**
3415
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3416
+ * @internal
3416
3417
  */
3417
- message?: string;
3418
+ constructor(opts: __ExceptionOptionType<DeploymentConfigLimitExceededException, __BaseException>);
3418
3419
  }
3419
3420
  /**
3420
3421
  * <p>The deployment configuration name was not specified.</p>
3421
3422
  */
3422
- export interface DeploymentConfigNameRequiredException extends __SmithyException, $MetadataBearer {
3423
- name: "DeploymentConfigNameRequiredException";
3424
- $fault: "client";
3423
+ export declare class DeploymentConfigNameRequiredException extends __BaseException {
3424
+ readonly name: "DeploymentConfigNameRequiredException";
3425
+ readonly $fault: "client";
3425
3426
  /**
3426
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3427
+ * @internal
3427
3428
  */
3428
- message?: string;
3429
+ constructor(opts: __ExceptionOptionType<DeploymentConfigNameRequiredException, __BaseException>);
3429
3430
  }
3430
3431
  /**
3431
3432
  * <p>The minimum healthy instance value was specified in an invalid format.</p>
3432
3433
  */
3433
- export interface InvalidMinimumHealthyHostValueException extends __SmithyException, $MetadataBearer {
3434
- name: "InvalidMinimumHealthyHostValueException";
3435
- $fault: "client";
3434
+ export declare class InvalidMinimumHealthyHostValueException extends __BaseException {
3435
+ readonly name: "InvalidMinimumHealthyHostValueException";
3436
+ readonly $fault: "client";
3436
3437
  /**
3437
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3438
+ * @internal
3438
3439
  */
3439
- message?: string;
3440
+ constructor(opts: __ExceptionOptionType<InvalidMinimumHealthyHostValueException, __BaseException>);
3440
3441
  }
3441
3442
  /**
3442
3443
  * <p>Represents the input of a <code>CreateDeploymentGroup</code> operation.</p>
@@ -3577,36 +3578,36 @@ export declare namespace CreateDeploymentGroupOutput {
3577
3578
  * <p>A deployment group with the specified name with the IAM user or AWS account already
3578
3579
  * exists.</p>
3579
3580
  */
3580
- export interface DeploymentGroupAlreadyExistsException extends __SmithyException, $MetadataBearer {
3581
- name: "DeploymentGroupAlreadyExistsException";
3582
- $fault: "client";
3581
+ export declare class DeploymentGroupAlreadyExistsException extends __BaseException {
3582
+ readonly name: "DeploymentGroupAlreadyExistsException";
3583
+ readonly $fault: "client";
3583
3584
  /**
3584
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3585
+ * @internal
3585
3586
  */
3586
- message?: string;
3587
+ constructor(opts: __ExceptionOptionType<DeploymentGroupAlreadyExistsException, __BaseException>);
3587
3588
  }
3588
3589
  /**
3589
3590
  * <p> The deployment groups limit was exceeded.</p>
3590
3591
  */
3591
- export interface DeploymentGroupLimitExceededException extends __SmithyException, $MetadataBearer {
3592
- name: "DeploymentGroupLimitExceededException";
3593
- $fault: "client";
3592
+ export declare class DeploymentGroupLimitExceededException extends __BaseException {
3593
+ readonly name: "DeploymentGroupLimitExceededException";
3594
+ readonly $fault: "client";
3594
3595
  /**
3595
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3596
+ * @internal
3596
3597
  */
3597
- message?: string;
3598
+ constructor(opts: __ExceptionOptionType<DeploymentGroupLimitExceededException, __BaseException>);
3598
3599
  }
3599
3600
  /**
3600
3601
  * <p> The Amazon ECS service is associated with more than one deployment groups. An Amazon
3601
3602
  * ECS service can be associated with only one deployment group. </p>
3602
3603
  */
3603
- export interface ECSServiceMappingLimitExceededException extends __SmithyException, $MetadataBearer {
3604
- name: "ECSServiceMappingLimitExceededException";
3605
- $fault: "client";
3604
+ export declare class ECSServiceMappingLimitExceededException extends __BaseException {
3605
+ readonly name: "ECSServiceMappingLimitExceededException";
3606
+ readonly $fault: "client";
3606
3607
  /**
3607
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3608
+ * @internal
3608
3609
  */
3609
- message?: string;
3610
+ constructor(opts: __ExceptionOptionType<ECSServiceMappingLimitExceededException, __BaseException>);
3610
3611
  }
3611
3612
  /**
3612
3613
  * <p>The format of the alarm configuration is invalid. Possible causes include:</p>
@@ -3628,162 +3629,162 @@ export interface ECSServiceMappingLimitExceededException extends __SmithyExcepti
3628
3629
  * </li>
3629
3630
  * </ul>
3630
3631
  */
3631
- export interface InvalidAlarmConfigException extends __SmithyException, $MetadataBearer {
3632
- name: "InvalidAlarmConfigException";
3633
- $fault: "client";
3632
+ export declare class InvalidAlarmConfigException extends __BaseException {
3633
+ readonly name: "InvalidAlarmConfigException";
3634
+ readonly $fault: "client";
3634
3635
  /**
3635
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3636
+ * @internal
3636
3637
  */
3637
- message?: string;
3638
+ constructor(opts: __ExceptionOptionType<InvalidAlarmConfigException, __BaseException>);
3638
3639
  }
3639
3640
  /**
3640
3641
  * <p>The configuration for the blue/green deployment group was provided in an invalid
3641
3642
  * format. For information about deployment configuration format, see <a>CreateDeploymentConfig</a>.</p>
3642
3643
  */
3643
- export interface InvalidBlueGreenDeploymentConfigurationException extends __SmithyException, $MetadataBearer {
3644
- name: "InvalidBlueGreenDeploymentConfigurationException";
3645
- $fault: "client";
3644
+ export declare class InvalidBlueGreenDeploymentConfigurationException extends __BaseException {
3645
+ readonly name: "InvalidBlueGreenDeploymentConfigurationException";
3646
+ readonly $fault: "client";
3646
3647
  /**
3647
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3648
+ * @internal
3648
3649
  */
3649
- message?: string;
3650
+ constructor(opts: __ExceptionOptionType<InvalidBlueGreenDeploymentConfigurationException, __BaseException>);
3650
3651
  }
3651
3652
  /**
3652
3653
  * <p>An invalid deployment style was specified. Valid deployment types include "IN_PLACE"
3653
3654
  * and "BLUE_GREEN." Valid deployment options include "WITH_TRAFFIC_CONTROL" and
3654
3655
  * "WITHOUT_TRAFFIC_CONTROL."</p>
3655
3656
  */
3656
- export interface InvalidDeploymentStyleException extends __SmithyException, $MetadataBearer {
3657
- name: "InvalidDeploymentStyleException";
3658
- $fault: "client";
3657
+ export declare class InvalidDeploymentStyleException extends __BaseException {
3658
+ readonly name: "InvalidDeploymentStyleException";
3659
+ readonly $fault: "client";
3659
3660
  /**
3660
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3661
+ * @internal
3661
3662
  */
3662
- message?: string;
3663
+ constructor(opts: __ExceptionOptionType<InvalidDeploymentStyleException, __BaseException>);
3663
3664
  }
3664
3665
  /**
3665
3666
  * <p>A call was submitted that specified both Ec2TagFilters and Ec2TagSet, but only one of
3666
3667
  * these data types can be used in a single call.</p>
3667
3668
  */
3668
- export interface InvalidEC2TagCombinationException extends __SmithyException, $MetadataBearer {
3669
- name: "InvalidEC2TagCombinationException";
3670
- $fault: "client";
3669
+ export declare class InvalidEC2TagCombinationException extends __BaseException {
3670
+ readonly name: "InvalidEC2TagCombinationException";
3671
+ readonly $fault: "client";
3671
3672
  /**
3672
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3673
+ * @internal
3673
3674
  */
3674
- message?: string;
3675
+ constructor(opts: __ExceptionOptionType<InvalidEC2TagCombinationException, __BaseException>);
3675
3676
  }
3676
3677
  /**
3677
3678
  * <p>The tag was specified in an invalid format.</p>
3678
3679
  */
3679
- export interface InvalidEC2TagException extends __SmithyException, $MetadataBearer {
3680
- name: "InvalidEC2TagException";
3681
- $fault: "client";
3680
+ export declare class InvalidEC2TagException extends __BaseException {
3681
+ readonly name: "InvalidEC2TagException";
3682
+ readonly $fault: "client";
3682
3683
  /**
3683
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3684
+ * @internal
3684
3685
  */
3685
- message?: string;
3686
+ constructor(opts: __ExceptionOptionType<InvalidEC2TagException, __BaseException>);
3686
3687
  }
3687
3688
  /**
3688
3689
  * <p> The Amazon ECS service identifier is not valid. </p>
3689
3690
  */
3690
- export interface InvalidECSServiceException extends __SmithyException, $MetadataBearer {
3691
- name: "InvalidECSServiceException";
3692
- $fault: "client";
3691
+ export declare class InvalidECSServiceException extends __BaseException {
3692
+ readonly name: "InvalidECSServiceException";
3693
+ readonly $fault: "client";
3693
3694
  /**
3694
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3695
+ * @internal
3695
3696
  */
3696
- message?: string;
3697
+ constructor(opts: __ExceptionOptionType<InvalidECSServiceException, __BaseException>);
3697
3698
  }
3698
3699
  /**
3699
3700
  * <p>The input was specified in an invalid format.</p>
3700
3701
  */
3701
- export interface InvalidInputException extends __SmithyException, $MetadataBearer {
3702
- name: "InvalidInputException";
3703
- $fault: "client";
3702
+ export declare class InvalidInputException extends __BaseException {
3703
+ readonly name: "InvalidInputException";
3704
+ readonly $fault: "client";
3704
3705
  /**
3705
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3706
+ * @internal
3706
3707
  */
3707
- message?: string;
3708
+ constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
3708
3709
  }
3709
3710
  /**
3710
3711
  * <p>A call was submitted that specified both OnPremisesTagFilters and OnPremisesTagSet,
3711
3712
  * but only one of these data types can be used in a single call.</p>
3712
3713
  */
3713
- export interface InvalidOnPremisesTagCombinationException extends __SmithyException, $MetadataBearer {
3714
- name: "InvalidOnPremisesTagCombinationException";
3715
- $fault: "client";
3714
+ export declare class InvalidOnPremisesTagCombinationException extends __BaseException {
3715
+ readonly name: "InvalidOnPremisesTagCombinationException";
3716
+ readonly $fault: "client";
3716
3717
  /**
3717
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3718
+ * @internal
3718
3719
  */
3719
- message?: string;
3720
+ constructor(opts: __ExceptionOptionType<InvalidOnPremisesTagCombinationException, __BaseException>);
3720
3721
  }
3721
3722
  /**
3722
3723
  * <p> A target group pair associated with this deployment is not valid. </p>
3723
3724
  */
3724
- export interface InvalidTargetGroupPairException extends __SmithyException, $MetadataBearer {
3725
- name: "InvalidTargetGroupPairException";
3726
- $fault: "client";
3725
+ export declare class InvalidTargetGroupPairException extends __BaseException {
3726
+ readonly name: "InvalidTargetGroupPairException";
3727
+ readonly $fault: "client";
3727
3728
  /**
3728
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3729
+ * @internal
3729
3730
  */
3730
- message?: string;
3731
+ constructor(opts: __ExceptionOptionType<InvalidTargetGroupPairException, __BaseException>);
3731
3732
  }
3732
3733
  /**
3733
3734
  * <p>The trigger was specified in an invalid format.</p>
3734
3735
  */
3735
- export interface InvalidTriggerConfigException extends __SmithyException, $MetadataBearer {
3736
- name: "InvalidTriggerConfigException";
3737
- $fault: "client";
3736
+ export declare class InvalidTriggerConfigException extends __BaseException {
3737
+ readonly name: "InvalidTriggerConfigException";
3738
+ readonly $fault: "client";
3738
3739
  /**
3739
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3740
+ * @internal
3740
3741
  */
3741
- message?: string;
3742
+ constructor(opts: __ExceptionOptionType<InvalidTriggerConfigException, __BaseException>);
3742
3743
  }
3743
3744
  /**
3744
3745
  * <p>The limit for lifecycle hooks was exceeded.</p>
3745
3746
  */
3746
- export interface LifecycleHookLimitExceededException extends __SmithyException, $MetadataBearer {
3747
- name: "LifecycleHookLimitExceededException";
3748
- $fault: "client";
3747
+ export declare class LifecycleHookLimitExceededException extends __BaseException {
3748
+ readonly name: "LifecycleHookLimitExceededException";
3749
+ readonly $fault: "client";
3749
3750
  /**
3750
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3751
+ * @internal
3751
3752
  */
3752
- message?: string;
3753
+ constructor(opts: __ExceptionOptionType<LifecycleHookLimitExceededException, __BaseException>);
3753
3754
  }
3754
3755
  /**
3755
3756
  * <p>The role ID was not specified.</p>
3756
3757
  */
3757
- export interface RoleRequiredException extends __SmithyException, $MetadataBearer {
3758
- name: "RoleRequiredException";
3759
- $fault: "client";
3758
+ export declare class RoleRequiredException extends __BaseException {
3759
+ readonly name: "RoleRequiredException";
3760
+ readonly $fault: "client";
3760
3761
  /**
3761
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3762
+ * @internal
3762
3763
  */
3763
- message?: string;
3764
+ constructor(opts: __ExceptionOptionType<RoleRequiredException, __BaseException>);
3764
3765
  }
3765
3766
  /**
3766
3767
  * <p>The number of tag groups included in the tag set list exceeded the maximum allowed
3767
3768
  * limit of 3.</p>
3768
3769
  */
3769
- export interface TagSetListLimitExceededException extends __SmithyException, $MetadataBearer {
3770
- name: "TagSetListLimitExceededException";
3771
- $fault: "client";
3770
+ export declare class TagSetListLimitExceededException extends __BaseException {
3771
+ readonly name: "TagSetListLimitExceededException";
3772
+ readonly $fault: "client";
3772
3773
  /**
3773
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3774
+ * @internal
3774
3775
  */
3775
- message?: string;
3776
+ constructor(opts: __ExceptionOptionType<TagSetListLimitExceededException, __BaseException>);
3776
3777
  }
3777
3778
  /**
3778
3779
  * <p>The maximum allowed number of triggers was exceeded.</p>
3779
3780
  */
3780
- export interface TriggerTargetsLimitExceededException extends __SmithyException, $MetadataBearer {
3781
- name: "TriggerTargetsLimitExceededException";
3782
- $fault: "client";
3781
+ export declare class TriggerTargetsLimitExceededException extends __BaseException {
3782
+ readonly name: "TriggerTargetsLimitExceededException";
3783
+ readonly $fault: "client";
3783
3784
  /**
3784
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3785
+ * @internal
3785
3786
  */
3786
- message?: string;
3787
+ constructor(opts: __ExceptionOptionType<TriggerTargetsLimitExceededException, __BaseException>);
3787
3788
  }
3788
3789
  /**
3789
3790
  * <p>Represents the input of a <code>DeleteApplication</code> operation.</p>
@@ -3820,24 +3821,24 @@ export declare namespace DeleteDeploymentConfigInput {
3820
3821
  /**
3821
3822
  * <p>The deployment configuration is still in use.</p>
3822
3823
  */
3823
- export interface DeploymentConfigInUseException extends __SmithyException, $MetadataBearer {
3824
- name: "DeploymentConfigInUseException";
3825
- $fault: "client";
3824
+ export declare class DeploymentConfigInUseException extends __BaseException {
3825
+ readonly name: "DeploymentConfigInUseException";
3826
+ readonly $fault: "client";
3826
3827
  /**
3827
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3828
+ * @internal
3828
3829
  */
3829
- message?: string;
3830
+ constructor(opts: __ExceptionOptionType<DeploymentConfigInUseException, __BaseException>);
3830
3831
  }
3831
3832
  /**
3832
3833
  * <p>An invalid operation was detected.</p>
3833
3834
  */
3834
- export interface InvalidOperationException extends __SmithyException, $MetadataBearer {
3835
- name: "InvalidOperationException";
3836
- $fault: "client";
3835
+ export declare class InvalidOperationException extends __BaseException {
3836
+ readonly name: "InvalidOperationException";
3837
+ readonly $fault: "client";
3837
3838
  /**
3838
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3839
+ * @internal
3839
3840
  */
3840
- message?: string;
3841
+ constructor(opts: __ExceptionOptionType<InvalidOperationException, __BaseException>);
3841
3842
  }
3842
3843
  /**
3843
3844
  * <p>Represents the input of a <code>DeleteDeploymentGroup</code> operation.</p>
@@ -3911,57 +3912,57 @@ export declare namespace DeleteGitHubAccountTokenOutput {
3911
3912
  /**
3912
3913
  * <p>No GitHub account connection exists with the named specified in the call.</p>
3913
3914
  */
3914
- export interface GitHubAccountTokenDoesNotExistException extends __SmithyException, $MetadataBearer {
3915
- name: "GitHubAccountTokenDoesNotExistException";
3916
- $fault: "client";
3915
+ export declare class GitHubAccountTokenDoesNotExistException extends __BaseException {
3916
+ readonly name: "GitHubAccountTokenDoesNotExistException";
3917
+ readonly $fault: "client";
3917
3918
  /**
3918
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3919
+ * @internal
3919
3920
  */
3920
- message?: string;
3921
+ constructor(opts: __ExceptionOptionType<GitHubAccountTokenDoesNotExistException, __BaseException>);
3921
3922
  }
3922
3923
  /**
3923
3924
  * <p>The call is missing a required GitHub account connection name.</p>
3924
3925
  */
3925
- export interface GitHubAccountTokenNameRequiredException extends __SmithyException, $MetadataBearer {
3926
- name: "GitHubAccountTokenNameRequiredException";
3927
- $fault: "client";
3926
+ export declare class GitHubAccountTokenNameRequiredException extends __BaseException {
3927
+ readonly name: "GitHubAccountTokenNameRequiredException";
3928
+ readonly $fault: "client";
3928
3929
  /**
3929
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3930
+ * @internal
3930
3931
  */
3931
- message?: string;
3932
+ constructor(opts: __ExceptionOptionType<GitHubAccountTokenNameRequiredException, __BaseException>);
3932
3933
  }
3933
3934
  /**
3934
3935
  * <p>The format of the specified GitHub account connection name is invalid.</p>
3935
3936
  */
3936
- export interface InvalidGitHubAccountTokenNameException extends __SmithyException, $MetadataBearer {
3937
- name: "InvalidGitHubAccountTokenNameException";
3938
- $fault: "client";
3937
+ export declare class InvalidGitHubAccountTokenNameException extends __BaseException {
3938
+ readonly name: "InvalidGitHubAccountTokenNameException";
3939
+ readonly $fault: "client";
3939
3940
  /**
3940
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3941
+ * @internal
3941
3942
  */
3942
- message?: string;
3943
+ constructor(opts: __ExceptionOptionType<InvalidGitHubAccountTokenNameException, __BaseException>);
3943
3944
  }
3944
3945
  /**
3945
3946
  * <p>The API used does not support the deployment.</p>
3946
3947
  */
3947
- export interface OperationNotSupportedException extends __SmithyException, $MetadataBearer {
3948
- name: "OperationNotSupportedException";
3949
- $fault: "client";
3948
+ export declare class OperationNotSupportedException extends __BaseException {
3949
+ readonly name: "OperationNotSupportedException";
3950
+ readonly $fault: "client";
3950
3951
  /**
3951
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3952
+ * @internal
3952
3953
  */
3953
- message?: string;
3954
+ constructor(opts: __ExceptionOptionType<OperationNotSupportedException, __BaseException>);
3954
3955
  }
3955
3956
  /**
3956
3957
  * <p>The specified resource could not be validated.</p>
3957
3958
  */
3958
- export interface ResourceValidationException extends __SmithyException, $MetadataBearer {
3959
- name: "ResourceValidationException";
3960
- $fault: "client";
3959
+ export declare class ResourceValidationException extends __BaseException {
3960
+ readonly name: "ResourceValidationException";
3961
+ readonly $fault: "client";
3961
3962
  /**
3962
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
3963
+ * @internal
3963
3964
  */
3964
- message?: string;
3965
+ constructor(opts: __ExceptionOptionType<ResourceValidationException, __BaseException>);
3965
3966
  }
3966
3967
  export interface DeleteResourcesByExternalIdInput {
3967
3968
  /**
@@ -4306,69 +4307,69 @@ export declare namespace GetOnPremisesInstanceOutput {
4306
4307
  /**
4307
4308
  * <p>The bucket name either doesn't exist or was specified in an invalid format.</p>
4308
4309
  */
4309
- export interface InvalidBucketNameFilterException extends __SmithyException, $MetadataBearer {
4310
- name: "InvalidBucketNameFilterException";
4311
- $fault: "client";
4310
+ export declare class InvalidBucketNameFilterException extends __BaseException {
4311
+ readonly name: "InvalidBucketNameFilterException";
4312
+ readonly $fault: "client";
4312
4313
  /**
4313
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
4314
+ * @internal
4314
4315
  */
4315
- message?: string;
4316
+ constructor(opts: __ExceptionOptionType<InvalidBucketNameFilterException, __BaseException>);
4316
4317
  }
4317
4318
  /**
4318
4319
  * <p>The deployed state filter was specified in an invalid format.</p>
4319
4320
  */
4320
- export interface InvalidDeployedStateFilterException extends __SmithyException, $MetadataBearer {
4321
- name: "InvalidDeployedStateFilterException";
4322
- $fault: "client";
4321
+ export declare class InvalidDeployedStateFilterException extends __BaseException {
4322
+ readonly name: "InvalidDeployedStateFilterException";
4323
+ readonly $fault: "client";
4323
4324
  /**
4324
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
4325
+ * @internal
4325
4326
  */
4326
- message?: string;
4327
+ constructor(opts: __ExceptionOptionType<InvalidDeployedStateFilterException, __BaseException>);
4327
4328
  }
4328
4329
  /**
4329
4330
  * <p>The specified key prefix filter was specified in an invalid format.</p>
4330
4331
  */
4331
- export interface InvalidKeyPrefixFilterException extends __SmithyException, $MetadataBearer {
4332
- name: "InvalidKeyPrefixFilterException";
4333
- $fault: "client";
4332
+ export declare class InvalidKeyPrefixFilterException extends __BaseException {
4333
+ readonly name: "InvalidKeyPrefixFilterException";
4334
+ readonly $fault: "client";
4334
4335
  /**
4335
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
4336
+ * @internal
4336
4337
  */
4337
- message?: string;
4338
+ constructor(opts: __ExceptionOptionType<InvalidKeyPrefixFilterException, __BaseException>);
4338
4339
  }
4339
4340
  /**
4340
4341
  * <p>The next token was specified in an invalid format.</p>
4341
4342
  */
4342
- export interface InvalidNextTokenException extends __SmithyException, $MetadataBearer {
4343
- name: "InvalidNextTokenException";
4344
- $fault: "client";
4343
+ export declare class InvalidNextTokenException extends __BaseException {
4344
+ readonly name: "InvalidNextTokenException";
4345
+ readonly $fault: "client";
4345
4346
  /**
4346
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
4347
+ * @internal
4347
4348
  */
4348
- message?: string;
4349
+ constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
4349
4350
  }
4350
4351
  /**
4351
4352
  * <p>The column name to sort by is either not present or was specified in an invalid
4352
4353
  * format.</p>
4353
4354
  */
4354
- export interface InvalidSortByException extends __SmithyException, $MetadataBearer {
4355
- name: "InvalidSortByException";
4356
- $fault: "client";
4355
+ export declare class InvalidSortByException extends __BaseException {
4356
+ readonly name: "InvalidSortByException";
4357
+ readonly $fault: "client";
4357
4358
  /**
4358
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
4359
+ * @internal
4359
4360
  */
4360
- message?: string;
4361
+ constructor(opts: __ExceptionOptionType<InvalidSortByException, __BaseException>);
4361
4362
  }
4362
4363
  /**
4363
4364
  * <p>The sort order was specified in an invalid format.</p>
4364
4365
  */
4365
- export interface InvalidSortOrderException extends __SmithyException, $MetadataBearer {
4366
- name: "InvalidSortOrderException";
4367
- $fault: "client";
4366
+ export declare class InvalidSortOrderException extends __BaseException {
4367
+ readonly name: "InvalidSortOrderException";
4368
+ readonly $fault: "client";
4368
4369
  /**
4369
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
4370
+ * @internal
4370
4371
  */
4371
- message?: string;
4372
+ constructor(opts: __ExceptionOptionType<InvalidSortOrderException, __BaseException>);
4372
4373
  }
4373
4374
  export declare enum ListStateFilterAction {
4374
4375
  Exclude = "exclude",
@@ -4616,48 +4617,48 @@ export declare namespace ListDeploymentGroupsOutput {
4616
4617
  * <p>An instance type was specified for an in-place deployment. Instance types are
4617
4618
  * supported for blue/green deployments only.</p>
4618
4619
  */
4619
- export interface InvalidDeploymentInstanceTypeException extends __SmithyException, $MetadataBearer {
4620
- name: "InvalidDeploymentInstanceTypeException";
4621
- $fault: "client";
4620
+ export declare class InvalidDeploymentInstanceTypeException extends __BaseException {
4621
+ readonly name: "InvalidDeploymentInstanceTypeException";
4622
+ readonly $fault: "client";
4622
4623
  /**
4623
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
4624
+ * @internal
4624
4625
  */
4625
- message?: string;
4626
+ constructor(opts: __ExceptionOptionType<InvalidDeploymentInstanceTypeException, __BaseException>);
4626
4627
  }
4627
4628
  /**
4628
4629
  * <p>The specified instance status does not exist.</p>
4629
4630
  */
4630
- export interface InvalidInstanceStatusException extends __SmithyException, $MetadataBearer {
4631
- name: "InvalidInstanceStatusException";
4632
- $fault: "client";
4631
+ export declare class InvalidInstanceStatusException extends __BaseException {
4632
+ readonly name: "InvalidInstanceStatusException";
4633
+ readonly $fault: "client";
4633
4634
  /**
4634
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
4635
+ * @internal
4635
4636
  */
4636
- message?: string;
4637
+ constructor(opts: __ExceptionOptionType<InvalidInstanceStatusException, __BaseException>);
4637
4638
  }
4638
4639
  /**
4639
4640
  * <p>An invalid instance type was specified for instances in a blue/green deployment. Valid
4640
4641
  * values include "Blue" for an original environment and "Green" for a replacement
4641
4642
  * environment.</p>
4642
4643
  */
4643
- export interface InvalidInstanceTypeException extends __SmithyException, $MetadataBearer {
4644
- name: "InvalidInstanceTypeException";
4645
- $fault: "client";
4644
+ export declare class InvalidInstanceTypeException extends __BaseException {
4645
+ readonly name: "InvalidInstanceTypeException";
4646
+ readonly $fault: "client";
4646
4647
  /**
4647
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
4648
+ * @internal
4648
4649
  */
4649
- message?: string;
4650
+ constructor(opts: __ExceptionOptionType<InvalidInstanceTypeException, __BaseException>);
4650
4651
  }
4651
4652
  /**
4652
4653
  * <p> The target filter name is invalid. </p>
4653
4654
  */
4654
- export interface InvalidTargetFilterNameException extends __SmithyException, $MetadataBearer {
4655
- name: "InvalidTargetFilterNameException";
4656
- $fault: "client";
4655
+ export declare class InvalidTargetFilterNameException extends __BaseException {
4656
+ readonly name: "InvalidTargetFilterNameException";
4657
+ readonly $fault: "client";
4657
4658
  /**
4658
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
4659
+ * @internal
4659
4660
  */
4660
- message?: string;
4661
+ constructor(opts: __ExceptionOptionType<InvalidTargetFilterNameException, __BaseException>);
4661
4662
  }
4662
4663
  /**
4663
4664
  * <p> Represents the input of a <code>ListDeploymentInstances</code> operation. </p>
@@ -4742,24 +4743,24 @@ export declare namespace ListDeploymentInstancesOutput {
4742
4743
  /**
4743
4744
  * <p>The external ID was specified in an invalid format.</p>
4744
4745
  */
4745
- export interface InvalidExternalIdException extends __SmithyException, $MetadataBearer {
4746
- name: "InvalidExternalIdException";
4747
- $fault: "client";
4746
+ export declare class InvalidExternalIdException extends __BaseException {
4747
+ readonly name: "InvalidExternalIdException";
4748
+ readonly $fault: "client";
4748
4749
  /**
4749
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
4750
+ * @internal
4750
4751
  */
4751
- message?: string;
4752
+ constructor(opts: __ExceptionOptionType<InvalidExternalIdException, __BaseException>);
4752
4753
  }
4753
4754
  /**
4754
4755
  * <p>The specified time range was specified in an invalid format.</p>
4755
4756
  */
4756
- export interface InvalidTimeRangeException extends __SmithyException, $MetadataBearer {
4757
- name: "InvalidTimeRangeException";
4758
- $fault: "client";
4757
+ export declare class InvalidTimeRangeException extends __BaseException {
4758
+ readonly name: "InvalidTimeRangeException";
4759
+ readonly $fault: "client";
4759
4760
  /**
4760
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
4761
+ * @internal
4761
4762
  */
4762
- message?: string;
4763
+ constructor(opts: __ExceptionOptionType<InvalidTimeRangeException, __BaseException>);
4763
4764
  }
4764
4765
  /**
4765
4766
  * <p>Information about a time range.</p>
@@ -4984,24 +4985,24 @@ export declare namespace ListGitHubAccountTokenNamesOutput {
4984
4985
  /**
4985
4986
  * <p>The registration status was specified in an invalid format.</p>
4986
4987
  */
4987
- export interface InvalidRegistrationStatusException extends __SmithyException, $MetadataBearer {
4988
- name: "InvalidRegistrationStatusException";
4989
- $fault: "client";
4988
+ export declare class InvalidRegistrationStatusException extends __BaseException {
4989
+ readonly name: "InvalidRegistrationStatusException";
4990
+ readonly $fault: "client";
4990
4991
  /**
4991
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
4992
+ * @internal
4992
4993
  */
4993
- message?: string;
4994
+ constructor(opts: __ExceptionOptionType<InvalidRegistrationStatusException, __BaseException>);
4994
4995
  }
4995
4996
  /**
4996
4997
  * <p>The tag filter was specified in an invalid format.</p>
4997
4998
  */
4998
- export interface InvalidTagFilterException extends __SmithyException, $MetadataBearer {
4999
- name: "InvalidTagFilterException";
5000
- $fault: "client";
4999
+ export declare class InvalidTagFilterException extends __BaseException {
5000
+ readonly name: "InvalidTagFilterException";
5001
+ readonly $fault: "client";
5001
5002
  /**
5002
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
5003
+ * @internal
5003
5004
  */
5004
- message?: string;
5005
+ constructor(opts: __ExceptionOptionType<InvalidTagFilterException, __BaseException>);
5005
5006
  }
5006
5007
  export declare enum RegistrationStatus {
5007
5008
  Deregistered = "Deregistered",
@@ -5068,13 +5069,13 @@ export declare namespace ListOnPremisesInstancesOutput {
5068
5069
  /**
5069
5070
  * <p> The specified ARN is not in a valid format. </p>
5070
5071
  */
5071
- export interface InvalidArnException extends __SmithyException, $MetadataBearer {
5072
- name: "InvalidArnException";
5073
- $fault: "client";
5072
+ export declare class InvalidArnException extends __BaseException {
5073
+ readonly name: "InvalidArnException";
5074
+ readonly $fault: "client";
5074
5075
  /**
5075
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
5076
+ * @internal
5076
5077
  */
5077
- message?: string;
5078
+ constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
5078
5079
  }
5079
5080
  export interface ListTagsForResourceInput {
5080
5081
  /**
@@ -5117,50 +5118,50 @@ export declare namespace ListTagsForResourceOutput {
5117
5118
  /**
5118
5119
  * <p> The ARN of a resource is required, but was not found. </p>
5119
5120
  */
5120
- export interface ResourceArnRequiredException extends __SmithyException, $MetadataBearer {
5121
- name: "ResourceArnRequiredException";
5122
- $fault: "client";
5121
+ export declare class ResourceArnRequiredException extends __BaseException {
5122
+ readonly name: "ResourceArnRequiredException";
5123
+ readonly $fault: "client";
5123
5124
  /**
5124
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
5125
+ * @internal
5125
5126
  */
5126
- message?: string;
5127
+ constructor(opts: __ExceptionOptionType<ResourceArnRequiredException, __BaseException>);
5127
5128
  }
5128
5129
  /**
5129
5130
  * <p>A lifecycle event hook is invalid. Review the <code>hooks</code> section in your
5130
5131
  * AppSpec file to ensure the lifecycle events and <code>hooks</code> functions are
5131
5132
  * valid.</p>
5132
5133
  */
5133
- export interface InvalidLifecycleEventHookExecutionIdException extends __SmithyException, $MetadataBearer {
5134
- name: "InvalidLifecycleEventHookExecutionIdException";
5135
- $fault: "client";
5134
+ export declare class InvalidLifecycleEventHookExecutionIdException extends __BaseException {
5135
+ readonly name: "InvalidLifecycleEventHookExecutionIdException";
5136
+ readonly $fault: "client";
5136
5137
  /**
5137
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
5138
+ * @internal
5138
5139
  */
5139
- message?: string;
5140
+ constructor(opts: __ExceptionOptionType<InvalidLifecycleEventHookExecutionIdException, __BaseException>);
5140
5141
  }
5141
5142
  /**
5142
5143
  * <p>The result of a Lambda validation function that verifies a lifecycle event is invalid.
5143
5144
  * It should return <code>Succeeded</code> or <code>Failed</code>.</p>
5144
5145
  */
5145
- export interface InvalidLifecycleEventHookExecutionStatusException extends __SmithyException, $MetadataBearer {
5146
- name: "InvalidLifecycleEventHookExecutionStatusException";
5147
- $fault: "client";
5146
+ export declare class InvalidLifecycleEventHookExecutionStatusException extends __BaseException {
5147
+ readonly name: "InvalidLifecycleEventHookExecutionStatusException";
5148
+ readonly $fault: "client";
5148
5149
  /**
5149
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
5150
+ * @internal
5150
5151
  */
5151
- message?: string;
5152
+ constructor(opts: __ExceptionOptionType<InvalidLifecycleEventHookExecutionStatusException, __BaseException>);
5152
5153
  }
5153
5154
  /**
5154
5155
  * <p>An attempt to return the status of an already completed lifecycle event
5155
5156
  * occurred.</p>
5156
5157
  */
5157
- export interface LifecycleEventAlreadyCompletedException extends __SmithyException, $MetadataBearer {
5158
- name: "LifecycleEventAlreadyCompletedException";
5159
- $fault: "client";
5158
+ export declare class LifecycleEventAlreadyCompletedException extends __BaseException {
5159
+ readonly name: "LifecycleEventAlreadyCompletedException";
5160
+ readonly $fault: "client";
5160
5161
  /**
5161
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
5162
+ * @internal
5162
5163
  */
5163
- message?: string;
5164
+ constructor(opts: __ExceptionOptionType<LifecycleEventAlreadyCompletedException, __BaseException>);
5164
5165
  }
5165
5166
  export interface PutLifecycleEventHookExecutionStatusInput {
5166
5167
  /**
@@ -5228,92 +5229,92 @@ export declare namespace RegisterApplicationRevisionInput {
5228
5229
  * <p>No IAM ARN was included in the request. You must use an IAM session ARN or IAM user
5229
5230
  * ARN in the request.</p>
5230
5231
  */
5231
- export interface IamArnRequiredException extends __SmithyException, $MetadataBearer {
5232
- name: "IamArnRequiredException";
5233
- $fault: "client";
5232
+ export declare class IamArnRequiredException extends __BaseException {
5233
+ readonly name: "IamArnRequiredException";
5234
+ readonly $fault: "client";
5234
5235
  /**
5235
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
5236
+ * @internal
5236
5237
  */
5237
- message?: string;
5238
+ constructor(opts: __ExceptionOptionType<IamArnRequiredException, __BaseException>);
5238
5239
  }
5239
5240
  /**
5240
5241
  * <p>The request included an IAM session ARN that has already been used to register a
5241
5242
  * different instance.</p>
5242
5243
  */
5243
- export interface IamSessionArnAlreadyRegisteredException extends __SmithyException, $MetadataBearer {
5244
- name: "IamSessionArnAlreadyRegisteredException";
5245
- $fault: "client";
5244
+ export declare class IamSessionArnAlreadyRegisteredException extends __BaseException {
5245
+ readonly name: "IamSessionArnAlreadyRegisteredException";
5246
+ readonly $fault: "client";
5246
5247
  /**
5247
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
5248
+ * @internal
5248
5249
  */
5249
- message?: string;
5250
+ constructor(opts: __ExceptionOptionType<IamSessionArnAlreadyRegisteredException, __BaseException>);
5250
5251
  }
5251
5252
  /**
5252
5253
  * <p>The specified IAM user ARN is already registered with an on-premises instance.</p>
5253
5254
  */
5254
- export interface IamUserArnAlreadyRegisteredException extends __SmithyException, $MetadataBearer {
5255
- name: "IamUserArnAlreadyRegisteredException";
5256
- $fault: "client";
5255
+ export declare class IamUserArnAlreadyRegisteredException extends __BaseException {
5256
+ readonly name: "IamUserArnAlreadyRegisteredException";
5257
+ readonly $fault: "client";
5257
5258
  /**
5258
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
5259
+ * @internal
5259
5260
  */
5260
- message?: string;
5261
+ constructor(opts: __ExceptionOptionType<IamUserArnAlreadyRegisteredException, __BaseException>);
5261
5262
  }
5262
5263
  /**
5263
5264
  * <p>An IAM user ARN was not specified.</p>
5264
5265
  */
5265
- export interface IamUserArnRequiredException extends __SmithyException, $MetadataBearer {
5266
- name: "IamUserArnRequiredException";
5267
- $fault: "client";
5266
+ export declare class IamUserArnRequiredException extends __BaseException {
5267
+ readonly name: "IamUserArnRequiredException";
5268
+ readonly $fault: "client";
5268
5269
  /**
5269
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
5270
+ * @internal
5270
5271
  */
5271
- message?: string;
5272
+ constructor(opts: __ExceptionOptionType<IamUserArnRequiredException, __BaseException>);
5272
5273
  }
5273
5274
  /**
5274
5275
  * <p>The specified on-premises instance name is already registered.</p>
5275
5276
  */
5276
- export interface InstanceNameAlreadyRegisteredException extends __SmithyException, $MetadataBearer {
5277
- name: "InstanceNameAlreadyRegisteredException";
5278
- $fault: "client";
5277
+ export declare class InstanceNameAlreadyRegisteredException extends __BaseException {
5278
+ readonly name: "InstanceNameAlreadyRegisteredException";
5279
+ readonly $fault: "client";
5279
5280
  /**
5280
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
5281
+ * @internal
5281
5282
  */
5282
- message?: string;
5283
+ constructor(opts: __ExceptionOptionType<InstanceNameAlreadyRegisteredException, __BaseException>);
5283
5284
  }
5284
5285
  /**
5285
5286
  * <p>The IAM session ARN was specified in an invalid format.</p>
5286
5287
  */
5287
- export interface InvalidIamSessionArnException extends __SmithyException, $MetadataBearer {
5288
- name: "InvalidIamSessionArnException";
5289
- $fault: "client";
5288
+ export declare class InvalidIamSessionArnException extends __BaseException {
5289
+ readonly name: "InvalidIamSessionArnException";
5290
+ readonly $fault: "client";
5290
5291
  /**
5291
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
5292
+ * @internal
5292
5293
  */
5293
- message?: string;
5294
+ constructor(opts: __ExceptionOptionType<InvalidIamSessionArnException, __BaseException>);
5294
5295
  }
5295
5296
  /**
5296
5297
  * <p>The IAM user ARN was specified in an invalid format.</p>
5297
5298
  */
5298
- export interface InvalidIamUserArnException extends __SmithyException, $MetadataBearer {
5299
- name: "InvalidIamUserArnException";
5300
- $fault: "client";
5299
+ export declare class InvalidIamUserArnException extends __BaseException {
5300
+ readonly name: "InvalidIamUserArnException";
5301
+ readonly $fault: "client";
5301
5302
  /**
5302
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
5303
+ * @internal
5303
5304
  */
5304
- message?: string;
5305
+ constructor(opts: __ExceptionOptionType<InvalidIamUserArnException, __BaseException>);
5305
5306
  }
5306
5307
  /**
5307
5308
  * <p>Both an IAM user ARN and an IAM session ARN were included in the request. Use only one
5308
5309
  * ARN type.</p>
5309
5310
  */
5310
- export interface MultipleIamArnsProvidedException extends __SmithyException, $MetadataBearer {
5311
- name: "MultipleIamArnsProvidedException";
5312
- $fault: "client";
5311
+ export declare class MultipleIamArnsProvidedException extends __BaseException {
5312
+ readonly name: "MultipleIamArnsProvidedException";
5313
+ readonly $fault: "client";
5313
5314
  /**
5314
- * <p>The message that corresponds to the exception thrown by AWS CodeDeploy.</p>
5315
+ * @internal
5315
5316
  */
5316
- message?: string;
5317
+ constructor(opts: __ExceptionOptionType<MultipleIamArnsProvidedException, __BaseException>);
5317
5318
  }
5318
5319
  /**
5319
5320
  * <p>Represents the input of the register on-premises instance operation.</p>