@aws-sdk/client-codedeploy 3.183.0 → 3.186.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.
- package/CHANGELOG.md +19 -0
- package/dist-cjs/protocols/Aws_json1_1.js +2 -2
- package/dist-es/CodeDeploy.js +197 -190
- package/dist-es/CodeDeployClient.js +28 -22
- package/dist-es/commands/AddTagsToOnPremisesInstancesCommand.js +29 -22
- package/dist-es/commands/BatchGetApplicationRevisionsCommand.js +28 -21
- package/dist-es/commands/BatchGetApplicationsCommand.js +28 -21
- package/dist-es/commands/BatchGetDeploymentGroupsCommand.js +28 -21
- package/dist-es/commands/BatchGetDeploymentInstancesCommand.js +28 -21
- package/dist-es/commands/BatchGetDeploymentTargetsCommand.js +28 -21
- package/dist-es/commands/BatchGetDeploymentsCommand.js +28 -21
- package/dist-es/commands/BatchGetOnPremisesInstancesCommand.js +28 -21
- package/dist-es/commands/ContinueDeploymentCommand.js +29 -22
- package/dist-es/commands/CreateApplicationCommand.js +28 -21
- package/dist-es/commands/CreateDeploymentCommand.js +28 -21
- package/dist-es/commands/CreateDeploymentConfigCommand.js +28 -21
- package/dist-es/commands/CreateDeploymentGroupCommand.js +28 -21
- package/dist-es/commands/DeleteApplicationCommand.js +29 -22
- package/dist-es/commands/DeleteDeploymentConfigCommand.js +29 -22
- package/dist-es/commands/DeleteDeploymentGroupCommand.js +28 -21
- package/dist-es/commands/DeleteGitHubAccountTokenCommand.js +28 -21
- package/dist-es/commands/DeleteResourcesByExternalIdCommand.js +28 -21
- package/dist-es/commands/DeregisterOnPremisesInstanceCommand.js +29 -22
- package/dist-es/commands/GetApplicationCommand.js +28 -21
- package/dist-es/commands/GetApplicationRevisionCommand.js +28 -21
- package/dist-es/commands/GetDeploymentCommand.js +28 -21
- package/dist-es/commands/GetDeploymentConfigCommand.js +28 -21
- package/dist-es/commands/GetDeploymentGroupCommand.js +28 -21
- package/dist-es/commands/GetDeploymentInstanceCommand.js +28 -21
- package/dist-es/commands/GetDeploymentTargetCommand.js +28 -21
- package/dist-es/commands/GetOnPremisesInstanceCommand.js +28 -21
- package/dist-es/commands/ListApplicationRevisionsCommand.js +28 -21
- package/dist-es/commands/ListApplicationsCommand.js +28 -21
- package/dist-es/commands/ListDeploymentConfigsCommand.js +28 -21
- package/dist-es/commands/ListDeploymentGroupsCommand.js +28 -21
- package/dist-es/commands/ListDeploymentInstancesCommand.js +28 -21
- package/dist-es/commands/ListDeploymentTargetsCommand.js +28 -21
- package/dist-es/commands/ListDeploymentsCommand.js +28 -21
- package/dist-es/commands/ListGitHubAccountTokenNamesCommand.js +28 -21
- package/dist-es/commands/ListOnPremisesInstancesCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/PutLifecycleEventHookExecutionStatusCommand.js +28 -21
- package/dist-es/commands/RegisterApplicationRevisionCommand.js +29 -22
- package/dist-es/commands/RegisterOnPremisesInstanceCommand.js +29 -22
- package/dist-es/commands/RemoveTagsFromOnPremisesInstancesCommand.js +29 -22
- package/dist-es/commands/SkipWaitTimeForInstanceTerminationCommand.js +29 -22
- package/dist-es/commands/StopDeploymentCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateApplicationCommand.js +29 -22
- package/dist-es/commands/UpdateDeploymentGroupCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/CodeDeployServiceException.js +10 -5
- package/dist-es/models/models_0.js +1447 -1722
- package/dist-es/pagination/ListApplicationRevisionsPaginator.js +67 -24
- package/dist-es/pagination/ListApplicationsPaginator.js +67 -24
- package/dist-es/pagination/ListDeploymentConfigsPaginator.js +67 -24
- package/dist-es/pagination/ListDeploymentGroupsPaginator.js +67 -24
- package/dist-es/pagination/ListDeploymentInstancesPaginator.js +67 -24
- package/dist-es/pagination/ListDeploymentsPaginator.js +67 -24
- package/dist-es/protocols/Aws_json1_1.js +5810 -4820
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/dist-es/waiters/waitForDeploymentSuccessful.js +65 -45
- package/package.json +34 -34
|
@@ -1,172 +1,173 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { CodeDeployServiceException as __BaseException } from "./CodeDeployServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
}
|
|
3
|
+
var InstanceLimitExceededException = (function (_super) {
|
|
4
|
+
__extends(InstanceLimitExceededException, _super);
|
|
5
|
+
function InstanceLimitExceededException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "InstanceLimitExceededException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "InstanceLimitExceededException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, InstanceLimitExceededException.prototype);
|
|
10
|
+
return _this;
|
|
11
|
+
}
|
|
12
|
+
return InstanceLimitExceededException;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { InstanceLimitExceededException };
|
|
15
|
+
var InstanceNameRequiredException = (function (_super) {
|
|
16
|
+
__extends(InstanceNameRequiredException, _super);
|
|
17
|
+
function InstanceNameRequiredException(opts) {
|
|
18
|
+
var _this = _super.call(this, __assign({ name: "InstanceNameRequiredException", $fault: "client" }, opts)) || this;
|
|
19
|
+
_this.name = "InstanceNameRequiredException";
|
|
20
|
+
_this.$fault = "client";
|
|
21
|
+
Object.setPrototypeOf(_this, InstanceNameRequiredException.prototype);
|
|
22
|
+
return _this;
|
|
23
|
+
}
|
|
24
|
+
return InstanceNameRequiredException;
|
|
25
|
+
}(__BaseException));
|
|
26
|
+
export { InstanceNameRequiredException };
|
|
27
|
+
var InstanceNotRegisteredException = (function (_super) {
|
|
28
|
+
__extends(InstanceNotRegisteredException, _super);
|
|
29
|
+
function InstanceNotRegisteredException(opts) {
|
|
30
|
+
var _this = _super.call(this, __assign({ name: "InstanceNotRegisteredException", $fault: "client" }, opts)) || this;
|
|
31
|
+
_this.name = "InstanceNotRegisteredException";
|
|
32
|
+
_this.$fault = "client";
|
|
33
|
+
Object.setPrototypeOf(_this, InstanceNotRegisteredException.prototype);
|
|
34
|
+
return _this;
|
|
35
|
+
}
|
|
36
|
+
return InstanceNotRegisteredException;
|
|
37
|
+
}(__BaseException));
|
|
38
|
+
export { InstanceNotRegisteredException };
|
|
39
|
+
var InvalidInstanceNameException = (function (_super) {
|
|
40
|
+
__extends(InvalidInstanceNameException, _super);
|
|
41
|
+
function InvalidInstanceNameException(opts) {
|
|
42
|
+
var _this = _super.call(this, __assign({ name: "InvalidInstanceNameException", $fault: "client" }, opts)) || this;
|
|
43
|
+
_this.name = "InvalidInstanceNameException";
|
|
44
|
+
_this.$fault = "client";
|
|
45
|
+
Object.setPrototypeOf(_this, InvalidInstanceNameException.prototype);
|
|
46
|
+
return _this;
|
|
47
|
+
}
|
|
48
|
+
return InvalidInstanceNameException;
|
|
49
|
+
}(__BaseException));
|
|
50
|
+
export { InvalidInstanceNameException };
|
|
51
|
+
var InvalidTagException = (function (_super) {
|
|
52
|
+
__extends(InvalidTagException, _super);
|
|
53
|
+
function InvalidTagException(opts) {
|
|
54
|
+
var _this = _super.call(this, __assign({ name: "InvalidTagException", $fault: "client" }, opts)) || this;
|
|
55
|
+
_this.name = "InvalidTagException";
|
|
56
|
+
_this.$fault = "client";
|
|
57
|
+
Object.setPrototypeOf(_this, InvalidTagException.prototype);
|
|
58
|
+
return _this;
|
|
59
|
+
}
|
|
60
|
+
return InvalidTagException;
|
|
61
|
+
}(__BaseException));
|
|
62
|
+
export { InvalidTagException };
|
|
63
|
+
var TagLimitExceededException = (function (_super) {
|
|
64
|
+
__extends(TagLimitExceededException, _super);
|
|
65
|
+
function TagLimitExceededException(opts) {
|
|
66
|
+
var _this = _super.call(this, __assign({ name: "TagLimitExceededException", $fault: "client" }, opts)) || this;
|
|
67
|
+
_this.name = "TagLimitExceededException";
|
|
68
|
+
_this.$fault = "client";
|
|
69
|
+
Object.setPrototypeOf(_this, TagLimitExceededException.prototype);
|
|
70
|
+
return _this;
|
|
71
|
+
}
|
|
72
|
+
return TagLimitExceededException;
|
|
73
|
+
}(__BaseException));
|
|
74
|
+
export { TagLimitExceededException };
|
|
75
|
+
var TagRequiredException = (function (_super) {
|
|
76
|
+
__extends(TagRequiredException, _super);
|
|
77
|
+
function TagRequiredException(opts) {
|
|
78
|
+
var _this = _super.call(this, __assign({ name: "TagRequiredException", $fault: "client" }, opts)) || this;
|
|
79
|
+
_this.name = "TagRequiredException";
|
|
80
|
+
_this.$fault = "client";
|
|
81
|
+
Object.setPrototypeOf(_this, TagRequiredException.prototype);
|
|
82
|
+
return _this;
|
|
83
|
+
}
|
|
84
|
+
return TagRequiredException;
|
|
85
|
+
}(__BaseException));
|
|
86
|
+
export { TagRequiredException };
|
|
87
|
+
var AlarmsLimitExceededException = (function (_super) {
|
|
88
|
+
__extends(AlarmsLimitExceededException, _super);
|
|
89
|
+
function AlarmsLimitExceededException(opts) {
|
|
90
|
+
var _this = _super.call(this, __assign({ name: "AlarmsLimitExceededException", $fault: "client" }, opts)) || this;
|
|
91
|
+
_this.name = "AlarmsLimitExceededException";
|
|
92
|
+
_this.$fault = "client";
|
|
93
|
+
Object.setPrototypeOf(_this, AlarmsLimitExceededException.prototype);
|
|
94
|
+
return _this;
|
|
95
|
+
}
|
|
96
|
+
return AlarmsLimitExceededException;
|
|
97
|
+
}(__BaseException));
|
|
98
|
+
export { AlarmsLimitExceededException };
|
|
99
|
+
var ApplicationAlreadyExistsException = (function (_super) {
|
|
100
|
+
__extends(ApplicationAlreadyExistsException, _super);
|
|
101
|
+
function ApplicationAlreadyExistsException(opts) {
|
|
102
|
+
var _this = _super.call(this, __assign({ name: "ApplicationAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
103
|
+
_this.name = "ApplicationAlreadyExistsException";
|
|
104
|
+
_this.$fault = "client";
|
|
105
|
+
Object.setPrototypeOf(_this, ApplicationAlreadyExistsException.prototype);
|
|
106
|
+
return _this;
|
|
107
|
+
}
|
|
108
|
+
return ApplicationAlreadyExistsException;
|
|
109
|
+
}(__BaseException));
|
|
110
|
+
export { ApplicationAlreadyExistsException };
|
|
111
|
+
var ApplicationDoesNotExistException = (function (_super) {
|
|
112
|
+
__extends(ApplicationDoesNotExistException, _super);
|
|
113
|
+
function ApplicationDoesNotExistException(opts) {
|
|
114
|
+
var _this = _super.call(this, __assign({ name: "ApplicationDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
115
|
+
_this.name = "ApplicationDoesNotExistException";
|
|
116
|
+
_this.$fault = "client";
|
|
117
|
+
Object.setPrototypeOf(_this, ApplicationDoesNotExistException.prototype);
|
|
118
|
+
return _this;
|
|
119
|
+
}
|
|
120
|
+
return ApplicationDoesNotExistException;
|
|
121
|
+
}(__BaseException));
|
|
122
|
+
export { ApplicationDoesNotExistException };
|
|
122
123
|
export var ComputePlatform;
|
|
123
124
|
(function (ComputePlatform) {
|
|
124
125
|
ComputePlatform["ECS"] = "ECS";
|
|
125
126
|
ComputePlatform["LAMBDA"] = "Lambda";
|
|
126
127
|
ComputePlatform["SERVER"] = "Server";
|
|
127
128
|
})(ComputePlatform || (ComputePlatform = {}));
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
}
|
|
129
|
+
var ApplicationLimitExceededException = (function (_super) {
|
|
130
|
+
__extends(ApplicationLimitExceededException, _super);
|
|
131
|
+
function ApplicationLimitExceededException(opts) {
|
|
132
|
+
var _this = _super.call(this, __assign({ name: "ApplicationLimitExceededException", $fault: "client" }, opts)) || this;
|
|
133
|
+
_this.name = "ApplicationLimitExceededException";
|
|
134
|
+
_this.$fault = "client";
|
|
135
|
+
Object.setPrototypeOf(_this, ApplicationLimitExceededException.prototype);
|
|
136
|
+
return _this;
|
|
137
|
+
}
|
|
138
|
+
return ApplicationLimitExceededException;
|
|
139
|
+
}(__BaseException));
|
|
140
|
+
export { ApplicationLimitExceededException };
|
|
141
|
+
var ApplicationNameRequiredException = (function (_super) {
|
|
142
|
+
__extends(ApplicationNameRequiredException, _super);
|
|
143
|
+
function ApplicationNameRequiredException(opts) {
|
|
144
|
+
var _this = _super.call(this, __assign({ name: "ApplicationNameRequiredException", $fault: "client" }, opts)) || this;
|
|
145
|
+
_this.name = "ApplicationNameRequiredException";
|
|
146
|
+
_this.$fault = "client";
|
|
147
|
+
Object.setPrototypeOf(_this, ApplicationNameRequiredException.prototype);
|
|
148
|
+
return _this;
|
|
149
|
+
}
|
|
150
|
+
return ApplicationNameRequiredException;
|
|
151
|
+
}(__BaseException));
|
|
152
|
+
export { ApplicationNameRequiredException };
|
|
152
153
|
export var ApplicationRevisionSortBy;
|
|
153
154
|
(function (ApplicationRevisionSortBy) {
|
|
154
155
|
ApplicationRevisionSortBy["FirstUsedTime"] = "firstUsedTime";
|
|
155
156
|
ApplicationRevisionSortBy["LastUsedTime"] = "lastUsedTime";
|
|
156
157
|
ApplicationRevisionSortBy["RegisterTime"] = "registerTime";
|
|
157
158
|
})(ApplicationRevisionSortBy || (ApplicationRevisionSortBy = {}));
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
}
|
|
159
|
+
var ArnNotSupportedException = (function (_super) {
|
|
160
|
+
__extends(ArnNotSupportedException, _super);
|
|
161
|
+
function ArnNotSupportedException(opts) {
|
|
162
|
+
var _this = _super.call(this, __assign({ name: "ArnNotSupportedException", $fault: "client" }, opts)) || this;
|
|
163
|
+
_this.name = "ArnNotSupportedException";
|
|
164
|
+
_this.$fault = "client";
|
|
165
|
+
Object.setPrototypeOf(_this, ArnNotSupportedException.prototype);
|
|
166
|
+
return _this;
|
|
167
|
+
}
|
|
168
|
+
return ArnNotSupportedException;
|
|
169
|
+
}(__BaseException));
|
|
170
|
+
export { ArnNotSupportedException };
|
|
170
171
|
export var AutoRollbackEvent;
|
|
171
172
|
(function (AutoRollbackEvent) {
|
|
172
173
|
AutoRollbackEvent["DEPLOYMENT_FAILURE"] = "DEPLOYMENT_FAILURE";
|
|
@@ -188,54 +189,54 @@ export var BundleType;
|
|
|
188
189
|
BundleType["YAML"] = "YAML";
|
|
189
190
|
BundleType["Zip"] = "zip";
|
|
190
191
|
})(BundleType || (BundleType = {}));
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
}
|
|
192
|
+
var BatchLimitExceededException = (function (_super) {
|
|
193
|
+
__extends(BatchLimitExceededException, _super);
|
|
194
|
+
function BatchLimitExceededException(opts) {
|
|
195
|
+
var _this = _super.call(this, __assign({ name: "BatchLimitExceededException", $fault: "client" }, opts)) || this;
|
|
196
|
+
_this.name = "BatchLimitExceededException";
|
|
197
|
+
_this.$fault = "client";
|
|
198
|
+
Object.setPrototypeOf(_this, BatchLimitExceededException.prototype);
|
|
199
|
+
return _this;
|
|
200
|
+
}
|
|
201
|
+
return BatchLimitExceededException;
|
|
202
|
+
}(__BaseException));
|
|
203
|
+
export { BatchLimitExceededException };
|
|
204
|
+
var InvalidApplicationNameException = (function (_super) {
|
|
205
|
+
__extends(InvalidApplicationNameException, _super);
|
|
206
|
+
function InvalidApplicationNameException(opts) {
|
|
207
|
+
var _this = _super.call(this, __assign({ name: "InvalidApplicationNameException", $fault: "client" }, opts)) || this;
|
|
208
|
+
_this.name = "InvalidApplicationNameException";
|
|
209
|
+
_this.$fault = "client";
|
|
210
|
+
Object.setPrototypeOf(_this, InvalidApplicationNameException.prototype);
|
|
211
|
+
return _this;
|
|
212
|
+
}
|
|
213
|
+
return InvalidApplicationNameException;
|
|
214
|
+
}(__BaseException));
|
|
215
|
+
export { InvalidApplicationNameException };
|
|
216
|
+
var InvalidRevisionException = (function (_super) {
|
|
217
|
+
__extends(InvalidRevisionException, _super);
|
|
218
|
+
function InvalidRevisionException(opts) {
|
|
219
|
+
var _this = _super.call(this, __assign({ name: "InvalidRevisionException", $fault: "client" }, opts)) || this;
|
|
220
|
+
_this.name = "InvalidRevisionException";
|
|
221
|
+
_this.$fault = "client";
|
|
222
|
+
Object.setPrototypeOf(_this, InvalidRevisionException.prototype);
|
|
223
|
+
return _this;
|
|
224
|
+
}
|
|
225
|
+
return InvalidRevisionException;
|
|
226
|
+
}(__BaseException));
|
|
227
|
+
export { InvalidRevisionException };
|
|
228
|
+
var RevisionRequiredException = (function (_super) {
|
|
229
|
+
__extends(RevisionRequiredException, _super);
|
|
230
|
+
function RevisionRequiredException(opts) {
|
|
231
|
+
var _this = _super.call(this, __assign({ name: "RevisionRequiredException", $fault: "client" }, opts)) || this;
|
|
232
|
+
_this.name = "RevisionRequiredException";
|
|
233
|
+
_this.$fault = "client";
|
|
234
|
+
Object.setPrototypeOf(_this, RevisionRequiredException.prototype);
|
|
235
|
+
return _this;
|
|
236
|
+
}
|
|
237
|
+
return RevisionRequiredException;
|
|
238
|
+
}(__BaseException));
|
|
239
|
+
export { RevisionRequiredException };
|
|
239
240
|
export var DeploymentReadyAction;
|
|
240
241
|
(function (DeploymentReadyAction) {
|
|
241
242
|
DeploymentReadyAction["CONTINUE_DEPLOYMENT"] = "CONTINUE_DEPLOYMENT";
|
|
@@ -302,42 +303,42 @@ export var TriggerEventType;
|
|
|
302
303
|
TriggerEventType["INSTANCE_START"] = "InstanceStart";
|
|
303
304
|
TriggerEventType["INSTANCE_SUCCESS"] = "InstanceSuccess";
|
|
304
305
|
})(TriggerEventType || (TriggerEventType = {}));
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
}
|
|
306
|
+
var DeploymentConfigDoesNotExistException = (function (_super) {
|
|
307
|
+
__extends(DeploymentConfigDoesNotExistException, _super);
|
|
308
|
+
function DeploymentConfigDoesNotExistException(opts) {
|
|
309
|
+
var _this = _super.call(this, __assign({ name: "DeploymentConfigDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
310
|
+
_this.name = "DeploymentConfigDoesNotExistException";
|
|
311
|
+
_this.$fault = "client";
|
|
312
|
+
Object.setPrototypeOf(_this, DeploymentConfigDoesNotExistException.prototype);
|
|
313
|
+
return _this;
|
|
314
|
+
}
|
|
315
|
+
return DeploymentConfigDoesNotExistException;
|
|
316
|
+
}(__BaseException));
|
|
317
|
+
export { DeploymentConfigDoesNotExistException };
|
|
318
|
+
var DeploymentGroupNameRequiredException = (function (_super) {
|
|
319
|
+
__extends(DeploymentGroupNameRequiredException, _super);
|
|
320
|
+
function DeploymentGroupNameRequiredException(opts) {
|
|
321
|
+
var _this = _super.call(this, __assign({ name: "DeploymentGroupNameRequiredException", $fault: "client" }, opts)) || this;
|
|
322
|
+
_this.name = "DeploymentGroupNameRequiredException";
|
|
323
|
+
_this.$fault = "client";
|
|
324
|
+
Object.setPrototypeOf(_this, DeploymentGroupNameRequiredException.prototype);
|
|
325
|
+
return _this;
|
|
326
|
+
}
|
|
327
|
+
return DeploymentGroupNameRequiredException;
|
|
328
|
+
}(__BaseException));
|
|
329
|
+
export { DeploymentGroupNameRequiredException };
|
|
330
|
+
var InvalidDeploymentGroupNameException = (function (_super) {
|
|
331
|
+
__extends(InvalidDeploymentGroupNameException, _super);
|
|
332
|
+
function InvalidDeploymentGroupNameException(opts) {
|
|
333
|
+
var _this = _super.call(this, __assign({ name: "InvalidDeploymentGroupNameException", $fault: "client" }, opts)) || this;
|
|
334
|
+
_this.name = "InvalidDeploymentGroupNameException";
|
|
335
|
+
_this.$fault = "client";
|
|
336
|
+
Object.setPrototypeOf(_this, InvalidDeploymentGroupNameException.prototype);
|
|
337
|
+
return _this;
|
|
338
|
+
}
|
|
339
|
+
return InvalidDeploymentGroupNameException;
|
|
340
|
+
}(__BaseException));
|
|
341
|
+
export { InvalidDeploymentGroupNameException };
|
|
341
342
|
export var _InstanceType;
|
|
342
343
|
(function (_InstanceType) {
|
|
343
344
|
_InstanceType["BLUE"] = "Blue";
|
|
@@ -371,66 +372,66 @@ export var InstanceStatus;
|
|
|
371
372
|
InstanceStatus["SUCCEEDED"] = "Succeeded";
|
|
372
373
|
InstanceStatus["UNKNOWN"] = "Unknown";
|
|
373
374
|
})(InstanceStatus || (InstanceStatus = {}));
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
}
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
}
|
|
375
|
+
var DeploymentDoesNotExistException = (function (_super) {
|
|
376
|
+
__extends(DeploymentDoesNotExistException, _super);
|
|
377
|
+
function DeploymentDoesNotExistException(opts) {
|
|
378
|
+
var _this = _super.call(this, __assign({ name: "DeploymentDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
379
|
+
_this.name = "DeploymentDoesNotExistException";
|
|
380
|
+
_this.$fault = "client";
|
|
381
|
+
Object.setPrototypeOf(_this, DeploymentDoesNotExistException.prototype);
|
|
382
|
+
return _this;
|
|
383
|
+
}
|
|
384
|
+
return DeploymentDoesNotExistException;
|
|
385
|
+
}(__BaseException));
|
|
386
|
+
export { DeploymentDoesNotExistException };
|
|
387
|
+
var DeploymentIdRequiredException = (function (_super) {
|
|
388
|
+
__extends(DeploymentIdRequiredException, _super);
|
|
389
|
+
function DeploymentIdRequiredException(opts) {
|
|
390
|
+
var _this = _super.call(this, __assign({ name: "DeploymentIdRequiredException", $fault: "client" }, opts)) || this;
|
|
391
|
+
_this.name = "DeploymentIdRequiredException";
|
|
392
|
+
_this.$fault = "client";
|
|
393
|
+
Object.setPrototypeOf(_this, DeploymentIdRequiredException.prototype);
|
|
394
|
+
return _this;
|
|
395
|
+
}
|
|
396
|
+
return DeploymentIdRequiredException;
|
|
397
|
+
}(__BaseException));
|
|
398
|
+
export { DeploymentIdRequiredException };
|
|
399
|
+
var InstanceIdRequiredException = (function (_super) {
|
|
400
|
+
__extends(InstanceIdRequiredException, _super);
|
|
401
|
+
function InstanceIdRequiredException(opts) {
|
|
402
|
+
var _this = _super.call(this, __assign({ name: "InstanceIdRequiredException", $fault: "client" }, opts)) || this;
|
|
403
|
+
_this.name = "InstanceIdRequiredException";
|
|
404
|
+
_this.$fault = "client";
|
|
405
|
+
Object.setPrototypeOf(_this, InstanceIdRequiredException.prototype);
|
|
406
|
+
return _this;
|
|
407
|
+
}
|
|
408
|
+
return InstanceIdRequiredException;
|
|
409
|
+
}(__BaseException));
|
|
410
|
+
export { InstanceIdRequiredException };
|
|
411
|
+
var InvalidComputePlatformException = (function (_super) {
|
|
412
|
+
__extends(InvalidComputePlatformException, _super);
|
|
413
|
+
function InvalidComputePlatformException(opts) {
|
|
414
|
+
var _this = _super.call(this, __assign({ name: "InvalidComputePlatformException", $fault: "client" }, opts)) || this;
|
|
415
|
+
_this.name = "InvalidComputePlatformException";
|
|
416
|
+
_this.$fault = "client";
|
|
417
|
+
Object.setPrototypeOf(_this, InvalidComputePlatformException.prototype);
|
|
418
|
+
return _this;
|
|
419
|
+
}
|
|
420
|
+
return InvalidComputePlatformException;
|
|
421
|
+
}(__BaseException));
|
|
422
|
+
export { InvalidComputePlatformException };
|
|
423
|
+
var InvalidDeploymentIdException = (function (_super) {
|
|
424
|
+
__extends(InvalidDeploymentIdException, _super);
|
|
425
|
+
function InvalidDeploymentIdException(opts) {
|
|
426
|
+
var _this = _super.call(this, __assign({ name: "InvalidDeploymentIdException", $fault: "client" }, opts)) || this;
|
|
427
|
+
_this.name = "InvalidDeploymentIdException";
|
|
428
|
+
_this.$fault = "client";
|
|
429
|
+
Object.setPrototypeOf(_this, InvalidDeploymentIdException.prototype);
|
|
430
|
+
return _this;
|
|
431
|
+
}
|
|
432
|
+
return InvalidDeploymentIdException;
|
|
433
|
+
}(__BaseException));
|
|
434
|
+
export { InvalidDeploymentIdException };
|
|
434
435
|
export var DeploymentCreator;
|
|
435
436
|
(function (DeploymentCreator) {
|
|
436
437
|
DeploymentCreator["Autoscaling"] = "autoscaling";
|
|
@@ -506,371 +507,371 @@ export var TargetLabel;
|
|
|
506
507
|
TargetLabel["BLUE"] = "Blue";
|
|
507
508
|
TargetLabel["GREEN"] = "Green";
|
|
508
509
|
})(TargetLabel || (TargetLabel = {}));
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
}
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
}
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
}
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
}
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
}
|
|
510
|
+
var DeploymentNotStartedException = (function (_super) {
|
|
511
|
+
__extends(DeploymentNotStartedException, _super);
|
|
512
|
+
function DeploymentNotStartedException(opts) {
|
|
513
|
+
var _this = _super.call(this, __assign({ name: "DeploymentNotStartedException", $fault: "client" }, opts)) || this;
|
|
514
|
+
_this.name = "DeploymentNotStartedException";
|
|
515
|
+
_this.$fault = "client";
|
|
516
|
+
Object.setPrototypeOf(_this, DeploymentNotStartedException.prototype);
|
|
517
|
+
return _this;
|
|
518
|
+
}
|
|
519
|
+
return DeploymentNotStartedException;
|
|
520
|
+
}(__BaseException));
|
|
521
|
+
export { DeploymentNotStartedException };
|
|
522
|
+
var DeploymentTargetDoesNotExistException = (function (_super) {
|
|
523
|
+
__extends(DeploymentTargetDoesNotExistException, _super);
|
|
524
|
+
function DeploymentTargetDoesNotExistException(opts) {
|
|
525
|
+
var _this = _super.call(this, __assign({ name: "DeploymentTargetDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
526
|
+
_this.name = "DeploymentTargetDoesNotExistException";
|
|
527
|
+
_this.$fault = "client";
|
|
528
|
+
Object.setPrototypeOf(_this, DeploymentTargetDoesNotExistException.prototype);
|
|
529
|
+
return _this;
|
|
530
|
+
}
|
|
531
|
+
return DeploymentTargetDoesNotExistException;
|
|
532
|
+
}(__BaseException));
|
|
533
|
+
export { DeploymentTargetDoesNotExistException };
|
|
534
|
+
var DeploymentTargetIdRequiredException = (function (_super) {
|
|
535
|
+
__extends(DeploymentTargetIdRequiredException, _super);
|
|
536
|
+
function DeploymentTargetIdRequiredException(opts) {
|
|
537
|
+
var _this = _super.call(this, __assign({ name: "DeploymentTargetIdRequiredException", $fault: "client" }, opts)) || this;
|
|
538
|
+
_this.name = "DeploymentTargetIdRequiredException";
|
|
539
|
+
_this.$fault = "client";
|
|
540
|
+
Object.setPrototypeOf(_this, DeploymentTargetIdRequiredException.prototype);
|
|
541
|
+
return _this;
|
|
542
|
+
}
|
|
543
|
+
return DeploymentTargetIdRequiredException;
|
|
544
|
+
}(__BaseException));
|
|
545
|
+
export { DeploymentTargetIdRequiredException };
|
|
546
|
+
var DeploymentTargetListSizeExceededException = (function (_super) {
|
|
547
|
+
__extends(DeploymentTargetListSizeExceededException, _super);
|
|
548
|
+
function DeploymentTargetListSizeExceededException(opts) {
|
|
549
|
+
var _this = _super.call(this, __assign({ name: "DeploymentTargetListSizeExceededException", $fault: "client" }, opts)) || this;
|
|
550
|
+
_this.name = "DeploymentTargetListSizeExceededException";
|
|
551
|
+
_this.$fault = "client";
|
|
552
|
+
Object.setPrototypeOf(_this, DeploymentTargetListSizeExceededException.prototype);
|
|
553
|
+
return _this;
|
|
554
|
+
}
|
|
555
|
+
return DeploymentTargetListSizeExceededException;
|
|
556
|
+
}(__BaseException));
|
|
557
|
+
export { DeploymentTargetListSizeExceededException };
|
|
558
|
+
var InstanceDoesNotExistException = (function (_super) {
|
|
559
|
+
__extends(InstanceDoesNotExistException, _super);
|
|
560
|
+
function InstanceDoesNotExistException(opts) {
|
|
561
|
+
var _this = _super.call(this, __assign({ name: "InstanceDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
562
|
+
_this.name = "InstanceDoesNotExistException";
|
|
563
|
+
_this.$fault = "client";
|
|
564
|
+
Object.setPrototypeOf(_this, InstanceDoesNotExistException.prototype);
|
|
565
|
+
return _this;
|
|
566
|
+
}
|
|
567
|
+
return InstanceDoesNotExistException;
|
|
568
|
+
}(__BaseException));
|
|
569
|
+
export { InstanceDoesNotExistException };
|
|
570
|
+
var InvalidDeploymentTargetIdException = (function (_super) {
|
|
571
|
+
__extends(InvalidDeploymentTargetIdException, _super);
|
|
572
|
+
function InvalidDeploymentTargetIdException(opts) {
|
|
573
|
+
var _this = _super.call(this, __assign({ name: "InvalidDeploymentTargetIdException", $fault: "client" }, opts)) || this;
|
|
574
|
+
_this.name = "InvalidDeploymentTargetIdException";
|
|
575
|
+
_this.$fault = "client";
|
|
576
|
+
Object.setPrototypeOf(_this, InvalidDeploymentTargetIdException.prototype);
|
|
577
|
+
return _this;
|
|
578
|
+
}
|
|
579
|
+
return InvalidDeploymentTargetIdException;
|
|
580
|
+
}(__BaseException));
|
|
581
|
+
export { InvalidDeploymentTargetIdException };
|
|
582
|
+
var BucketNameFilterRequiredException = (function (_super) {
|
|
583
|
+
__extends(BucketNameFilterRequiredException, _super);
|
|
584
|
+
function BucketNameFilterRequiredException(opts) {
|
|
585
|
+
var _this = _super.call(this, __assign({ name: "BucketNameFilterRequiredException", $fault: "client" }, opts)) || this;
|
|
586
|
+
_this.name = "BucketNameFilterRequiredException";
|
|
587
|
+
_this.$fault = "client";
|
|
588
|
+
Object.setPrototypeOf(_this, BucketNameFilterRequiredException.prototype);
|
|
589
|
+
return _this;
|
|
590
|
+
}
|
|
591
|
+
return BucketNameFilterRequiredException;
|
|
592
|
+
}(__BaseException));
|
|
593
|
+
export { BucketNameFilterRequiredException };
|
|
593
594
|
export var DeploymentWaitType;
|
|
594
595
|
(function (DeploymentWaitType) {
|
|
595
596
|
DeploymentWaitType["READY_WAIT"] = "READY_WAIT";
|
|
596
597
|
DeploymentWaitType["TERMINATION_WAIT"] = "TERMINATION_WAIT";
|
|
597
598
|
})(DeploymentWaitType || (DeploymentWaitType = {}));
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
}
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
}
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
}
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
}
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
}
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
}
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
}
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
}
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
}
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
}
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
}
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
}
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
}
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
}
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
}
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
}
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
}
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
}
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
}
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
}
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
}
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
}
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
}
|
|
599
|
+
var DeploymentAlreadyCompletedException = (function (_super) {
|
|
600
|
+
__extends(DeploymentAlreadyCompletedException, _super);
|
|
601
|
+
function DeploymentAlreadyCompletedException(opts) {
|
|
602
|
+
var _this = _super.call(this, __assign({ name: "DeploymentAlreadyCompletedException", $fault: "client" }, opts)) || this;
|
|
603
|
+
_this.name = "DeploymentAlreadyCompletedException";
|
|
604
|
+
_this.$fault = "client";
|
|
605
|
+
Object.setPrototypeOf(_this, DeploymentAlreadyCompletedException.prototype);
|
|
606
|
+
return _this;
|
|
607
|
+
}
|
|
608
|
+
return DeploymentAlreadyCompletedException;
|
|
609
|
+
}(__BaseException));
|
|
610
|
+
export { DeploymentAlreadyCompletedException };
|
|
611
|
+
var DeploymentIsNotInReadyStateException = (function (_super) {
|
|
612
|
+
__extends(DeploymentIsNotInReadyStateException, _super);
|
|
613
|
+
function DeploymentIsNotInReadyStateException(opts) {
|
|
614
|
+
var _this = _super.call(this, __assign({ name: "DeploymentIsNotInReadyStateException", $fault: "client" }, opts)) || this;
|
|
615
|
+
_this.name = "DeploymentIsNotInReadyStateException";
|
|
616
|
+
_this.$fault = "client";
|
|
617
|
+
Object.setPrototypeOf(_this, DeploymentIsNotInReadyStateException.prototype);
|
|
618
|
+
return _this;
|
|
619
|
+
}
|
|
620
|
+
return DeploymentIsNotInReadyStateException;
|
|
621
|
+
}(__BaseException));
|
|
622
|
+
export { DeploymentIsNotInReadyStateException };
|
|
623
|
+
var InvalidDeploymentStatusException = (function (_super) {
|
|
624
|
+
__extends(InvalidDeploymentStatusException, _super);
|
|
625
|
+
function InvalidDeploymentStatusException(opts) {
|
|
626
|
+
var _this = _super.call(this, __assign({ name: "InvalidDeploymentStatusException", $fault: "client" }, opts)) || this;
|
|
627
|
+
_this.name = "InvalidDeploymentStatusException";
|
|
628
|
+
_this.$fault = "client";
|
|
629
|
+
Object.setPrototypeOf(_this, InvalidDeploymentStatusException.prototype);
|
|
630
|
+
return _this;
|
|
631
|
+
}
|
|
632
|
+
return InvalidDeploymentStatusException;
|
|
633
|
+
}(__BaseException));
|
|
634
|
+
export { InvalidDeploymentStatusException };
|
|
635
|
+
var InvalidDeploymentWaitTypeException = (function (_super) {
|
|
636
|
+
__extends(InvalidDeploymentWaitTypeException, _super);
|
|
637
|
+
function InvalidDeploymentWaitTypeException(opts) {
|
|
638
|
+
var _this = _super.call(this, __assign({ name: "InvalidDeploymentWaitTypeException", $fault: "client" }, opts)) || this;
|
|
639
|
+
_this.name = "InvalidDeploymentWaitTypeException";
|
|
640
|
+
_this.$fault = "client";
|
|
641
|
+
Object.setPrototypeOf(_this, InvalidDeploymentWaitTypeException.prototype);
|
|
642
|
+
return _this;
|
|
643
|
+
}
|
|
644
|
+
return InvalidDeploymentWaitTypeException;
|
|
645
|
+
}(__BaseException));
|
|
646
|
+
export { InvalidDeploymentWaitTypeException };
|
|
647
|
+
var UnsupportedActionForDeploymentTypeException = (function (_super) {
|
|
648
|
+
__extends(UnsupportedActionForDeploymentTypeException, _super);
|
|
649
|
+
function UnsupportedActionForDeploymentTypeException(opts) {
|
|
650
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedActionForDeploymentTypeException", $fault: "client" }, opts)) || this;
|
|
651
|
+
_this.name = "UnsupportedActionForDeploymentTypeException";
|
|
652
|
+
_this.$fault = "client";
|
|
653
|
+
Object.setPrototypeOf(_this, UnsupportedActionForDeploymentTypeException.prototype);
|
|
654
|
+
return _this;
|
|
655
|
+
}
|
|
656
|
+
return UnsupportedActionForDeploymentTypeException;
|
|
657
|
+
}(__BaseException));
|
|
658
|
+
export { UnsupportedActionForDeploymentTypeException };
|
|
659
|
+
var InvalidTagsToAddException = (function (_super) {
|
|
660
|
+
__extends(InvalidTagsToAddException, _super);
|
|
661
|
+
function InvalidTagsToAddException(opts) {
|
|
662
|
+
var _this = _super.call(this, __assign({ name: "InvalidTagsToAddException", $fault: "client" }, opts)) || this;
|
|
663
|
+
_this.name = "InvalidTagsToAddException";
|
|
664
|
+
_this.$fault = "client";
|
|
665
|
+
Object.setPrototypeOf(_this, InvalidTagsToAddException.prototype);
|
|
666
|
+
return _this;
|
|
667
|
+
}
|
|
668
|
+
return InvalidTagsToAddException;
|
|
669
|
+
}(__BaseException));
|
|
670
|
+
export { InvalidTagsToAddException };
|
|
671
|
+
var DeploymentGroupDoesNotExistException = (function (_super) {
|
|
672
|
+
__extends(DeploymentGroupDoesNotExistException, _super);
|
|
673
|
+
function DeploymentGroupDoesNotExistException(opts) {
|
|
674
|
+
var _this = _super.call(this, __assign({ name: "DeploymentGroupDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
675
|
+
_this.name = "DeploymentGroupDoesNotExistException";
|
|
676
|
+
_this.$fault = "client";
|
|
677
|
+
Object.setPrototypeOf(_this, DeploymentGroupDoesNotExistException.prototype);
|
|
678
|
+
return _this;
|
|
679
|
+
}
|
|
680
|
+
return DeploymentGroupDoesNotExistException;
|
|
681
|
+
}(__BaseException));
|
|
682
|
+
export { DeploymentGroupDoesNotExistException };
|
|
683
|
+
var DeploymentLimitExceededException = (function (_super) {
|
|
684
|
+
__extends(DeploymentLimitExceededException, _super);
|
|
685
|
+
function DeploymentLimitExceededException(opts) {
|
|
686
|
+
var _this = _super.call(this, __assign({ name: "DeploymentLimitExceededException", $fault: "client" }, opts)) || this;
|
|
687
|
+
_this.name = "DeploymentLimitExceededException";
|
|
688
|
+
_this.$fault = "client";
|
|
689
|
+
Object.setPrototypeOf(_this, DeploymentLimitExceededException.prototype);
|
|
690
|
+
return _this;
|
|
691
|
+
}
|
|
692
|
+
return DeploymentLimitExceededException;
|
|
693
|
+
}(__BaseException));
|
|
694
|
+
export { DeploymentLimitExceededException };
|
|
695
|
+
var DescriptionTooLongException = (function (_super) {
|
|
696
|
+
__extends(DescriptionTooLongException, _super);
|
|
697
|
+
function DescriptionTooLongException(opts) {
|
|
698
|
+
var _this = _super.call(this, __assign({ name: "DescriptionTooLongException", $fault: "client" }, opts)) || this;
|
|
699
|
+
_this.name = "DescriptionTooLongException";
|
|
700
|
+
_this.$fault = "client";
|
|
701
|
+
Object.setPrototypeOf(_this, DescriptionTooLongException.prototype);
|
|
702
|
+
return _this;
|
|
703
|
+
}
|
|
704
|
+
return DescriptionTooLongException;
|
|
705
|
+
}(__BaseException));
|
|
706
|
+
export { DescriptionTooLongException };
|
|
707
|
+
var InvalidAlarmConfigException = (function (_super) {
|
|
708
|
+
__extends(InvalidAlarmConfigException, _super);
|
|
709
|
+
function InvalidAlarmConfigException(opts) {
|
|
710
|
+
var _this = _super.call(this, __assign({ name: "InvalidAlarmConfigException", $fault: "client" }, opts)) || this;
|
|
711
|
+
_this.name = "InvalidAlarmConfigException";
|
|
712
|
+
_this.$fault = "client";
|
|
713
|
+
Object.setPrototypeOf(_this, InvalidAlarmConfigException.prototype);
|
|
714
|
+
return _this;
|
|
715
|
+
}
|
|
716
|
+
return InvalidAlarmConfigException;
|
|
717
|
+
}(__BaseException));
|
|
718
|
+
export { InvalidAlarmConfigException };
|
|
719
|
+
var InvalidAutoRollbackConfigException = (function (_super) {
|
|
720
|
+
__extends(InvalidAutoRollbackConfigException, _super);
|
|
721
|
+
function InvalidAutoRollbackConfigException(opts) {
|
|
722
|
+
var _this = _super.call(this, __assign({ name: "InvalidAutoRollbackConfigException", $fault: "client" }, opts)) || this;
|
|
723
|
+
_this.name = "InvalidAutoRollbackConfigException";
|
|
724
|
+
_this.$fault = "client";
|
|
725
|
+
Object.setPrototypeOf(_this, InvalidAutoRollbackConfigException.prototype);
|
|
726
|
+
return _this;
|
|
727
|
+
}
|
|
728
|
+
return InvalidAutoRollbackConfigException;
|
|
729
|
+
}(__BaseException));
|
|
730
|
+
export { InvalidAutoRollbackConfigException };
|
|
731
|
+
var InvalidAutoScalingGroupException = (function (_super) {
|
|
732
|
+
__extends(InvalidAutoScalingGroupException, _super);
|
|
733
|
+
function InvalidAutoScalingGroupException(opts) {
|
|
734
|
+
var _this = _super.call(this, __assign({ name: "InvalidAutoScalingGroupException", $fault: "client" }, opts)) || this;
|
|
735
|
+
_this.name = "InvalidAutoScalingGroupException";
|
|
736
|
+
_this.$fault = "client";
|
|
737
|
+
Object.setPrototypeOf(_this, InvalidAutoScalingGroupException.prototype);
|
|
738
|
+
return _this;
|
|
739
|
+
}
|
|
740
|
+
return InvalidAutoScalingGroupException;
|
|
741
|
+
}(__BaseException));
|
|
742
|
+
export { InvalidAutoScalingGroupException };
|
|
743
|
+
var InvalidDeploymentConfigNameException = (function (_super) {
|
|
744
|
+
__extends(InvalidDeploymentConfigNameException, _super);
|
|
745
|
+
function InvalidDeploymentConfigNameException(opts) {
|
|
746
|
+
var _this = _super.call(this, __assign({ name: "InvalidDeploymentConfigNameException", $fault: "client" }, opts)) || this;
|
|
747
|
+
_this.name = "InvalidDeploymentConfigNameException";
|
|
748
|
+
_this.$fault = "client";
|
|
749
|
+
Object.setPrototypeOf(_this, InvalidDeploymentConfigNameException.prototype);
|
|
750
|
+
return _this;
|
|
751
|
+
}
|
|
752
|
+
return InvalidDeploymentConfigNameException;
|
|
753
|
+
}(__BaseException));
|
|
754
|
+
export { InvalidDeploymentConfigNameException };
|
|
755
|
+
var InvalidFileExistsBehaviorException = (function (_super) {
|
|
756
|
+
__extends(InvalidFileExistsBehaviorException, _super);
|
|
757
|
+
function InvalidFileExistsBehaviorException(opts) {
|
|
758
|
+
var _this = _super.call(this, __assign({ name: "InvalidFileExistsBehaviorException", $fault: "client" }, opts)) || this;
|
|
759
|
+
_this.name = "InvalidFileExistsBehaviorException";
|
|
760
|
+
_this.$fault = "client";
|
|
761
|
+
Object.setPrototypeOf(_this, InvalidFileExistsBehaviorException.prototype);
|
|
762
|
+
return _this;
|
|
763
|
+
}
|
|
764
|
+
return InvalidFileExistsBehaviorException;
|
|
765
|
+
}(__BaseException));
|
|
766
|
+
export { InvalidFileExistsBehaviorException };
|
|
767
|
+
var InvalidGitHubAccountTokenException = (function (_super) {
|
|
768
|
+
__extends(InvalidGitHubAccountTokenException, _super);
|
|
769
|
+
function InvalidGitHubAccountTokenException(opts) {
|
|
770
|
+
var _this = _super.call(this, __assign({ name: "InvalidGitHubAccountTokenException", $fault: "client" }, opts)) || this;
|
|
771
|
+
_this.name = "InvalidGitHubAccountTokenException";
|
|
772
|
+
_this.$fault = "client";
|
|
773
|
+
Object.setPrototypeOf(_this, InvalidGitHubAccountTokenException.prototype);
|
|
774
|
+
return _this;
|
|
775
|
+
}
|
|
776
|
+
return InvalidGitHubAccountTokenException;
|
|
777
|
+
}(__BaseException));
|
|
778
|
+
export { InvalidGitHubAccountTokenException };
|
|
779
|
+
var InvalidIgnoreApplicationStopFailuresValueException = (function (_super) {
|
|
780
|
+
__extends(InvalidIgnoreApplicationStopFailuresValueException, _super);
|
|
781
|
+
function InvalidIgnoreApplicationStopFailuresValueException(opts) {
|
|
782
|
+
var _this = _super.call(this, __assign({ name: "InvalidIgnoreApplicationStopFailuresValueException", $fault: "client" }, opts)) || this;
|
|
783
|
+
_this.name = "InvalidIgnoreApplicationStopFailuresValueException";
|
|
784
|
+
_this.$fault = "client";
|
|
785
|
+
Object.setPrototypeOf(_this, InvalidIgnoreApplicationStopFailuresValueException.prototype);
|
|
786
|
+
return _this;
|
|
787
|
+
}
|
|
788
|
+
return InvalidIgnoreApplicationStopFailuresValueException;
|
|
789
|
+
}(__BaseException));
|
|
790
|
+
export { InvalidIgnoreApplicationStopFailuresValueException };
|
|
791
|
+
var InvalidLoadBalancerInfoException = (function (_super) {
|
|
792
|
+
__extends(InvalidLoadBalancerInfoException, _super);
|
|
793
|
+
function InvalidLoadBalancerInfoException(opts) {
|
|
794
|
+
var _this = _super.call(this, __assign({ name: "InvalidLoadBalancerInfoException", $fault: "client" }, opts)) || this;
|
|
795
|
+
_this.name = "InvalidLoadBalancerInfoException";
|
|
796
|
+
_this.$fault = "client";
|
|
797
|
+
Object.setPrototypeOf(_this, InvalidLoadBalancerInfoException.prototype);
|
|
798
|
+
return _this;
|
|
799
|
+
}
|
|
800
|
+
return InvalidLoadBalancerInfoException;
|
|
801
|
+
}(__BaseException));
|
|
802
|
+
export { InvalidLoadBalancerInfoException };
|
|
803
|
+
var InvalidRoleException = (function (_super) {
|
|
804
|
+
__extends(InvalidRoleException, _super);
|
|
805
|
+
function InvalidRoleException(opts) {
|
|
806
|
+
var _this = _super.call(this, __assign({ name: "InvalidRoleException", $fault: "client" }, opts)) || this;
|
|
807
|
+
_this.name = "InvalidRoleException";
|
|
808
|
+
_this.$fault = "client";
|
|
809
|
+
Object.setPrototypeOf(_this, InvalidRoleException.prototype);
|
|
810
|
+
return _this;
|
|
811
|
+
}
|
|
812
|
+
return InvalidRoleException;
|
|
813
|
+
}(__BaseException));
|
|
814
|
+
export { InvalidRoleException };
|
|
815
|
+
var InvalidTargetInstancesException = (function (_super) {
|
|
816
|
+
__extends(InvalidTargetInstancesException, _super);
|
|
817
|
+
function InvalidTargetInstancesException(opts) {
|
|
818
|
+
var _this = _super.call(this, __assign({ name: "InvalidTargetInstancesException", $fault: "client" }, opts)) || this;
|
|
819
|
+
_this.name = "InvalidTargetInstancesException";
|
|
820
|
+
_this.$fault = "client";
|
|
821
|
+
Object.setPrototypeOf(_this, InvalidTargetInstancesException.prototype);
|
|
822
|
+
return _this;
|
|
823
|
+
}
|
|
824
|
+
return InvalidTargetInstancesException;
|
|
825
|
+
}(__BaseException));
|
|
826
|
+
export { InvalidTargetInstancesException };
|
|
827
|
+
var InvalidTrafficRoutingConfigurationException = (function (_super) {
|
|
828
|
+
__extends(InvalidTrafficRoutingConfigurationException, _super);
|
|
829
|
+
function InvalidTrafficRoutingConfigurationException(opts) {
|
|
830
|
+
var _this = _super.call(this, __assign({ name: "InvalidTrafficRoutingConfigurationException", $fault: "client" }, opts)) || this;
|
|
831
|
+
_this.name = "InvalidTrafficRoutingConfigurationException";
|
|
832
|
+
_this.$fault = "client";
|
|
833
|
+
Object.setPrototypeOf(_this, InvalidTrafficRoutingConfigurationException.prototype);
|
|
834
|
+
return _this;
|
|
835
|
+
}
|
|
836
|
+
return InvalidTrafficRoutingConfigurationException;
|
|
837
|
+
}(__BaseException));
|
|
838
|
+
export { InvalidTrafficRoutingConfigurationException };
|
|
839
|
+
var InvalidUpdateOutdatedInstancesOnlyValueException = (function (_super) {
|
|
840
|
+
__extends(InvalidUpdateOutdatedInstancesOnlyValueException, _super);
|
|
841
|
+
function InvalidUpdateOutdatedInstancesOnlyValueException(opts) {
|
|
842
|
+
var _this = _super.call(this, __assign({ name: "InvalidUpdateOutdatedInstancesOnlyValueException", $fault: "client" }, opts)) || this;
|
|
843
|
+
_this.name = "InvalidUpdateOutdatedInstancesOnlyValueException";
|
|
844
|
+
_this.$fault = "client";
|
|
845
|
+
Object.setPrototypeOf(_this, InvalidUpdateOutdatedInstancesOnlyValueException.prototype);
|
|
846
|
+
return _this;
|
|
847
|
+
}
|
|
848
|
+
return InvalidUpdateOutdatedInstancesOnlyValueException;
|
|
849
|
+
}(__BaseException));
|
|
850
|
+
export { InvalidUpdateOutdatedInstancesOnlyValueException };
|
|
851
|
+
var RevisionDoesNotExistException = (function (_super) {
|
|
852
|
+
__extends(RevisionDoesNotExistException, _super);
|
|
853
|
+
function RevisionDoesNotExistException(opts) {
|
|
854
|
+
var _this = _super.call(this, __assign({ name: "RevisionDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
855
|
+
_this.name = "RevisionDoesNotExistException";
|
|
856
|
+
_this.$fault = "client";
|
|
857
|
+
Object.setPrototypeOf(_this, RevisionDoesNotExistException.prototype);
|
|
858
|
+
return _this;
|
|
859
|
+
}
|
|
860
|
+
return RevisionDoesNotExistException;
|
|
861
|
+
}(__BaseException));
|
|
862
|
+
export { RevisionDoesNotExistException };
|
|
863
|
+
var ThrottlingException = (function (_super) {
|
|
864
|
+
__extends(ThrottlingException, _super);
|
|
865
|
+
function ThrottlingException(opts) {
|
|
866
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
867
|
+
_this.name = "ThrottlingException";
|
|
868
|
+
_this.$fault = "client";
|
|
869
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
870
|
+
return _this;
|
|
871
|
+
}
|
|
872
|
+
return ThrottlingException;
|
|
873
|
+
}(__BaseException));
|
|
874
|
+
export { ThrottlingException };
|
|
874
875
|
export var MinimumHealthyHostsType;
|
|
875
876
|
(function (MinimumHealthyHostsType) {
|
|
876
877
|
MinimumHealthyHostsType["FLEET_PERCENT"] = "FLEET_PERCENT";
|
|
@@ -882,402 +883,402 @@ export var TrafficRoutingType;
|
|
|
882
883
|
TrafficRoutingType["TimeBasedCanary"] = "TimeBasedCanary";
|
|
883
884
|
TrafficRoutingType["TimeBasedLinear"] = "TimeBasedLinear";
|
|
884
885
|
})(TrafficRoutingType || (TrafficRoutingType = {}));
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
}
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
}
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
}
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
}
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
}
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
}
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
}
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
}
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
}
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
}
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
}
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
}
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
}
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
}
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
}
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
}
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
}
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
}
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
}
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
}
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
}
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
}
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
}
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
}
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
}
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
}
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
}
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
}
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
}
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
}
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
}
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
}
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
}
|
|
886
|
+
var DeploymentConfigAlreadyExistsException = (function (_super) {
|
|
887
|
+
__extends(DeploymentConfigAlreadyExistsException, _super);
|
|
888
|
+
function DeploymentConfigAlreadyExistsException(opts) {
|
|
889
|
+
var _this = _super.call(this, __assign({ name: "DeploymentConfigAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
890
|
+
_this.name = "DeploymentConfigAlreadyExistsException";
|
|
891
|
+
_this.$fault = "client";
|
|
892
|
+
Object.setPrototypeOf(_this, DeploymentConfigAlreadyExistsException.prototype);
|
|
893
|
+
return _this;
|
|
894
|
+
}
|
|
895
|
+
return DeploymentConfigAlreadyExistsException;
|
|
896
|
+
}(__BaseException));
|
|
897
|
+
export { DeploymentConfigAlreadyExistsException };
|
|
898
|
+
var DeploymentConfigLimitExceededException = (function (_super) {
|
|
899
|
+
__extends(DeploymentConfigLimitExceededException, _super);
|
|
900
|
+
function DeploymentConfigLimitExceededException(opts) {
|
|
901
|
+
var _this = _super.call(this, __assign({ name: "DeploymentConfigLimitExceededException", $fault: "client" }, opts)) || this;
|
|
902
|
+
_this.name = "DeploymentConfigLimitExceededException";
|
|
903
|
+
_this.$fault = "client";
|
|
904
|
+
Object.setPrototypeOf(_this, DeploymentConfigLimitExceededException.prototype);
|
|
905
|
+
return _this;
|
|
906
|
+
}
|
|
907
|
+
return DeploymentConfigLimitExceededException;
|
|
908
|
+
}(__BaseException));
|
|
909
|
+
export { DeploymentConfigLimitExceededException };
|
|
910
|
+
var DeploymentConfigNameRequiredException = (function (_super) {
|
|
911
|
+
__extends(DeploymentConfigNameRequiredException, _super);
|
|
912
|
+
function DeploymentConfigNameRequiredException(opts) {
|
|
913
|
+
var _this = _super.call(this, __assign({ name: "DeploymentConfigNameRequiredException", $fault: "client" }, opts)) || this;
|
|
914
|
+
_this.name = "DeploymentConfigNameRequiredException";
|
|
915
|
+
_this.$fault = "client";
|
|
916
|
+
Object.setPrototypeOf(_this, DeploymentConfigNameRequiredException.prototype);
|
|
917
|
+
return _this;
|
|
918
|
+
}
|
|
919
|
+
return DeploymentConfigNameRequiredException;
|
|
920
|
+
}(__BaseException));
|
|
921
|
+
export { DeploymentConfigNameRequiredException };
|
|
922
|
+
var InvalidMinimumHealthyHostValueException = (function (_super) {
|
|
923
|
+
__extends(InvalidMinimumHealthyHostValueException, _super);
|
|
924
|
+
function InvalidMinimumHealthyHostValueException(opts) {
|
|
925
|
+
var _this = _super.call(this, __assign({ name: "InvalidMinimumHealthyHostValueException", $fault: "client" }, opts)) || this;
|
|
926
|
+
_this.name = "InvalidMinimumHealthyHostValueException";
|
|
927
|
+
_this.$fault = "client";
|
|
928
|
+
Object.setPrototypeOf(_this, InvalidMinimumHealthyHostValueException.prototype);
|
|
929
|
+
return _this;
|
|
930
|
+
}
|
|
931
|
+
return InvalidMinimumHealthyHostValueException;
|
|
932
|
+
}(__BaseException));
|
|
933
|
+
export { InvalidMinimumHealthyHostValueException };
|
|
934
|
+
var DeploymentGroupAlreadyExistsException = (function (_super) {
|
|
935
|
+
__extends(DeploymentGroupAlreadyExistsException, _super);
|
|
936
|
+
function DeploymentGroupAlreadyExistsException(opts) {
|
|
937
|
+
var _this = _super.call(this, __assign({ name: "DeploymentGroupAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
938
|
+
_this.name = "DeploymentGroupAlreadyExistsException";
|
|
939
|
+
_this.$fault = "client";
|
|
940
|
+
Object.setPrototypeOf(_this, DeploymentGroupAlreadyExistsException.prototype);
|
|
941
|
+
return _this;
|
|
942
|
+
}
|
|
943
|
+
return DeploymentGroupAlreadyExistsException;
|
|
944
|
+
}(__BaseException));
|
|
945
|
+
export { DeploymentGroupAlreadyExistsException };
|
|
946
|
+
var DeploymentGroupLimitExceededException = (function (_super) {
|
|
947
|
+
__extends(DeploymentGroupLimitExceededException, _super);
|
|
948
|
+
function DeploymentGroupLimitExceededException(opts) {
|
|
949
|
+
var _this = _super.call(this, __assign({ name: "DeploymentGroupLimitExceededException", $fault: "client" }, opts)) || this;
|
|
950
|
+
_this.name = "DeploymentGroupLimitExceededException";
|
|
951
|
+
_this.$fault = "client";
|
|
952
|
+
Object.setPrototypeOf(_this, DeploymentGroupLimitExceededException.prototype);
|
|
953
|
+
return _this;
|
|
954
|
+
}
|
|
955
|
+
return DeploymentGroupLimitExceededException;
|
|
956
|
+
}(__BaseException));
|
|
957
|
+
export { DeploymentGroupLimitExceededException };
|
|
958
|
+
var ECSServiceMappingLimitExceededException = (function (_super) {
|
|
959
|
+
__extends(ECSServiceMappingLimitExceededException, _super);
|
|
960
|
+
function ECSServiceMappingLimitExceededException(opts) {
|
|
961
|
+
var _this = _super.call(this, __assign({ name: "ECSServiceMappingLimitExceededException", $fault: "client" }, opts)) || this;
|
|
962
|
+
_this.name = "ECSServiceMappingLimitExceededException";
|
|
963
|
+
_this.$fault = "client";
|
|
964
|
+
Object.setPrototypeOf(_this, ECSServiceMappingLimitExceededException.prototype);
|
|
965
|
+
return _this;
|
|
966
|
+
}
|
|
967
|
+
return ECSServiceMappingLimitExceededException;
|
|
968
|
+
}(__BaseException));
|
|
969
|
+
export { ECSServiceMappingLimitExceededException };
|
|
970
|
+
var InvalidBlueGreenDeploymentConfigurationException = (function (_super) {
|
|
971
|
+
__extends(InvalidBlueGreenDeploymentConfigurationException, _super);
|
|
972
|
+
function InvalidBlueGreenDeploymentConfigurationException(opts) {
|
|
973
|
+
var _this = _super.call(this, __assign({ name: "InvalidBlueGreenDeploymentConfigurationException", $fault: "client" }, opts)) || this;
|
|
974
|
+
_this.name = "InvalidBlueGreenDeploymentConfigurationException";
|
|
975
|
+
_this.$fault = "client";
|
|
976
|
+
Object.setPrototypeOf(_this, InvalidBlueGreenDeploymentConfigurationException.prototype);
|
|
977
|
+
return _this;
|
|
978
|
+
}
|
|
979
|
+
return InvalidBlueGreenDeploymentConfigurationException;
|
|
980
|
+
}(__BaseException));
|
|
981
|
+
export { InvalidBlueGreenDeploymentConfigurationException };
|
|
982
|
+
var InvalidDeploymentStyleException = (function (_super) {
|
|
983
|
+
__extends(InvalidDeploymentStyleException, _super);
|
|
984
|
+
function InvalidDeploymentStyleException(opts) {
|
|
985
|
+
var _this = _super.call(this, __assign({ name: "InvalidDeploymentStyleException", $fault: "client" }, opts)) || this;
|
|
986
|
+
_this.name = "InvalidDeploymentStyleException";
|
|
987
|
+
_this.$fault = "client";
|
|
988
|
+
Object.setPrototypeOf(_this, InvalidDeploymentStyleException.prototype);
|
|
989
|
+
return _this;
|
|
990
|
+
}
|
|
991
|
+
return InvalidDeploymentStyleException;
|
|
992
|
+
}(__BaseException));
|
|
993
|
+
export { InvalidDeploymentStyleException };
|
|
994
|
+
var InvalidEC2TagCombinationException = (function (_super) {
|
|
995
|
+
__extends(InvalidEC2TagCombinationException, _super);
|
|
996
|
+
function InvalidEC2TagCombinationException(opts) {
|
|
997
|
+
var _this = _super.call(this, __assign({ name: "InvalidEC2TagCombinationException", $fault: "client" }, opts)) || this;
|
|
998
|
+
_this.name = "InvalidEC2TagCombinationException";
|
|
999
|
+
_this.$fault = "client";
|
|
1000
|
+
Object.setPrototypeOf(_this, InvalidEC2TagCombinationException.prototype);
|
|
1001
|
+
return _this;
|
|
1002
|
+
}
|
|
1003
|
+
return InvalidEC2TagCombinationException;
|
|
1004
|
+
}(__BaseException));
|
|
1005
|
+
export { InvalidEC2TagCombinationException };
|
|
1006
|
+
var InvalidEC2TagException = (function (_super) {
|
|
1007
|
+
__extends(InvalidEC2TagException, _super);
|
|
1008
|
+
function InvalidEC2TagException(opts) {
|
|
1009
|
+
var _this = _super.call(this, __assign({ name: "InvalidEC2TagException", $fault: "client" }, opts)) || this;
|
|
1010
|
+
_this.name = "InvalidEC2TagException";
|
|
1011
|
+
_this.$fault = "client";
|
|
1012
|
+
Object.setPrototypeOf(_this, InvalidEC2TagException.prototype);
|
|
1013
|
+
return _this;
|
|
1014
|
+
}
|
|
1015
|
+
return InvalidEC2TagException;
|
|
1016
|
+
}(__BaseException));
|
|
1017
|
+
export { InvalidEC2TagException };
|
|
1018
|
+
var InvalidECSServiceException = (function (_super) {
|
|
1019
|
+
__extends(InvalidECSServiceException, _super);
|
|
1020
|
+
function InvalidECSServiceException(opts) {
|
|
1021
|
+
var _this = _super.call(this, __assign({ name: "InvalidECSServiceException", $fault: "client" }, opts)) || this;
|
|
1022
|
+
_this.name = "InvalidECSServiceException";
|
|
1023
|
+
_this.$fault = "client";
|
|
1024
|
+
Object.setPrototypeOf(_this, InvalidECSServiceException.prototype);
|
|
1025
|
+
return _this;
|
|
1026
|
+
}
|
|
1027
|
+
return InvalidECSServiceException;
|
|
1028
|
+
}(__BaseException));
|
|
1029
|
+
export { InvalidECSServiceException };
|
|
1030
|
+
var InvalidInputException = (function (_super) {
|
|
1031
|
+
__extends(InvalidInputException, _super);
|
|
1032
|
+
function InvalidInputException(opts) {
|
|
1033
|
+
var _this = _super.call(this, __assign({ name: "InvalidInputException", $fault: "client" }, opts)) || this;
|
|
1034
|
+
_this.name = "InvalidInputException";
|
|
1035
|
+
_this.$fault = "client";
|
|
1036
|
+
Object.setPrototypeOf(_this, InvalidInputException.prototype);
|
|
1037
|
+
return _this;
|
|
1038
|
+
}
|
|
1039
|
+
return InvalidInputException;
|
|
1040
|
+
}(__BaseException));
|
|
1041
|
+
export { InvalidInputException };
|
|
1042
|
+
var InvalidOnPremisesTagCombinationException = (function (_super) {
|
|
1043
|
+
__extends(InvalidOnPremisesTagCombinationException, _super);
|
|
1044
|
+
function InvalidOnPremisesTagCombinationException(opts) {
|
|
1045
|
+
var _this = _super.call(this, __assign({ name: "InvalidOnPremisesTagCombinationException", $fault: "client" }, opts)) || this;
|
|
1046
|
+
_this.name = "InvalidOnPremisesTagCombinationException";
|
|
1047
|
+
_this.$fault = "client";
|
|
1048
|
+
Object.setPrototypeOf(_this, InvalidOnPremisesTagCombinationException.prototype);
|
|
1049
|
+
return _this;
|
|
1050
|
+
}
|
|
1051
|
+
return InvalidOnPremisesTagCombinationException;
|
|
1052
|
+
}(__BaseException));
|
|
1053
|
+
export { InvalidOnPremisesTagCombinationException };
|
|
1054
|
+
var InvalidTargetGroupPairException = (function (_super) {
|
|
1055
|
+
__extends(InvalidTargetGroupPairException, _super);
|
|
1056
|
+
function InvalidTargetGroupPairException(opts) {
|
|
1057
|
+
var _this = _super.call(this, __assign({ name: "InvalidTargetGroupPairException", $fault: "client" }, opts)) || this;
|
|
1058
|
+
_this.name = "InvalidTargetGroupPairException";
|
|
1059
|
+
_this.$fault = "client";
|
|
1060
|
+
Object.setPrototypeOf(_this, InvalidTargetGroupPairException.prototype);
|
|
1061
|
+
return _this;
|
|
1062
|
+
}
|
|
1063
|
+
return InvalidTargetGroupPairException;
|
|
1064
|
+
}(__BaseException));
|
|
1065
|
+
export { InvalidTargetGroupPairException };
|
|
1066
|
+
var InvalidTriggerConfigException = (function (_super) {
|
|
1067
|
+
__extends(InvalidTriggerConfigException, _super);
|
|
1068
|
+
function InvalidTriggerConfigException(opts) {
|
|
1069
|
+
var _this = _super.call(this, __assign({ name: "InvalidTriggerConfigException", $fault: "client" }, opts)) || this;
|
|
1070
|
+
_this.name = "InvalidTriggerConfigException";
|
|
1071
|
+
_this.$fault = "client";
|
|
1072
|
+
Object.setPrototypeOf(_this, InvalidTriggerConfigException.prototype);
|
|
1073
|
+
return _this;
|
|
1074
|
+
}
|
|
1075
|
+
return InvalidTriggerConfigException;
|
|
1076
|
+
}(__BaseException));
|
|
1077
|
+
export { InvalidTriggerConfigException };
|
|
1078
|
+
var LifecycleHookLimitExceededException = (function (_super) {
|
|
1079
|
+
__extends(LifecycleHookLimitExceededException, _super);
|
|
1080
|
+
function LifecycleHookLimitExceededException(opts) {
|
|
1081
|
+
var _this = _super.call(this, __assign({ name: "LifecycleHookLimitExceededException", $fault: "client" }, opts)) || this;
|
|
1082
|
+
_this.name = "LifecycleHookLimitExceededException";
|
|
1083
|
+
_this.$fault = "client";
|
|
1084
|
+
Object.setPrototypeOf(_this, LifecycleHookLimitExceededException.prototype);
|
|
1085
|
+
return _this;
|
|
1086
|
+
}
|
|
1087
|
+
return LifecycleHookLimitExceededException;
|
|
1088
|
+
}(__BaseException));
|
|
1089
|
+
export { LifecycleHookLimitExceededException };
|
|
1090
|
+
var RoleRequiredException = (function (_super) {
|
|
1091
|
+
__extends(RoleRequiredException, _super);
|
|
1092
|
+
function RoleRequiredException(opts) {
|
|
1093
|
+
var _this = _super.call(this, __assign({ name: "RoleRequiredException", $fault: "client" }, opts)) || this;
|
|
1094
|
+
_this.name = "RoleRequiredException";
|
|
1095
|
+
_this.$fault = "client";
|
|
1096
|
+
Object.setPrototypeOf(_this, RoleRequiredException.prototype);
|
|
1097
|
+
return _this;
|
|
1098
|
+
}
|
|
1099
|
+
return RoleRequiredException;
|
|
1100
|
+
}(__BaseException));
|
|
1101
|
+
export { RoleRequiredException };
|
|
1102
|
+
var TagSetListLimitExceededException = (function (_super) {
|
|
1103
|
+
__extends(TagSetListLimitExceededException, _super);
|
|
1104
|
+
function TagSetListLimitExceededException(opts) {
|
|
1105
|
+
var _this = _super.call(this, __assign({ name: "TagSetListLimitExceededException", $fault: "client" }, opts)) || this;
|
|
1106
|
+
_this.name = "TagSetListLimitExceededException";
|
|
1107
|
+
_this.$fault = "client";
|
|
1108
|
+
Object.setPrototypeOf(_this, TagSetListLimitExceededException.prototype);
|
|
1109
|
+
return _this;
|
|
1110
|
+
}
|
|
1111
|
+
return TagSetListLimitExceededException;
|
|
1112
|
+
}(__BaseException));
|
|
1113
|
+
export { TagSetListLimitExceededException };
|
|
1114
|
+
var TriggerTargetsLimitExceededException = (function (_super) {
|
|
1115
|
+
__extends(TriggerTargetsLimitExceededException, _super);
|
|
1116
|
+
function TriggerTargetsLimitExceededException(opts) {
|
|
1117
|
+
var _this = _super.call(this, __assign({ name: "TriggerTargetsLimitExceededException", $fault: "client" }, opts)) || this;
|
|
1118
|
+
_this.name = "TriggerTargetsLimitExceededException";
|
|
1119
|
+
_this.$fault = "client";
|
|
1120
|
+
Object.setPrototypeOf(_this, TriggerTargetsLimitExceededException.prototype);
|
|
1121
|
+
return _this;
|
|
1122
|
+
}
|
|
1123
|
+
return TriggerTargetsLimitExceededException;
|
|
1124
|
+
}(__BaseException));
|
|
1125
|
+
export { TriggerTargetsLimitExceededException };
|
|
1126
|
+
var DeploymentConfigInUseException = (function (_super) {
|
|
1127
|
+
__extends(DeploymentConfigInUseException, _super);
|
|
1128
|
+
function DeploymentConfigInUseException(opts) {
|
|
1129
|
+
var _this = _super.call(this, __assign({ name: "DeploymentConfigInUseException", $fault: "client" }, opts)) || this;
|
|
1130
|
+
_this.name = "DeploymentConfigInUseException";
|
|
1131
|
+
_this.$fault = "client";
|
|
1132
|
+
Object.setPrototypeOf(_this, DeploymentConfigInUseException.prototype);
|
|
1133
|
+
return _this;
|
|
1134
|
+
}
|
|
1135
|
+
return DeploymentConfigInUseException;
|
|
1136
|
+
}(__BaseException));
|
|
1137
|
+
export { DeploymentConfigInUseException };
|
|
1138
|
+
var InvalidOperationException = (function (_super) {
|
|
1139
|
+
__extends(InvalidOperationException, _super);
|
|
1140
|
+
function InvalidOperationException(opts) {
|
|
1141
|
+
var _this = _super.call(this, __assign({ name: "InvalidOperationException", $fault: "client" }, opts)) || this;
|
|
1142
|
+
_this.name = "InvalidOperationException";
|
|
1143
|
+
_this.$fault = "client";
|
|
1144
|
+
Object.setPrototypeOf(_this, InvalidOperationException.prototype);
|
|
1145
|
+
return _this;
|
|
1146
|
+
}
|
|
1147
|
+
return InvalidOperationException;
|
|
1148
|
+
}(__BaseException));
|
|
1149
|
+
export { InvalidOperationException };
|
|
1150
|
+
var GitHubAccountTokenDoesNotExistException = (function (_super) {
|
|
1151
|
+
__extends(GitHubAccountTokenDoesNotExistException, _super);
|
|
1152
|
+
function GitHubAccountTokenDoesNotExistException(opts) {
|
|
1153
|
+
var _this = _super.call(this, __assign({ name: "GitHubAccountTokenDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
1154
|
+
_this.name = "GitHubAccountTokenDoesNotExistException";
|
|
1155
|
+
_this.$fault = "client";
|
|
1156
|
+
Object.setPrototypeOf(_this, GitHubAccountTokenDoesNotExistException.prototype);
|
|
1157
|
+
return _this;
|
|
1158
|
+
}
|
|
1159
|
+
return GitHubAccountTokenDoesNotExistException;
|
|
1160
|
+
}(__BaseException));
|
|
1161
|
+
export { GitHubAccountTokenDoesNotExistException };
|
|
1162
|
+
var GitHubAccountTokenNameRequiredException = (function (_super) {
|
|
1163
|
+
__extends(GitHubAccountTokenNameRequiredException, _super);
|
|
1164
|
+
function GitHubAccountTokenNameRequiredException(opts) {
|
|
1165
|
+
var _this = _super.call(this, __assign({ name: "GitHubAccountTokenNameRequiredException", $fault: "client" }, opts)) || this;
|
|
1166
|
+
_this.name = "GitHubAccountTokenNameRequiredException";
|
|
1167
|
+
_this.$fault = "client";
|
|
1168
|
+
Object.setPrototypeOf(_this, GitHubAccountTokenNameRequiredException.prototype);
|
|
1169
|
+
return _this;
|
|
1170
|
+
}
|
|
1171
|
+
return GitHubAccountTokenNameRequiredException;
|
|
1172
|
+
}(__BaseException));
|
|
1173
|
+
export { GitHubAccountTokenNameRequiredException };
|
|
1174
|
+
var InvalidGitHubAccountTokenNameException = (function (_super) {
|
|
1175
|
+
__extends(InvalidGitHubAccountTokenNameException, _super);
|
|
1176
|
+
function InvalidGitHubAccountTokenNameException(opts) {
|
|
1177
|
+
var _this = _super.call(this, __assign({ name: "InvalidGitHubAccountTokenNameException", $fault: "client" }, opts)) || this;
|
|
1178
|
+
_this.name = "InvalidGitHubAccountTokenNameException";
|
|
1179
|
+
_this.$fault = "client";
|
|
1180
|
+
Object.setPrototypeOf(_this, InvalidGitHubAccountTokenNameException.prototype);
|
|
1181
|
+
return _this;
|
|
1182
|
+
}
|
|
1183
|
+
return InvalidGitHubAccountTokenNameException;
|
|
1184
|
+
}(__BaseException));
|
|
1185
|
+
export { InvalidGitHubAccountTokenNameException };
|
|
1186
|
+
var OperationNotSupportedException = (function (_super) {
|
|
1187
|
+
__extends(OperationNotSupportedException, _super);
|
|
1188
|
+
function OperationNotSupportedException(opts) {
|
|
1189
|
+
var _this = _super.call(this, __assign({ name: "OperationNotSupportedException", $fault: "client" }, opts)) || this;
|
|
1190
|
+
_this.name = "OperationNotSupportedException";
|
|
1191
|
+
_this.$fault = "client";
|
|
1192
|
+
Object.setPrototypeOf(_this, OperationNotSupportedException.prototype);
|
|
1193
|
+
return _this;
|
|
1194
|
+
}
|
|
1195
|
+
return OperationNotSupportedException;
|
|
1196
|
+
}(__BaseException));
|
|
1197
|
+
export { OperationNotSupportedException };
|
|
1198
|
+
var ResourceValidationException = (function (_super) {
|
|
1199
|
+
__extends(ResourceValidationException, _super);
|
|
1200
|
+
function ResourceValidationException(opts) {
|
|
1201
|
+
var _this = _super.call(this, __assign({ name: "ResourceValidationException", $fault: "client" }, opts)) || this;
|
|
1202
|
+
_this.name = "ResourceValidationException";
|
|
1203
|
+
_this.$fault = "client";
|
|
1204
|
+
Object.setPrototypeOf(_this, ResourceValidationException.prototype);
|
|
1205
|
+
return _this;
|
|
1206
|
+
}
|
|
1207
|
+
return ResourceValidationException;
|
|
1208
|
+
}(__BaseException));
|
|
1209
|
+
export { ResourceValidationException };
|
|
1210
|
+
var InvalidBucketNameFilterException = (function (_super) {
|
|
1211
|
+
__extends(InvalidBucketNameFilterException, _super);
|
|
1212
|
+
function InvalidBucketNameFilterException(opts) {
|
|
1213
|
+
var _this = _super.call(this, __assign({ name: "InvalidBucketNameFilterException", $fault: "client" }, opts)) || this;
|
|
1214
|
+
_this.name = "InvalidBucketNameFilterException";
|
|
1215
|
+
_this.$fault = "client";
|
|
1216
|
+
Object.setPrototypeOf(_this, InvalidBucketNameFilterException.prototype);
|
|
1217
|
+
return _this;
|
|
1218
|
+
}
|
|
1219
|
+
return InvalidBucketNameFilterException;
|
|
1220
|
+
}(__BaseException));
|
|
1221
|
+
export { InvalidBucketNameFilterException };
|
|
1222
|
+
var InvalidDeployedStateFilterException = (function (_super) {
|
|
1223
|
+
__extends(InvalidDeployedStateFilterException, _super);
|
|
1224
|
+
function InvalidDeployedStateFilterException(opts) {
|
|
1225
|
+
var _this = _super.call(this, __assign({ name: "InvalidDeployedStateFilterException", $fault: "client" }, opts)) || this;
|
|
1226
|
+
_this.name = "InvalidDeployedStateFilterException";
|
|
1227
|
+
_this.$fault = "client";
|
|
1228
|
+
Object.setPrototypeOf(_this, InvalidDeployedStateFilterException.prototype);
|
|
1229
|
+
return _this;
|
|
1230
|
+
}
|
|
1231
|
+
return InvalidDeployedStateFilterException;
|
|
1232
|
+
}(__BaseException));
|
|
1233
|
+
export { InvalidDeployedStateFilterException };
|
|
1234
|
+
var InvalidKeyPrefixFilterException = (function (_super) {
|
|
1235
|
+
__extends(InvalidKeyPrefixFilterException, _super);
|
|
1236
|
+
function InvalidKeyPrefixFilterException(opts) {
|
|
1237
|
+
var _this = _super.call(this, __assign({ name: "InvalidKeyPrefixFilterException", $fault: "client" }, opts)) || this;
|
|
1238
|
+
_this.name = "InvalidKeyPrefixFilterException";
|
|
1239
|
+
_this.$fault = "client";
|
|
1240
|
+
Object.setPrototypeOf(_this, InvalidKeyPrefixFilterException.prototype);
|
|
1241
|
+
return _this;
|
|
1242
|
+
}
|
|
1243
|
+
return InvalidKeyPrefixFilterException;
|
|
1244
|
+
}(__BaseException));
|
|
1245
|
+
export { InvalidKeyPrefixFilterException };
|
|
1246
|
+
var InvalidNextTokenException = (function (_super) {
|
|
1247
|
+
__extends(InvalidNextTokenException, _super);
|
|
1248
|
+
function InvalidNextTokenException(opts) {
|
|
1249
|
+
var _this = _super.call(this, __assign({ name: "InvalidNextTokenException", $fault: "client" }, opts)) || this;
|
|
1250
|
+
_this.name = "InvalidNextTokenException";
|
|
1251
|
+
_this.$fault = "client";
|
|
1252
|
+
Object.setPrototypeOf(_this, InvalidNextTokenException.prototype);
|
|
1253
|
+
return _this;
|
|
1254
|
+
}
|
|
1255
|
+
return InvalidNextTokenException;
|
|
1256
|
+
}(__BaseException));
|
|
1257
|
+
export { InvalidNextTokenException };
|
|
1258
|
+
var InvalidSortByException = (function (_super) {
|
|
1259
|
+
__extends(InvalidSortByException, _super);
|
|
1260
|
+
function InvalidSortByException(opts) {
|
|
1261
|
+
var _this = _super.call(this, __assign({ name: "InvalidSortByException", $fault: "client" }, opts)) || this;
|
|
1262
|
+
_this.name = "InvalidSortByException";
|
|
1263
|
+
_this.$fault = "client";
|
|
1264
|
+
Object.setPrototypeOf(_this, InvalidSortByException.prototype);
|
|
1265
|
+
return _this;
|
|
1266
|
+
}
|
|
1267
|
+
return InvalidSortByException;
|
|
1268
|
+
}(__BaseException));
|
|
1269
|
+
export { InvalidSortByException };
|
|
1270
|
+
var InvalidSortOrderException = (function (_super) {
|
|
1271
|
+
__extends(InvalidSortOrderException, _super);
|
|
1272
|
+
function InvalidSortOrderException(opts) {
|
|
1273
|
+
var _this = _super.call(this, __assign({ name: "InvalidSortOrderException", $fault: "client" }, opts)) || this;
|
|
1274
|
+
_this.name = "InvalidSortOrderException";
|
|
1275
|
+
_this.$fault = "client";
|
|
1276
|
+
Object.setPrototypeOf(_this, InvalidSortOrderException.prototype);
|
|
1277
|
+
return _this;
|
|
1278
|
+
}
|
|
1279
|
+
return InvalidSortOrderException;
|
|
1280
|
+
}(__BaseException));
|
|
1281
|
+
export { InvalidSortOrderException };
|
|
1281
1282
|
export var ListStateFilterAction;
|
|
1282
1283
|
(function (ListStateFilterAction) {
|
|
1283
1284
|
ListStateFilterAction["Exclude"] = "exclude";
|
|
@@ -1289,684 +1290,408 @@ export var SortOrder;
|
|
|
1289
1290
|
SortOrder["Ascending"] = "ascending";
|
|
1290
1291
|
SortOrder["Descending"] = "descending";
|
|
1291
1292
|
})(SortOrder || (SortOrder = {}));
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
}
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
}
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
}
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
}
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
}
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
}
|
|
1293
|
+
var InvalidDeploymentInstanceTypeException = (function (_super) {
|
|
1294
|
+
__extends(InvalidDeploymentInstanceTypeException, _super);
|
|
1295
|
+
function InvalidDeploymentInstanceTypeException(opts) {
|
|
1296
|
+
var _this = _super.call(this, __assign({ name: "InvalidDeploymentInstanceTypeException", $fault: "client" }, opts)) || this;
|
|
1297
|
+
_this.name = "InvalidDeploymentInstanceTypeException";
|
|
1298
|
+
_this.$fault = "client";
|
|
1299
|
+
Object.setPrototypeOf(_this, InvalidDeploymentInstanceTypeException.prototype);
|
|
1300
|
+
return _this;
|
|
1301
|
+
}
|
|
1302
|
+
return InvalidDeploymentInstanceTypeException;
|
|
1303
|
+
}(__BaseException));
|
|
1304
|
+
export { InvalidDeploymentInstanceTypeException };
|
|
1305
|
+
var InvalidInstanceStatusException = (function (_super) {
|
|
1306
|
+
__extends(InvalidInstanceStatusException, _super);
|
|
1307
|
+
function InvalidInstanceStatusException(opts) {
|
|
1308
|
+
var _this = _super.call(this, __assign({ name: "InvalidInstanceStatusException", $fault: "client" }, opts)) || this;
|
|
1309
|
+
_this.name = "InvalidInstanceStatusException";
|
|
1310
|
+
_this.$fault = "client";
|
|
1311
|
+
Object.setPrototypeOf(_this, InvalidInstanceStatusException.prototype);
|
|
1312
|
+
return _this;
|
|
1313
|
+
}
|
|
1314
|
+
return InvalidInstanceStatusException;
|
|
1315
|
+
}(__BaseException));
|
|
1316
|
+
export { InvalidInstanceStatusException };
|
|
1317
|
+
var InvalidInstanceTypeException = (function (_super) {
|
|
1318
|
+
__extends(InvalidInstanceTypeException, _super);
|
|
1319
|
+
function InvalidInstanceTypeException(opts) {
|
|
1320
|
+
var _this = _super.call(this, __assign({ name: "InvalidInstanceTypeException", $fault: "client" }, opts)) || this;
|
|
1321
|
+
_this.name = "InvalidInstanceTypeException";
|
|
1322
|
+
_this.$fault = "client";
|
|
1323
|
+
Object.setPrototypeOf(_this, InvalidInstanceTypeException.prototype);
|
|
1324
|
+
return _this;
|
|
1325
|
+
}
|
|
1326
|
+
return InvalidInstanceTypeException;
|
|
1327
|
+
}(__BaseException));
|
|
1328
|
+
export { InvalidInstanceTypeException };
|
|
1329
|
+
var InvalidTargetFilterNameException = (function (_super) {
|
|
1330
|
+
__extends(InvalidTargetFilterNameException, _super);
|
|
1331
|
+
function InvalidTargetFilterNameException(opts) {
|
|
1332
|
+
var _this = _super.call(this, __assign({ name: "InvalidTargetFilterNameException", $fault: "client" }, opts)) || this;
|
|
1333
|
+
_this.name = "InvalidTargetFilterNameException";
|
|
1334
|
+
_this.$fault = "client";
|
|
1335
|
+
Object.setPrototypeOf(_this, InvalidTargetFilterNameException.prototype);
|
|
1336
|
+
return _this;
|
|
1337
|
+
}
|
|
1338
|
+
return InvalidTargetFilterNameException;
|
|
1339
|
+
}(__BaseException));
|
|
1340
|
+
export { InvalidTargetFilterNameException };
|
|
1341
|
+
var InvalidExternalIdException = (function (_super) {
|
|
1342
|
+
__extends(InvalidExternalIdException, _super);
|
|
1343
|
+
function InvalidExternalIdException(opts) {
|
|
1344
|
+
var _this = _super.call(this, __assign({ name: "InvalidExternalIdException", $fault: "client" }, opts)) || this;
|
|
1345
|
+
_this.name = "InvalidExternalIdException";
|
|
1346
|
+
_this.$fault = "client";
|
|
1347
|
+
Object.setPrototypeOf(_this, InvalidExternalIdException.prototype);
|
|
1348
|
+
return _this;
|
|
1349
|
+
}
|
|
1350
|
+
return InvalidExternalIdException;
|
|
1351
|
+
}(__BaseException));
|
|
1352
|
+
export { InvalidExternalIdException };
|
|
1353
|
+
var InvalidTimeRangeException = (function (_super) {
|
|
1354
|
+
__extends(InvalidTimeRangeException, _super);
|
|
1355
|
+
function InvalidTimeRangeException(opts) {
|
|
1356
|
+
var _this = _super.call(this, __assign({ name: "InvalidTimeRangeException", $fault: "client" }, opts)) || this;
|
|
1357
|
+
_this.name = "InvalidTimeRangeException";
|
|
1358
|
+
_this.$fault = "client";
|
|
1359
|
+
Object.setPrototypeOf(_this, InvalidTimeRangeException.prototype);
|
|
1360
|
+
return _this;
|
|
1361
|
+
}
|
|
1362
|
+
return InvalidTimeRangeException;
|
|
1363
|
+
}(__BaseException));
|
|
1364
|
+
export { InvalidTimeRangeException };
|
|
1364
1365
|
export var TargetFilterName;
|
|
1365
1366
|
(function (TargetFilterName) {
|
|
1366
1367
|
TargetFilterName["SERVER_INSTANCE_LABEL"] = "ServerInstanceLabel";
|
|
1367
1368
|
TargetFilterName["TARGET_STATUS"] = "TargetStatus";
|
|
1368
1369
|
})(TargetFilterName || (TargetFilterName = {}));
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
}
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
}
|
|
1370
|
+
var InvalidRegistrationStatusException = (function (_super) {
|
|
1371
|
+
__extends(InvalidRegistrationStatusException, _super);
|
|
1372
|
+
function InvalidRegistrationStatusException(opts) {
|
|
1373
|
+
var _this = _super.call(this, __assign({ name: "InvalidRegistrationStatusException", $fault: "client" }, opts)) || this;
|
|
1374
|
+
_this.name = "InvalidRegistrationStatusException";
|
|
1375
|
+
_this.$fault = "client";
|
|
1376
|
+
Object.setPrototypeOf(_this, InvalidRegistrationStatusException.prototype);
|
|
1377
|
+
return _this;
|
|
1378
|
+
}
|
|
1379
|
+
return InvalidRegistrationStatusException;
|
|
1380
|
+
}(__BaseException));
|
|
1381
|
+
export { InvalidRegistrationStatusException };
|
|
1382
|
+
var InvalidTagFilterException = (function (_super) {
|
|
1383
|
+
__extends(InvalidTagFilterException, _super);
|
|
1384
|
+
function InvalidTagFilterException(opts) {
|
|
1385
|
+
var _this = _super.call(this, __assign({ name: "InvalidTagFilterException", $fault: "client" }, opts)) || this;
|
|
1386
|
+
_this.name = "InvalidTagFilterException";
|
|
1387
|
+
_this.$fault = "client";
|
|
1388
|
+
Object.setPrototypeOf(_this, InvalidTagFilterException.prototype);
|
|
1389
|
+
return _this;
|
|
1390
|
+
}
|
|
1391
|
+
return InvalidTagFilterException;
|
|
1392
|
+
}(__BaseException));
|
|
1393
|
+
export { InvalidTagFilterException };
|
|
1393
1394
|
export var RegistrationStatus;
|
|
1394
1395
|
(function (RegistrationStatus) {
|
|
1395
1396
|
RegistrationStatus["Deregistered"] = "Deregistered";
|
|
1396
1397
|
RegistrationStatus["Registered"] = "Registered";
|
|
1397
1398
|
})(RegistrationStatus || (RegistrationStatus = {}));
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
}
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
}
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
}
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
}
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
}
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
}
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
}
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
}
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
}
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
}
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
}
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
}
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
}
|
|
1399
|
+
var InvalidArnException = (function (_super) {
|
|
1400
|
+
__extends(InvalidArnException, _super);
|
|
1401
|
+
function InvalidArnException(opts) {
|
|
1402
|
+
var _this = _super.call(this, __assign({ name: "InvalidArnException", $fault: "client" }, opts)) || this;
|
|
1403
|
+
_this.name = "InvalidArnException";
|
|
1404
|
+
_this.$fault = "client";
|
|
1405
|
+
Object.setPrototypeOf(_this, InvalidArnException.prototype);
|
|
1406
|
+
return _this;
|
|
1407
|
+
}
|
|
1408
|
+
return InvalidArnException;
|
|
1409
|
+
}(__BaseException));
|
|
1410
|
+
export { InvalidArnException };
|
|
1411
|
+
var ResourceArnRequiredException = (function (_super) {
|
|
1412
|
+
__extends(ResourceArnRequiredException, _super);
|
|
1413
|
+
function ResourceArnRequiredException(opts) {
|
|
1414
|
+
var _this = _super.call(this, __assign({ name: "ResourceArnRequiredException", $fault: "client" }, opts)) || this;
|
|
1415
|
+
_this.name = "ResourceArnRequiredException";
|
|
1416
|
+
_this.$fault = "client";
|
|
1417
|
+
Object.setPrototypeOf(_this, ResourceArnRequiredException.prototype);
|
|
1418
|
+
return _this;
|
|
1419
|
+
}
|
|
1420
|
+
return ResourceArnRequiredException;
|
|
1421
|
+
}(__BaseException));
|
|
1422
|
+
export { ResourceArnRequiredException };
|
|
1423
|
+
var InvalidLifecycleEventHookExecutionIdException = (function (_super) {
|
|
1424
|
+
__extends(InvalidLifecycleEventHookExecutionIdException, _super);
|
|
1425
|
+
function InvalidLifecycleEventHookExecutionIdException(opts) {
|
|
1426
|
+
var _this = _super.call(this, __assign({ name: "InvalidLifecycleEventHookExecutionIdException", $fault: "client" }, opts)) || this;
|
|
1427
|
+
_this.name = "InvalidLifecycleEventHookExecutionIdException";
|
|
1428
|
+
_this.$fault = "client";
|
|
1429
|
+
Object.setPrototypeOf(_this, InvalidLifecycleEventHookExecutionIdException.prototype);
|
|
1430
|
+
return _this;
|
|
1431
|
+
}
|
|
1432
|
+
return InvalidLifecycleEventHookExecutionIdException;
|
|
1433
|
+
}(__BaseException));
|
|
1434
|
+
export { InvalidLifecycleEventHookExecutionIdException };
|
|
1435
|
+
var InvalidLifecycleEventHookExecutionStatusException = (function (_super) {
|
|
1436
|
+
__extends(InvalidLifecycleEventHookExecutionStatusException, _super);
|
|
1437
|
+
function InvalidLifecycleEventHookExecutionStatusException(opts) {
|
|
1438
|
+
var _this = _super.call(this, __assign({ name: "InvalidLifecycleEventHookExecutionStatusException", $fault: "client" }, opts)) || this;
|
|
1439
|
+
_this.name = "InvalidLifecycleEventHookExecutionStatusException";
|
|
1440
|
+
_this.$fault = "client";
|
|
1441
|
+
Object.setPrototypeOf(_this, InvalidLifecycleEventHookExecutionStatusException.prototype);
|
|
1442
|
+
return _this;
|
|
1443
|
+
}
|
|
1444
|
+
return InvalidLifecycleEventHookExecutionStatusException;
|
|
1445
|
+
}(__BaseException));
|
|
1446
|
+
export { InvalidLifecycleEventHookExecutionStatusException };
|
|
1447
|
+
var LifecycleEventAlreadyCompletedException = (function (_super) {
|
|
1448
|
+
__extends(LifecycleEventAlreadyCompletedException, _super);
|
|
1449
|
+
function LifecycleEventAlreadyCompletedException(opts) {
|
|
1450
|
+
var _this = _super.call(this, __assign({ name: "LifecycleEventAlreadyCompletedException", $fault: "client" }, opts)) || this;
|
|
1451
|
+
_this.name = "LifecycleEventAlreadyCompletedException";
|
|
1452
|
+
_this.$fault = "client";
|
|
1453
|
+
Object.setPrototypeOf(_this, LifecycleEventAlreadyCompletedException.prototype);
|
|
1454
|
+
return _this;
|
|
1455
|
+
}
|
|
1456
|
+
return LifecycleEventAlreadyCompletedException;
|
|
1457
|
+
}(__BaseException));
|
|
1458
|
+
export { LifecycleEventAlreadyCompletedException };
|
|
1459
|
+
var IamArnRequiredException = (function (_super) {
|
|
1460
|
+
__extends(IamArnRequiredException, _super);
|
|
1461
|
+
function IamArnRequiredException(opts) {
|
|
1462
|
+
var _this = _super.call(this, __assign({ name: "IamArnRequiredException", $fault: "client" }, opts)) || this;
|
|
1463
|
+
_this.name = "IamArnRequiredException";
|
|
1464
|
+
_this.$fault = "client";
|
|
1465
|
+
Object.setPrototypeOf(_this, IamArnRequiredException.prototype);
|
|
1466
|
+
return _this;
|
|
1467
|
+
}
|
|
1468
|
+
return IamArnRequiredException;
|
|
1469
|
+
}(__BaseException));
|
|
1470
|
+
export { IamArnRequiredException };
|
|
1471
|
+
var IamSessionArnAlreadyRegisteredException = (function (_super) {
|
|
1472
|
+
__extends(IamSessionArnAlreadyRegisteredException, _super);
|
|
1473
|
+
function IamSessionArnAlreadyRegisteredException(opts) {
|
|
1474
|
+
var _this = _super.call(this, __assign({ name: "IamSessionArnAlreadyRegisteredException", $fault: "client" }, opts)) || this;
|
|
1475
|
+
_this.name = "IamSessionArnAlreadyRegisteredException";
|
|
1476
|
+
_this.$fault = "client";
|
|
1477
|
+
Object.setPrototypeOf(_this, IamSessionArnAlreadyRegisteredException.prototype);
|
|
1478
|
+
return _this;
|
|
1479
|
+
}
|
|
1480
|
+
return IamSessionArnAlreadyRegisteredException;
|
|
1481
|
+
}(__BaseException));
|
|
1482
|
+
export { IamSessionArnAlreadyRegisteredException };
|
|
1483
|
+
var IamUserArnAlreadyRegisteredException = (function (_super) {
|
|
1484
|
+
__extends(IamUserArnAlreadyRegisteredException, _super);
|
|
1485
|
+
function IamUserArnAlreadyRegisteredException(opts) {
|
|
1486
|
+
var _this = _super.call(this, __assign({ name: "IamUserArnAlreadyRegisteredException", $fault: "client" }, opts)) || this;
|
|
1487
|
+
_this.name = "IamUserArnAlreadyRegisteredException";
|
|
1488
|
+
_this.$fault = "client";
|
|
1489
|
+
Object.setPrototypeOf(_this, IamUserArnAlreadyRegisteredException.prototype);
|
|
1490
|
+
return _this;
|
|
1491
|
+
}
|
|
1492
|
+
return IamUserArnAlreadyRegisteredException;
|
|
1493
|
+
}(__BaseException));
|
|
1494
|
+
export { IamUserArnAlreadyRegisteredException };
|
|
1495
|
+
var IamUserArnRequiredException = (function (_super) {
|
|
1496
|
+
__extends(IamUserArnRequiredException, _super);
|
|
1497
|
+
function IamUserArnRequiredException(opts) {
|
|
1498
|
+
var _this = _super.call(this, __assign({ name: "IamUserArnRequiredException", $fault: "client" }, opts)) || this;
|
|
1499
|
+
_this.name = "IamUserArnRequiredException";
|
|
1500
|
+
_this.$fault = "client";
|
|
1501
|
+
Object.setPrototypeOf(_this, IamUserArnRequiredException.prototype);
|
|
1502
|
+
return _this;
|
|
1503
|
+
}
|
|
1504
|
+
return IamUserArnRequiredException;
|
|
1505
|
+
}(__BaseException));
|
|
1506
|
+
export { IamUserArnRequiredException };
|
|
1507
|
+
var InstanceNameAlreadyRegisteredException = (function (_super) {
|
|
1508
|
+
__extends(InstanceNameAlreadyRegisteredException, _super);
|
|
1509
|
+
function InstanceNameAlreadyRegisteredException(opts) {
|
|
1510
|
+
var _this = _super.call(this, __assign({ name: "InstanceNameAlreadyRegisteredException", $fault: "client" }, opts)) || this;
|
|
1511
|
+
_this.name = "InstanceNameAlreadyRegisteredException";
|
|
1512
|
+
_this.$fault = "client";
|
|
1513
|
+
Object.setPrototypeOf(_this, InstanceNameAlreadyRegisteredException.prototype);
|
|
1514
|
+
return _this;
|
|
1515
|
+
}
|
|
1516
|
+
return InstanceNameAlreadyRegisteredException;
|
|
1517
|
+
}(__BaseException));
|
|
1518
|
+
export { InstanceNameAlreadyRegisteredException };
|
|
1519
|
+
var InvalidIamSessionArnException = (function (_super) {
|
|
1520
|
+
__extends(InvalidIamSessionArnException, _super);
|
|
1521
|
+
function InvalidIamSessionArnException(opts) {
|
|
1522
|
+
var _this = _super.call(this, __assign({ name: "InvalidIamSessionArnException", $fault: "client" }, opts)) || this;
|
|
1523
|
+
_this.name = "InvalidIamSessionArnException";
|
|
1524
|
+
_this.$fault = "client";
|
|
1525
|
+
Object.setPrototypeOf(_this, InvalidIamSessionArnException.prototype);
|
|
1526
|
+
return _this;
|
|
1527
|
+
}
|
|
1528
|
+
return InvalidIamSessionArnException;
|
|
1529
|
+
}(__BaseException));
|
|
1530
|
+
export { InvalidIamSessionArnException };
|
|
1531
|
+
var InvalidIamUserArnException = (function (_super) {
|
|
1532
|
+
__extends(InvalidIamUserArnException, _super);
|
|
1533
|
+
function InvalidIamUserArnException(opts) {
|
|
1534
|
+
var _this = _super.call(this, __assign({ name: "InvalidIamUserArnException", $fault: "client" }, opts)) || this;
|
|
1535
|
+
_this.name = "InvalidIamUserArnException";
|
|
1536
|
+
_this.$fault = "client";
|
|
1537
|
+
Object.setPrototypeOf(_this, InvalidIamUserArnException.prototype);
|
|
1538
|
+
return _this;
|
|
1539
|
+
}
|
|
1540
|
+
return InvalidIamUserArnException;
|
|
1541
|
+
}(__BaseException));
|
|
1542
|
+
export { InvalidIamUserArnException };
|
|
1543
|
+
var MultipleIamArnsProvidedException = (function (_super) {
|
|
1544
|
+
__extends(MultipleIamArnsProvidedException, _super);
|
|
1545
|
+
function MultipleIamArnsProvidedException(opts) {
|
|
1546
|
+
var _this = _super.call(this, __assign({ name: "MultipleIamArnsProvidedException", $fault: "client" }, opts)) || this;
|
|
1547
|
+
_this.name = "MultipleIamArnsProvidedException";
|
|
1548
|
+
_this.$fault = "client";
|
|
1549
|
+
Object.setPrototypeOf(_this, MultipleIamArnsProvidedException.prototype);
|
|
1550
|
+
return _this;
|
|
1551
|
+
}
|
|
1552
|
+
return MultipleIamArnsProvidedException;
|
|
1553
|
+
}(__BaseException));
|
|
1554
|
+
export { MultipleIamArnsProvidedException };
|
|
1554
1555
|
export var StopStatus;
|
|
1555
1556
|
(function (StopStatus) {
|
|
1556
1557
|
StopStatus["PENDING"] = "Pending";
|
|
1557
1558
|
StopStatus["SUCCEEDED"] = "Succeeded";
|
|
1558
1559
|
})(StopStatus || (StopStatus = {}));
|
|
1559
|
-
export
|
|
1560
|
-
|
|
1561
|
-
});
|
|
1562
|
-
export
|
|
1563
|
-
|
|
1564
|
-
});
|
|
1565
|
-
export
|
|
1566
|
-
|
|
1567
|
-
});
|
|
1568
|
-
export
|
|
1569
|
-
|
|
1570
|
-
});
|
|
1571
|
-
export
|
|
1572
|
-
|
|
1573
|
-
});
|
|
1574
|
-
export
|
|
1575
|
-
|
|
1576
|
-
});
|
|
1577
|
-
export
|
|
1578
|
-
|
|
1579
|
-
});
|
|
1580
|
-
export
|
|
1581
|
-
|
|
1582
|
-
});
|
|
1583
|
-
export
|
|
1584
|
-
|
|
1585
|
-
});
|
|
1586
|
-
export
|
|
1587
|
-
|
|
1588
|
-
});
|
|
1589
|
-
export
|
|
1590
|
-
|
|
1591
|
-
});
|
|
1592
|
-
export
|
|
1593
|
-
|
|
1594
|
-
});
|
|
1595
|
-
export
|
|
1596
|
-
|
|
1597
|
-
});
|
|
1598
|
-
export
|
|
1599
|
-
|
|
1600
|
-
});
|
|
1601
|
-
export
|
|
1602
|
-
|
|
1603
|
-
});
|
|
1604
|
-
export
|
|
1605
|
-
|
|
1606
|
-
});
|
|
1607
|
-
export
|
|
1608
|
-
|
|
1609
|
-
});
|
|
1610
|
-
export
|
|
1611
|
-
|
|
1612
|
-
});
|
|
1613
|
-
export
|
|
1614
|
-
|
|
1615
|
-
});
|
|
1616
|
-
export
|
|
1617
|
-
|
|
1618
|
-
});
|
|
1619
|
-
export
|
|
1620
|
-
|
|
1621
|
-
});
|
|
1622
|
-
export
|
|
1623
|
-
|
|
1624
|
-
});
|
|
1625
|
-
export
|
|
1626
|
-
|
|
1627
|
-
});
|
|
1628
|
-
export
|
|
1629
|
-
|
|
1630
|
-
});
|
|
1631
|
-
export
|
|
1632
|
-
|
|
1633
|
-
});
|
|
1634
|
-
export
|
|
1635
|
-
|
|
1636
|
-
});
|
|
1637
|
-
export
|
|
1638
|
-
|
|
1639
|
-
});
|
|
1640
|
-
export
|
|
1641
|
-
|
|
1642
|
-
});
|
|
1643
|
-
export
|
|
1644
|
-
|
|
1645
|
-
});
|
|
1646
|
-
export
|
|
1647
|
-
|
|
1648
|
-
});
|
|
1649
|
-
export
|
|
1650
|
-
|
|
1651
|
-
});
|
|
1652
|
-
export
|
|
1653
|
-
|
|
1654
|
-
});
|
|
1655
|
-
export
|
|
1656
|
-
|
|
1657
|
-
});
|
|
1658
|
-
export
|
|
1659
|
-
|
|
1660
|
-
});
|
|
1661
|
-
export
|
|
1662
|
-
|
|
1663
|
-
});
|
|
1664
|
-
export
|
|
1665
|
-
|
|
1666
|
-
});
|
|
1667
|
-
export
|
|
1668
|
-
|
|
1669
|
-
});
|
|
1670
|
-
export
|
|
1671
|
-
|
|
1672
|
-
});
|
|
1673
|
-
export
|
|
1674
|
-
|
|
1675
|
-
});
|
|
1676
|
-
export
|
|
1677
|
-
|
|
1678
|
-
});
|
|
1679
|
-
export
|
|
1680
|
-
|
|
1681
|
-
});
|
|
1682
|
-
export
|
|
1683
|
-
|
|
1684
|
-
});
|
|
1685
|
-
export
|
|
1686
|
-
|
|
1687
|
-
});
|
|
1688
|
-
export
|
|
1689
|
-
|
|
1690
|
-
});
|
|
1691
|
-
export
|
|
1692
|
-
|
|
1693
|
-
});
|
|
1694
|
-
export
|
|
1695
|
-
|
|
1696
|
-
});
|
|
1697
|
-
export const RelatedDeploymentsFilterSensitiveLog = (obj) => ({
|
|
1698
|
-
...obj,
|
|
1699
|
-
});
|
|
1700
|
-
export const RollbackInfoFilterSensitiveLog = (obj) => ({
|
|
1701
|
-
...obj,
|
|
1702
|
-
});
|
|
1703
|
-
export const TargetInstancesFilterSensitiveLog = (obj) => ({
|
|
1704
|
-
...obj,
|
|
1705
|
-
});
|
|
1706
|
-
export const DeploymentInfoFilterSensitiveLog = (obj) => ({
|
|
1707
|
-
...obj,
|
|
1708
|
-
});
|
|
1709
|
-
export const BatchGetDeploymentsOutputFilterSensitiveLog = (obj) => ({
|
|
1710
|
-
...obj,
|
|
1711
|
-
});
|
|
1712
|
-
export const BatchGetDeploymentTargetsInputFilterSensitiveLog = (obj) => ({
|
|
1713
|
-
...obj,
|
|
1714
|
-
});
|
|
1715
|
-
export const CloudFormationTargetFilterSensitiveLog = (obj) => ({
|
|
1716
|
-
...obj,
|
|
1717
|
-
});
|
|
1718
|
-
export const ECSTaskSetFilterSensitiveLog = (obj) => ({
|
|
1719
|
-
...obj,
|
|
1720
|
-
});
|
|
1721
|
-
export const ECSTargetFilterSensitiveLog = (obj) => ({
|
|
1722
|
-
...obj,
|
|
1723
|
-
});
|
|
1724
|
-
export const InstanceTargetFilterSensitiveLog = (obj) => ({
|
|
1725
|
-
...obj,
|
|
1726
|
-
});
|
|
1727
|
-
export const LambdaFunctionInfoFilterSensitiveLog = (obj) => ({
|
|
1728
|
-
...obj,
|
|
1729
|
-
});
|
|
1730
|
-
export const LambdaTargetFilterSensitiveLog = (obj) => ({
|
|
1731
|
-
...obj,
|
|
1732
|
-
});
|
|
1733
|
-
export const DeploymentTargetFilterSensitiveLog = (obj) => ({
|
|
1734
|
-
...obj,
|
|
1735
|
-
});
|
|
1736
|
-
export const BatchGetDeploymentTargetsOutputFilterSensitiveLog = (obj) => ({
|
|
1737
|
-
...obj,
|
|
1738
|
-
});
|
|
1739
|
-
export const BatchGetOnPremisesInstancesInputFilterSensitiveLog = (obj) => ({
|
|
1740
|
-
...obj,
|
|
1741
|
-
});
|
|
1742
|
-
export const InstanceInfoFilterSensitiveLog = (obj) => ({
|
|
1743
|
-
...obj,
|
|
1744
|
-
});
|
|
1745
|
-
export const BatchGetOnPremisesInstancesOutputFilterSensitiveLog = (obj) => ({
|
|
1746
|
-
...obj,
|
|
1747
|
-
});
|
|
1748
|
-
export const ContinueDeploymentInputFilterSensitiveLog = (obj) => ({
|
|
1749
|
-
...obj,
|
|
1750
|
-
});
|
|
1751
|
-
export const CreateApplicationInputFilterSensitiveLog = (obj) => ({
|
|
1752
|
-
...obj,
|
|
1753
|
-
});
|
|
1754
|
-
export const CreateApplicationOutputFilterSensitiveLog = (obj) => ({
|
|
1755
|
-
...obj,
|
|
1756
|
-
});
|
|
1757
|
-
export const CreateDeploymentInputFilterSensitiveLog = (obj) => ({
|
|
1758
|
-
...obj,
|
|
1759
|
-
});
|
|
1760
|
-
export const CreateDeploymentOutputFilterSensitiveLog = (obj) => ({
|
|
1761
|
-
...obj,
|
|
1762
|
-
});
|
|
1763
|
-
export const MinimumHealthyHostsFilterSensitiveLog = (obj) => ({
|
|
1764
|
-
...obj,
|
|
1765
|
-
});
|
|
1766
|
-
export const TimeBasedCanaryFilterSensitiveLog = (obj) => ({
|
|
1767
|
-
...obj,
|
|
1768
|
-
});
|
|
1769
|
-
export const TimeBasedLinearFilterSensitiveLog = (obj) => ({
|
|
1770
|
-
...obj,
|
|
1771
|
-
});
|
|
1772
|
-
export const TrafficRoutingConfigFilterSensitiveLog = (obj) => ({
|
|
1773
|
-
...obj,
|
|
1774
|
-
});
|
|
1775
|
-
export const CreateDeploymentConfigInputFilterSensitiveLog = (obj) => ({
|
|
1776
|
-
...obj,
|
|
1777
|
-
});
|
|
1778
|
-
export const CreateDeploymentConfigOutputFilterSensitiveLog = (obj) => ({
|
|
1779
|
-
...obj,
|
|
1780
|
-
});
|
|
1781
|
-
export const CreateDeploymentGroupInputFilterSensitiveLog = (obj) => ({
|
|
1782
|
-
...obj,
|
|
1783
|
-
});
|
|
1784
|
-
export const CreateDeploymentGroupOutputFilterSensitiveLog = (obj) => ({
|
|
1785
|
-
...obj,
|
|
1786
|
-
});
|
|
1787
|
-
export const DeleteApplicationInputFilterSensitiveLog = (obj) => ({
|
|
1788
|
-
...obj,
|
|
1789
|
-
});
|
|
1790
|
-
export const DeleteDeploymentConfigInputFilterSensitiveLog = (obj) => ({
|
|
1791
|
-
...obj,
|
|
1792
|
-
});
|
|
1793
|
-
export const DeleteDeploymentGroupInputFilterSensitiveLog = (obj) => ({
|
|
1794
|
-
...obj,
|
|
1795
|
-
});
|
|
1796
|
-
export const DeleteDeploymentGroupOutputFilterSensitiveLog = (obj) => ({
|
|
1797
|
-
...obj,
|
|
1798
|
-
});
|
|
1799
|
-
export const DeleteGitHubAccountTokenInputFilterSensitiveLog = (obj) => ({
|
|
1800
|
-
...obj,
|
|
1801
|
-
});
|
|
1802
|
-
export const DeleteGitHubAccountTokenOutputFilterSensitiveLog = (obj) => ({
|
|
1803
|
-
...obj,
|
|
1804
|
-
});
|
|
1805
|
-
export const DeleteResourcesByExternalIdInputFilterSensitiveLog = (obj) => ({
|
|
1806
|
-
...obj,
|
|
1807
|
-
});
|
|
1808
|
-
export const DeleteResourcesByExternalIdOutputFilterSensitiveLog = (obj) => ({
|
|
1809
|
-
...obj,
|
|
1810
|
-
});
|
|
1811
|
-
export const DeregisterOnPremisesInstanceInputFilterSensitiveLog = (obj) => ({
|
|
1812
|
-
...obj,
|
|
1813
|
-
});
|
|
1814
|
-
export const GetApplicationInputFilterSensitiveLog = (obj) => ({
|
|
1815
|
-
...obj,
|
|
1816
|
-
});
|
|
1817
|
-
export const GetApplicationOutputFilterSensitiveLog = (obj) => ({
|
|
1818
|
-
...obj,
|
|
1819
|
-
});
|
|
1820
|
-
export const GetApplicationRevisionInputFilterSensitiveLog = (obj) => ({
|
|
1821
|
-
...obj,
|
|
1822
|
-
});
|
|
1823
|
-
export const GetApplicationRevisionOutputFilterSensitiveLog = (obj) => ({
|
|
1824
|
-
...obj,
|
|
1825
|
-
});
|
|
1826
|
-
export const GetDeploymentInputFilterSensitiveLog = (obj) => ({
|
|
1827
|
-
...obj,
|
|
1828
|
-
});
|
|
1829
|
-
export const GetDeploymentOutputFilterSensitiveLog = (obj) => ({
|
|
1830
|
-
...obj,
|
|
1831
|
-
});
|
|
1832
|
-
export const GetDeploymentConfigInputFilterSensitiveLog = (obj) => ({
|
|
1833
|
-
...obj,
|
|
1834
|
-
});
|
|
1835
|
-
export const DeploymentConfigInfoFilterSensitiveLog = (obj) => ({
|
|
1836
|
-
...obj,
|
|
1837
|
-
});
|
|
1838
|
-
export const GetDeploymentConfigOutputFilterSensitiveLog = (obj) => ({
|
|
1839
|
-
...obj,
|
|
1840
|
-
});
|
|
1841
|
-
export const GetDeploymentGroupInputFilterSensitiveLog = (obj) => ({
|
|
1842
|
-
...obj,
|
|
1843
|
-
});
|
|
1844
|
-
export const GetDeploymentGroupOutputFilterSensitiveLog = (obj) => ({
|
|
1845
|
-
...obj,
|
|
1846
|
-
});
|
|
1847
|
-
export const GetDeploymentInstanceInputFilterSensitiveLog = (obj) => ({
|
|
1848
|
-
...obj,
|
|
1849
|
-
});
|
|
1850
|
-
export const GetDeploymentInstanceOutputFilterSensitiveLog = (obj) => ({
|
|
1851
|
-
...obj,
|
|
1852
|
-
});
|
|
1853
|
-
export const GetDeploymentTargetInputFilterSensitiveLog = (obj) => ({
|
|
1854
|
-
...obj,
|
|
1855
|
-
});
|
|
1856
|
-
export const GetDeploymentTargetOutputFilterSensitiveLog = (obj) => ({
|
|
1857
|
-
...obj,
|
|
1858
|
-
});
|
|
1859
|
-
export const GetOnPremisesInstanceInputFilterSensitiveLog = (obj) => ({
|
|
1860
|
-
...obj,
|
|
1861
|
-
});
|
|
1862
|
-
export const GetOnPremisesInstanceOutputFilterSensitiveLog = (obj) => ({
|
|
1863
|
-
...obj,
|
|
1864
|
-
});
|
|
1865
|
-
export const ListApplicationRevisionsInputFilterSensitiveLog = (obj) => ({
|
|
1866
|
-
...obj,
|
|
1867
|
-
});
|
|
1868
|
-
export const ListApplicationRevisionsOutputFilterSensitiveLog = (obj) => ({
|
|
1869
|
-
...obj,
|
|
1870
|
-
});
|
|
1871
|
-
export const ListApplicationsInputFilterSensitiveLog = (obj) => ({
|
|
1872
|
-
...obj,
|
|
1873
|
-
});
|
|
1874
|
-
export const ListApplicationsOutputFilterSensitiveLog = (obj) => ({
|
|
1875
|
-
...obj,
|
|
1876
|
-
});
|
|
1877
|
-
export const ListDeploymentConfigsInputFilterSensitiveLog = (obj) => ({
|
|
1878
|
-
...obj,
|
|
1879
|
-
});
|
|
1880
|
-
export const ListDeploymentConfigsOutputFilterSensitiveLog = (obj) => ({
|
|
1881
|
-
...obj,
|
|
1882
|
-
});
|
|
1883
|
-
export const ListDeploymentGroupsInputFilterSensitiveLog = (obj) => ({
|
|
1884
|
-
...obj,
|
|
1885
|
-
});
|
|
1886
|
-
export const ListDeploymentGroupsOutputFilterSensitiveLog = (obj) => ({
|
|
1887
|
-
...obj,
|
|
1888
|
-
});
|
|
1889
|
-
export const ListDeploymentInstancesInputFilterSensitiveLog = (obj) => ({
|
|
1890
|
-
...obj,
|
|
1891
|
-
});
|
|
1892
|
-
export const ListDeploymentInstancesOutputFilterSensitiveLog = (obj) => ({
|
|
1893
|
-
...obj,
|
|
1894
|
-
});
|
|
1895
|
-
export const TimeRangeFilterSensitiveLog = (obj) => ({
|
|
1896
|
-
...obj,
|
|
1897
|
-
});
|
|
1898
|
-
export const ListDeploymentsInputFilterSensitiveLog = (obj) => ({
|
|
1899
|
-
...obj,
|
|
1900
|
-
});
|
|
1901
|
-
export const ListDeploymentsOutputFilterSensitiveLog = (obj) => ({
|
|
1902
|
-
...obj,
|
|
1903
|
-
});
|
|
1904
|
-
export const ListDeploymentTargetsInputFilterSensitiveLog = (obj) => ({
|
|
1905
|
-
...obj,
|
|
1906
|
-
});
|
|
1907
|
-
export const ListDeploymentTargetsOutputFilterSensitiveLog = (obj) => ({
|
|
1908
|
-
...obj,
|
|
1909
|
-
});
|
|
1910
|
-
export const ListGitHubAccountTokenNamesInputFilterSensitiveLog = (obj) => ({
|
|
1911
|
-
...obj,
|
|
1912
|
-
});
|
|
1913
|
-
export const ListGitHubAccountTokenNamesOutputFilterSensitiveLog = (obj) => ({
|
|
1914
|
-
...obj,
|
|
1915
|
-
});
|
|
1916
|
-
export const ListOnPremisesInstancesInputFilterSensitiveLog = (obj) => ({
|
|
1917
|
-
...obj,
|
|
1918
|
-
});
|
|
1919
|
-
export const ListOnPremisesInstancesOutputFilterSensitiveLog = (obj) => ({
|
|
1920
|
-
...obj,
|
|
1921
|
-
});
|
|
1922
|
-
export const ListTagsForResourceInputFilterSensitiveLog = (obj) => ({
|
|
1923
|
-
...obj,
|
|
1924
|
-
});
|
|
1925
|
-
export const ListTagsForResourceOutputFilterSensitiveLog = (obj) => ({
|
|
1926
|
-
...obj,
|
|
1927
|
-
});
|
|
1928
|
-
export const PutLifecycleEventHookExecutionStatusInputFilterSensitiveLog = (obj) => ({
|
|
1929
|
-
...obj,
|
|
1930
|
-
});
|
|
1931
|
-
export const PutLifecycleEventHookExecutionStatusOutputFilterSensitiveLog = (obj) => ({
|
|
1932
|
-
...obj,
|
|
1933
|
-
});
|
|
1934
|
-
export const RegisterApplicationRevisionInputFilterSensitiveLog = (obj) => ({
|
|
1935
|
-
...obj,
|
|
1936
|
-
});
|
|
1937
|
-
export const RegisterOnPremisesInstanceInputFilterSensitiveLog = (obj) => ({
|
|
1938
|
-
...obj,
|
|
1939
|
-
});
|
|
1940
|
-
export const RemoveTagsFromOnPremisesInstancesInputFilterSensitiveLog = (obj) => ({
|
|
1941
|
-
...obj,
|
|
1942
|
-
});
|
|
1943
|
-
export const SkipWaitTimeForInstanceTerminationInputFilterSensitiveLog = (obj) => ({
|
|
1944
|
-
...obj,
|
|
1945
|
-
});
|
|
1946
|
-
export const StopDeploymentInputFilterSensitiveLog = (obj) => ({
|
|
1947
|
-
...obj,
|
|
1948
|
-
});
|
|
1949
|
-
export const StopDeploymentOutputFilterSensitiveLog = (obj) => ({
|
|
1950
|
-
...obj,
|
|
1951
|
-
});
|
|
1952
|
-
export const TagResourceInputFilterSensitiveLog = (obj) => ({
|
|
1953
|
-
...obj,
|
|
1954
|
-
});
|
|
1955
|
-
export const TagResourceOutputFilterSensitiveLog = (obj) => ({
|
|
1956
|
-
...obj,
|
|
1957
|
-
});
|
|
1958
|
-
export const UntagResourceInputFilterSensitiveLog = (obj) => ({
|
|
1959
|
-
...obj,
|
|
1960
|
-
});
|
|
1961
|
-
export const UntagResourceOutputFilterSensitiveLog = (obj) => ({
|
|
1962
|
-
...obj,
|
|
1963
|
-
});
|
|
1964
|
-
export const UpdateApplicationInputFilterSensitiveLog = (obj) => ({
|
|
1965
|
-
...obj,
|
|
1966
|
-
});
|
|
1967
|
-
export const UpdateDeploymentGroupInputFilterSensitiveLog = (obj) => ({
|
|
1968
|
-
...obj,
|
|
1969
|
-
});
|
|
1970
|
-
export const UpdateDeploymentGroupOutputFilterSensitiveLog = (obj) => ({
|
|
1971
|
-
...obj,
|
|
1972
|
-
});
|
|
1560
|
+
export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1561
|
+
export var AddTagsToOnPremisesInstancesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1562
|
+
export var AlarmFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1563
|
+
export var AlarmConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1564
|
+
export var ApplicationInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1565
|
+
export var AppSpecContentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1566
|
+
export var AutoRollbackConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1567
|
+
export var AutoScalingGroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1568
|
+
export var GitHubLocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1569
|
+
export var S3LocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1570
|
+
export var RawStringFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1571
|
+
export var RevisionLocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1572
|
+
export var BatchGetApplicationRevisionsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1573
|
+
export var GenericRevisionInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1574
|
+
export var RevisionInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1575
|
+
export var BatchGetApplicationRevisionsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1576
|
+
export var BatchGetApplicationsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1577
|
+
export var BatchGetApplicationsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1578
|
+
export var BatchGetDeploymentGroupsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1579
|
+
export var DeploymentReadyOptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1580
|
+
export var GreenFleetProvisioningOptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1581
|
+
export var BlueInstanceTerminationOptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1582
|
+
export var BlueGreenDeploymentConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1583
|
+
export var DeploymentStyleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1584
|
+
export var EC2TagFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1585
|
+
export var EC2TagSetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1586
|
+
export var ECSServiceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1587
|
+
export var LastDeploymentInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1588
|
+
export var ELBInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1589
|
+
export var TargetGroupInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1590
|
+
export var TrafficRouteFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1591
|
+
export var TargetGroupPairInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1592
|
+
export var LoadBalancerInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1593
|
+
export var TagFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1594
|
+
export var OnPremisesTagSetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1595
|
+
export var TriggerConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1596
|
+
export var DeploymentGroupInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1597
|
+
export var BatchGetDeploymentGroupsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1598
|
+
export var BatchGetDeploymentInstancesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1599
|
+
export var DiagnosticsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1600
|
+
export var LifecycleEventFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1601
|
+
export var InstanceSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1602
|
+
export var BatchGetDeploymentInstancesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1603
|
+
export var BatchGetDeploymentsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1604
|
+
export var DeploymentOverviewFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1605
|
+
export var ErrorInformationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1606
|
+
export var RelatedDeploymentsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1607
|
+
export var RollbackInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1608
|
+
export var TargetInstancesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1609
|
+
export var DeploymentInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1610
|
+
export var BatchGetDeploymentsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1611
|
+
export var BatchGetDeploymentTargetsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1612
|
+
export var CloudFormationTargetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1613
|
+
export var ECSTaskSetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1614
|
+
export var ECSTargetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1615
|
+
export var InstanceTargetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1616
|
+
export var LambdaFunctionInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1617
|
+
export var LambdaTargetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1618
|
+
export var DeploymentTargetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1619
|
+
export var BatchGetDeploymentTargetsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1620
|
+
export var BatchGetOnPremisesInstancesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1621
|
+
export var InstanceInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1622
|
+
export var BatchGetOnPremisesInstancesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1623
|
+
export var ContinueDeploymentInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1624
|
+
export var CreateApplicationInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1625
|
+
export var CreateApplicationOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1626
|
+
export var CreateDeploymentInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1627
|
+
export var CreateDeploymentOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1628
|
+
export var MinimumHealthyHostsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1629
|
+
export var TimeBasedCanaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1630
|
+
export var TimeBasedLinearFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1631
|
+
export var TrafficRoutingConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1632
|
+
export var CreateDeploymentConfigInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1633
|
+
export var CreateDeploymentConfigOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1634
|
+
export var CreateDeploymentGroupInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1635
|
+
export var CreateDeploymentGroupOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1636
|
+
export var DeleteApplicationInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1637
|
+
export var DeleteDeploymentConfigInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1638
|
+
export var DeleteDeploymentGroupInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1639
|
+
export var DeleteDeploymentGroupOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1640
|
+
export var DeleteGitHubAccountTokenInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1641
|
+
export var DeleteGitHubAccountTokenOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1642
|
+
export var DeleteResourcesByExternalIdInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1643
|
+
export var DeleteResourcesByExternalIdOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1644
|
+
export var DeregisterOnPremisesInstanceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1645
|
+
export var GetApplicationInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1646
|
+
export var GetApplicationOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1647
|
+
export var GetApplicationRevisionInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1648
|
+
export var GetApplicationRevisionOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1649
|
+
export var GetDeploymentInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1650
|
+
export var GetDeploymentOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1651
|
+
export var GetDeploymentConfigInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1652
|
+
export var DeploymentConfigInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1653
|
+
export var GetDeploymentConfigOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1654
|
+
export var GetDeploymentGroupInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1655
|
+
export var GetDeploymentGroupOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1656
|
+
export var GetDeploymentInstanceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1657
|
+
export var GetDeploymentInstanceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1658
|
+
export var GetDeploymentTargetInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1659
|
+
export var GetDeploymentTargetOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1660
|
+
export var GetOnPremisesInstanceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1661
|
+
export var GetOnPremisesInstanceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1662
|
+
export var ListApplicationRevisionsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1663
|
+
export var ListApplicationRevisionsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1664
|
+
export var ListApplicationsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1665
|
+
export var ListApplicationsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1666
|
+
export var ListDeploymentConfigsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1667
|
+
export var ListDeploymentConfigsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1668
|
+
export var ListDeploymentGroupsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1669
|
+
export var ListDeploymentGroupsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1670
|
+
export var ListDeploymentInstancesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1671
|
+
export var ListDeploymentInstancesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1672
|
+
export var TimeRangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1673
|
+
export var ListDeploymentsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1674
|
+
export var ListDeploymentsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1675
|
+
export var ListDeploymentTargetsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1676
|
+
export var ListDeploymentTargetsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1677
|
+
export var ListGitHubAccountTokenNamesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1678
|
+
export var ListGitHubAccountTokenNamesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1679
|
+
export var ListOnPremisesInstancesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1680
|
+
export var ListOnPremisesInstancesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1681
|
+
export var ListTagsForResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1682
|
+
export var ListTagsForResourceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1683
|
+
export var PutLifecycleEventHookExecutionStatusInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1684
|
+
export var PutLifecycleEventHookExecutionStatusOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1685
|
+
export var RegisterApplicationRevisionInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1686
|
+
export var RegisterOnPremisesInstanceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1687
|
+
export var RemoveTagsFromOnPremisesInstancesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1688
|
+
export var SkipWaitTimeForInstanceTerminationInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1689
|
+
export var StopDeploymentInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1690
|
+
export var StopDeploymentOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1691
|
+
export var TagResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1692
|
+
export var TagResourceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1693
|
+
export var UntagResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1694
|
+
export var UntagResourceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1695
|
+
export var UpdateApplicationInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1696
|
+
export var UpdateDeploymentGroupInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1697
|
+
export var UpdateDeploymentGroupOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|