@aws-sdk/client-codedeploy 3.170.0 → 3.171.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 +8 -0
- package/dist-types/ts3.4/CodeDeploy.d.ts +0 -47
- package/dist-types/ts3.4/CodeDeployClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/AddTagsToOnPremisesInstancesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/BatchGetApplicationRevisionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/BatchGetApplicationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/BatchGetDeploymentGroupsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/BatchGetDeploymentInstancesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/BatchGetDeploymentTargetsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/BatchGetDeploymentsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/BatchGetOnPremisesInstancesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ContinueDeploymentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateDeploymentConfigCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateDeploymentGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteDeploymentConfigCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteDeploymentGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteGitHubAccountTokenCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteResourcesByExternalIdCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeregisterOnPremisesInstanceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetApplicationRevisionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetDeploymentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetDeploymentConfigCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetDeploymentGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetDeploymentInstanceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetDeploymentTargetCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetOnPremisesInstanceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListApplicationRevisionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListDeploymentConfigsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListDeploymentGroupsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListDeploymentInstancesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListDeploymentTargetsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListDeploymentsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListGitHubAccountTokenNamesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListOnPremisesInstancesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutLifecycleEventHookExecutionStatusCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RegisterApplicationRevisionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RegisterOnPremisesInstanceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RemoveTagsFromOnPremisesInstancesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/SkipWaitTimeForInstanceTerminationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StopDeploymentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateDeploymentGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/CodeDeployServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -757
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/dist-types/ts3.4/waiters/waitForDeploymentSuccessful.d.ts +0 -2
- package/package.json +27 -27
|
@@ -1,106 +1,80 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { CodeDeployServiceException as __BaseException } from "./CodeDeployServiceException";
|
|
3
|
-
|
|
4
3
|
export interface Tag {
|
|
5
4
|
Key?: string;
|
|
6
|
-
|
|
7
5
|
Value?: string;
|
|
8
6
|
}
|
|
9
|
-
|
|
10
7
|
export interface AddTagsToOnPremisesInstancesInput {
|
|
11
8
|
tags: Tag[] | undefined;
|
|
12
|
-
|
|
13
9
|
instanceNames: string[] | undefined;
|
|
14
10
|
}
|
|
15
|
-
|
|
16
11
|
export declare class InstanceLimitExceededException extends __BaseException {
|
|
17
12
|
readonly name: "InstanceLimitExceededException";
|
|
18
13
|
readonly $fault: "client";
|
|
19
|
-
|
|
20
14
|
constructor(
|
|
21
15
|
opts: __ExceptionOptionType<InstanceLimitExceededException, __BaseException>
|
|
22
16
|
);
|
|
23
17
|
}
|
|
24
|
-
|
|
25
18
|
export declare class InstanceNameRequiredException extends __BaseException {
|
|
26
19
|
readonly name: "InstanceNameRequiredException";
|
|
27
20
|
readonly $fault: "client";
|
|
28
|
-
|
|
29
21
|
constructor(
|
|
30
22
|
opts: __ExceptionOptionType<InstanceNameRequiredException, __BaseException>
|
|
31
23
|
);
|
|
32
24
|
}
|
|
33
|
-
|
|
34
25
|
export declare class InstanceNotRegisteredException extends __BaseException {
|
|
35
26
|
readonly name: "InstanceNotRegisteredException";
|
|
36
27
|
readonly $fault: "client";
|
|
37
|
-
|
|
38
28
|
constructor(
|
|
39
29
|
opts: __ExceptionOptionType<InstanceNotRegisteredException, __BaseException>
|
|
40
30
|
);
|
|
41
31
|
}
|
|
42
|
-
|
|
43
32
|
export declare class InvalidInstanceNameException extends __BaseException {
|
|
44
33
|
readonly name: "InvalidInstanceNameException";
|
|
45
34
|
readonly $fault: "client";
|
|
46
|
-
|
|
47
35
|
constructor(
|
|
48
36
|
opts: __ExceptionOptionType<InvalidInstanceNameException, __BaseException>
|
|
49
37
|
);
|
|
50
38
|
}
|
|
51
|
-
|
|
52
39
|
export declare class InvalidTagException extends __BaseException {
|
|
53
40
|
readonly name: "InvalidTagException";
|
|
54
41
|
readonly $fault: "client";
|
|
55
|
-
|
|
56
42
|
constructor(
|
|
57
43
|
opts: __ExceptionOptionType<InvalidTagException, __BaseException>
|
|
58
44
|
);
|
|
59
45
|
}
|
|
60
|
-
|
|
61
46
|
export declare class TagLimitExceededException extends __BaseException {
|
|
62
47
|
readonly name: "TagLimitExceededException";
|
|
63
48
|
readonly $fault: "client";
|
|
64
|
-
|
|
65
49
|
constructor(
|
|
66
50
|
opts: __ExceptionOptionType<TagLimitExceededException, __BaseException>
|
|
67
51
|
);
|
|
68
52
|
}
|
|
69
|
-
|
|
70
53
|
export declare class TagRequiredException extends __BaseException {
|
|
71
54
|
readonly name: "TagRequiredException";
|
|
72
55
|
readonly $fault: "client";
|
|
73
|
-
|
|
74
56
|
constructor(
|
|
75
57
|
opts: __ExceptionOptionType<TagRequiredException, __BaseException>
|
|
76
58
|
);
|
|
77
59
|
}
|
|
78
|
-
|
|
79
60
|
export interface Alarm {
|
|
80
61
|
name?: string;
|
|
81
62
|
}
|
|
82
|
-
|
|
83
63
|
export interface AlarmConfiguration {
|
|
84
64
|
enabled?: boolean;
|
|
85
|
-
|
|
86
65
|
ignorePollAlarmFailure?: boolean;
|
|
87
|
-
|
|
88
66
|
alarms?: Alarm[];
|
|
89
67
|
}
|
|
90
|
-
|
|
91
68
|
export declare class AlarmsLimitExceededException extends __BaseException {
|
|
92
69
|
readonly name: "AlarmsLimitExceededException";
|
|
93
70
|
readonly $fault: "client";
|
|
94
|
-
|
|
95
71
|
constructor(
|
|
96
72
|
opts: __ExceptionOptionType<AlarmsLimitExceededException, __BaseException>
|
|
97
73
|
);
|
|
98
74
|
}
|
|
99
|
-
|
|
100
75
|
export declare class ApplicationAlreadyExistsException extends __BaseException {
|
|
101
76
|
readonly name: "ApplicationAlreadyExistsException";
|
|
102
77
|
readonly $fault: "client";
|
|
103
|
-
|
|
104
78
|
constructor(
|
|
105
79
|
opts: __ExceptionOptionType<
|
|
106
80
|
ApplicationAlreadyExistsException,
|
|
@@ -108,11 +82,9 @@ export declare class ApplicationAlreadyExistsException extends __BaseException {
|
|
|
108
82
|
>
|
|
109
83
|
);
|
|
110
84
|
}
|
|
111
|
-
|
|
112
85
|
export declare class ApplicationDoesNotExistException extends __BaseException {
|
|
113
86
|
readonly name: "ApplicationDoesNotExistException";
|
|
114
87
|
readonly $fault: "client";
|
|
115
|
-
|
|
116
88
|
constructor(
|
|
117
89
|
opts: __ExceptionOptionType<
|
|
118
90
|
ApplicationDoesNotExistException,
|
|
@@ -125,25 +97,17 @@ export declare enum ComputePlatform {
|
|
|
125
97
|
LAMBDA = "Lambda",
|
|
126
98
|
SERVER = "Server",
|
|
127
99
|
}
|
|
128
|
-
|
|
129
100
|
export interface ApplicationInfo {
|
|
130
101
|
applicationId?: string;
|
|
131
|
-
|
|
132
102
|
applicationName?: string;
|
|
133
|
-
|
|
134
103
|
createTime?: Date;
|
|
135
|
-
|
|
136
104
|
linkedToGitHub?: boolean;
|
|
137
|
-
|
|
138
105
|
gitHubAccountName?: string;
|
|
139
|
-
|
|
140
106
|
computePlatform?: ComputePlatform | string;
|
|
141
107
|
}
|
|
142
|
-
|
|
143
108
|
export declare class ApplicationLimitExceededException extends __BaseException {
|
|
144
109
|
readonly name: "ApplicationLimitExceededException";
|
|
145
110
|
readonly $fault: "client";
|
|
146
|
-
|
|
147
111
|
constructor(
|
|
148
112
|
opts: __ExceptionOptionType<
|
|
149
113
|
ApplicationLimitExceededException,
|
|
@@ -151,11 +115,9 @@ export declare class ApplicationLimitExceededException extends __BaseException {
|
|
|
151
115
|
>
|
|
152
116
|
);
|
|
153
117
|
}
|
|
154
|
-
|
|
155
118
|
export declare class ApplicationNameRequiredException extends __BaseException {
|
|
156
119
|
readonly name: "ApplicationNameRequiredException";
|
|
157
120
|
readonly $fault: "client";
|
|
158
|
-
|
|
159
121
|
constructor(
|
|
160
122
|
opts: __ExceptionOptionType<
|
|
161
123
|
ApplicationNameRequiredException,
|
|
@@ -168,17 +130,13 @@ export declare enum ApplicationRevisionSortBy {
|
|
|
168
130
|
LastUsedTime = "lastUsedTime",
|
|
169
131
|
RegisterTime = "registerTime",
|
|
170
132
|
}
|
|
171
|
-
|
|
172
133
|
export interface AppSpecContent {
|
|
173
134
|
content?: string;
|
|
174
|
-
|
|
175
135
|
sha256?: string;
|
|
176
136
|
}
|
|
177
|
-
|
|
178
137
|
export declare class ArnNotSupportedException extends __BaseException {
|
|
179
138
|
readonly name: "ArnNotSupportedException";
|
|
180
139
|
readonly $fault: "client";
|
|
181
|
-
|
|
182
140
|
constructor(
|
|
183
141
|
opts: __ExceptionOptionType<ArnNotSupportedException, __BaseException>
|
|
184
142
|
);
|
|
@@ -188,22 +146,16 @@ export declare enum AutoRollbackEvent {
|
|
|
188
146
|
DEPLOYMENT_STOP_ON_ALARM = "DEPLOYMENT_STOP_ON_ALARM",
|
|
189
147
|
DEPLOYMENT_STOP_ON_REQUEST = "DEPLOYMENT_STOP_ON_REQUEST",
|
|
190
148
|
}
|
|
191
|
-
|
|
192
149
|
export interface AutoRollbackConfiguration {
|
|
193
150
|
enabled?: boolean;
|
|
194
|
-
|
|
195
151
|
events?: (AutoRollbackEvent | string)[];
|
|
196
152
|
}
|
|
197
|
-
|
|
198
153
|
export interface AutoScalingGroup {
|
|
199
154
|
name?: string;
|
|
200
|
-
|
|
201
155
|
hook?: string;
|
|
202
156
|
}
|
|
203
|
-
|
|
204
157
|
export interface GitHubLocation {
|
|
205
158
|
repository?: string;
|
|
206
|
-
|
|
207
159
|
commitId?: string;
|
|
208
160
|
}
|
|
209
161
|
export declare enum RevisionLocationType {
|
|
@@ -219,82 +171,54 @@ export declare enum BundleType {
|
|
|
219
171
|
YAML = "YAML",
|
|
220
172
|
Zip = "zip",
|
|
221
173
|
}
|
|
222
|
-
|
|
223
174
|
export interface S3Location {
|
|
224
175
|
bucket?: string;
|
|
225
|
-
|
|
226
176
|
key?: string;
|
|
227
|
-
|
|
228
177
|
bundleType?: BundleType | string;
|
|
229
|
-
|
|
230
178
|
version?: string;
|
|
231
|
-
|
|
232
179
|
eTag?: string;
|
|
233
180
|
}
|
|
234
|
-
|
|
235
181
|
export interface RawString {
|
|
236
182
|
content?: string;
|
|
237
|
-
|
|
238
183
|
sha256?: string;
|
|
239
184
|
}
|
|
240
|
-
|
|
241
185
|
export interface RevisionLocation {
|
|
242
186
|
revisionType?: RevisionLocationType | string;
|
|
243
|
-
|
|
244
187
|
s3Location?: S3Location;
|
|
245
|
-
|
|
246
188
|
gitHubLocation?: GitHubLocation;
|
|
247
|
-
|
|
248
189
|
string?: RawString;
|
|
249
|
-
|
|
250
190
|
appSpecContent?: AppSpecContent;
|
|
251
191
|
}
|
|
252
|
-
|
|
253
192
|
export interface BatchGetApplicationRevisionsInput {
|
|
254
193
|
applicationName: string | undefined;
|
|
255
|
-
|
|
256
194
|
revisions: RevisionLocation[] | undefined;
|
|
257
195
|
}
|
|
258
|
-
|
|
259
196
|
export interface GenericRevisionInfo {
|
|
260
197
|
description?: string;
|
|
261
|
-
|
|
262
198
|
deploymentGroups?: string[];
|
|
263
|
-
|
|
264
199
|
firstUsedTime?: Date;
|
|
265
|
-
|
|
266
200
|
lastUsedTime?: Date;
|
|
267
|
-
|
|
268
201
|
registerTime?: Date;
|
|
269
202
|
}
|
|
270
|
-
|
|
271
203
|
export interface RevisionInfo {
|
|
272
204
|
revisionLocation?: RevisionLocation;
|
|
273
|
-
|
|
274
205
|
genericRevisionInfo?: GenericRevisionInfo;
|
|
275
206
|
}
|
|
276
|
-
|
|
277
207
|
export interface BatchGetApplicationRevisionsOutput {
|
|
278
208
|
applicationName?: string;
|
|
279
|
-
|
|
280
209
|
errorMessage?: string;
|
|
281
|
-
|
|
282
210
|
revisions?: RevisionInfo[];
|
|
283
211
|
}
|
|
284
|
-
|
|
285
212
|
export declare class BatchLimitExceededException extends __BaseException {
|
|
286
213
|
readonly name: "BatchLimitExceededException";
|
|
287
214
|
readonly $fault: "client";
|
|
288
|
-
|
|
289
215
|
constructor(
|
|
290
216
|
opts: __ExceptionOptionType<BatchLimitExceededException, __BaseException>
|
|
291
217
|
);
|
|
292
218
|
}
|
|
293
|
-
|
|
294
219
|
export declare class InvalidApplicationNameException extends __BaseException {
|
|
295
220
|
readonly name: "InvalidApplicationNameException";
|
|
296
221
|
readonly $fault: "client";
|
|
297
|
-
|
|
298
222
|
constructor(
|
|
299
223
|
opts: __ExceptionOptionType<
|
|
300
224
|
InvalidApplicationNameException,
|
|
@@ -302,53 +226,42 @@ export declare class InvalidApplicationNameException extends __BaseException {
|
|
|
302
226
|
>
|
|
303
227
|
);
|
|
304
228
|
}
|
|
305
|
-
|
|
306
229
|
export declare class InvalidRevisionException extends __BaseException {
|
|
307
230
|
readonly name: "InvalidRevisionException";
|
|
308
231
|
readonly $fault: "client";
|
|
309
|
-
|
|
310
232
|
constructor(
|
|
311
233
|
opts: __ExceptionOptionType<InvalidRevisionException, __BaseException>
|
|
312
234
|
);
|
|
313
235
|
}
|
|
314
|
-
|
|
315
236
|
export declare class RevisionRequiredException extends __BaseException {
|
|
316
237
|
readonly name: "RevisionRequiredException";
|
|
317
238
|
readonly $fault: "client";
|
|
318
|
-
|
|
319
239
|
constructor(
|
|
320
240
|
opts: __ExceptionOptionType<RevisionRequiredException, __BaseException>
|
|
321
241
|
);
|
|
322
242
|
}
|
|
323
|
-
|
|
324
243
|
export interface BatchGetApplicationsInput {
|
|
325
244
|
applicationNames: string[] | undefined;
|
|
326
245
|
}
|
|
327
|
-
|
|
328
246
|
export interface BatchGetApplicationsOutput {
|
|
329
247
|
applicationsInfo?: ApplicationInfo[];
|
|
330
248
|
}
|
|
331
|
-
|
|
332
249
|
export interface BatchGetDeploymentGroupsInput {
|
|
333
250
|
applicationName: string | undefined;
|
|
334
|
-
|
|
335
251
|
deploymentGroupNames: string[] | undefined;
|
|
336
252
|
}
|
|
337
253
|
export declare enum DeploymentReadyAction {
|
|
338
254
|
CONTINUE_DEPLOYMENT = "CONTINUE_DEPLOYMENT",
|
|
339
255
|
STOP_DEPLOYMENT = "STOP_DEPLOYMENT",
|
|
340
256
|
}
|
|
341
|
-
|
|
342
257
|
export interface DeploymentReadyOption {
|
|
343
258
|
actionOnTimeout?: DeploymentReadyAction | string;
|
|
344
|
-
|
|
345
259
|
waitTimeInMinutes?: number;
|
|
346
260
|
}
|
|
347
261
|
export declare enum GreenFleetProvisioningAction {
|
|
348
262
|
COPY_AUTO_SCALING_GROUP = "COPY_AUTO_SCALING_GROUP",
|
|
349
263
|
DISCOVER_EXISTING = "DISCOVER_EXISTING",
|
|
350
264
|
}
|
|
351
|
-
|
|
352
265
|
export interface GreenFleetProvisioningOption {
|
|
353
266
|
action?: GreenFleetProvisioningAction | string;
|
|
354
267
|
}
|
|
@@ -356,18 +269,13 @@ export declare enum InstanceAction {
|
|
|
356
269
|
KEEP_ALIVE = "KEEP_ALIVE",
|
|
357
270
|
TERMINATE = "TERMINATE",
|
|
358
271
|
}
|
|
359
|
-
|
|
360
272
|
export interface BlueInstanceTerminationOption {
|
|
361
273
|
action?: InstanceAction | string;
|
|
362
|
-
|
|
363
274
|
terminationWaitTimeInMinutes?: number;
|
|
364
275
|
}
|
|
365
|
-
|
|
366
276
|
export interface BlueGreenDeploymentConfiguration {
|
|
367
277
|
terminateBlueInstancesOnDeploymentSuccess?: BlueInstanceTerminationOption;
|
|
368
|
-
|
|
369
278
|
deploymentReadyOption?: DeploymentReadyOption;
|
|
370
|
-
|
|
371
279
|
greenFleetProvisioningOption?: GreenFleetProvisioningOption;
|
|
372
280
|
}
|
|
373
281
|
export declare enum DeploymentOption {
|
|
@@ -378,10 +286,8 @@ export declare enum DeploymentType {
|
|
|
378
286
|
BLUE_GREEN = "BLUE_GREEN",
|
|
379
287
|
IN_PLACE = "IN_PLACE",
|
|
380
288
|
}
|
|
381
|
-
|
|
382
289
|
export interface DeploymentStyle {
|
|
383
290
|
deploymentType?: DeploymentType | string;
|
|
384
|
-
|
|
385
291
|
deploymentOption?: DeploymentOption | string;
|
|
386
292
|
}
|
|
387
293
|
export declare enum EC2TagFilterType {
|
|
@@ -389,22 +295,16 @@ export declare enum EC2TagFilterType {
|
|
|
389
295
|
KEY_ONLY = "KEY_ONLY",
|
|
390
296
|
VALUE_ONLY = "VALUE_ONLY",
|
|
391
297
|
}
|
|
392
|
-
|
|
393
298
|
export interface EC2TagFilter {
|
|
394
299
|
Key?: string;
|
|
395
|
-
|
|
396
300
|
Value?: string;
|
|
397
|
-
|
|
398
301
|
Type?: EC2TagFilterType | string;
|
|
399
302
|
}
|
|
400
|
-
|
|
401
303
|
export interface EC2TagSet {
|
|
402
304
|
ec2TagSetList?: EC2TagFilter[][];
|
|
403
305
|
}
|
|
404
|
-
|
|
405
306
|
export interface ECSService {
|
|
406
307
|
serviceName?: string;
|
|
407
|
-
|
|
408
308
|
clusterName?: string;
|
|
409
309
|
}
|
|
410
310
|
export declare enum DeploymentStatus {
|
|
@@ -417,42 +317,29 @@ export declare enum DeploymentStatus {
|
|
|
417
317
|
STOPPED = "Stopped",
|
|
418
318
|
SUCCEEDED = "Succeeded",
|
|
419
319
|
}
|
|
420
|
-
|
|
421
320
|
export interface LastDeploymentInfo {
|
|
422
321
|
deploymentId?: string;
|
|
423
|
-
|
|
424
322
|
status?: DeploymentStatus | string;
|
|
425
|
-
|
|
426
323
|
endTime?: Date;
|
|
427
|
-
|
|
428
324
|
createTime?: Date;
|
|
429
325
|
}
|
|
430
|
-
|
|
431
326
|
export interface ELBInfo {
|
|
432
327
|
name?: string;
|
|
433
328
|
}
|
|
434
|
-
|
|
435
329
|
export interface TargetGroupInfo {
|
|
436
330
|
name?: string;
|
|
437
331
|
}
|
|
438
|
-
|
|
439
332
|
export interface TrafficRoute {
|
|
440
333
|
listenerArns?: string[];
|
|
441
334
|
}
|
|
442
|
-
|
|
443
335
|
export interface TargetGroupPairInfo {
|
|
444
336
|
targetGroups?: TargetGroupInfo[];
|
|
445
|
-
|
|
446
337
|
prodTrafficRoute?: TrafficRoute;
|
|
447
|
-
|
|
448
338
|
testTrafficRoute?: TrafficRoute;
|
|
449
339
|
}
|
|
450
|
-
|
|
451
340
|
export interface LoadBalancerInfo {
|
|
452
341
|
elbInfoList?: ELBInfo[];
|
|
453
|
-
|
|
454
342
|
targetGroupInfoList?: TargetGroupInfo[];
|
|
455
|
-
|
|
456
343
|
targetGroupPairInfoList?: TargetGroupPairInfo[];
|
|
457
344
|
}
|
|
458
345
|
export declare enum TagFilterType {
|
|
@@ -460,15 +347,11 @@ export declare enum TagFilterType {
|
|
|
460
347
|
KEY_ONLY = "KEY_ONLY",
|
|
461
348
|
VALUE_ONLY = "VALUE_ONLY",
|
|
462
349
|
}
|
|
463
|
-
|
|
464
350
|
export interface TagFilter {
|
|
465
351
|
Key?: string;
|
|
466
|
-
|
|
467
352
|
Value?: string;
|
|
468
|
-
|
|
469
353
|
Type?: TagFilterType | string;
|
|
470
354
|
}
|
|
471
|
-
|
|
472
355
|
export interface OnPremisesTagSet {
|
|
473
356
|
onPremisesTagSetList?: TagFilter[][];
|
|
474
357
|
}
|
|
@@ -488,71 +371,42 @@ export declare enum TriggerEventType {
|
|
|
488
371
|
INSTANCE_START = "InstanceStart",
|
|
489
372
|
INSTANCE_SUCCESS = "InstanceSuccess",
|
|
490
373
|
}
|
|
491
|
-
|
|
492
374
|
export interface TriggerConfig {
|
|
493
375
|
triggerName?: string;
|
|
494
|
-
|
|
495
376
|
triggerTargetArn?: string;
|
|
496
|
-
|
|
497
377
|
triggerEvents?: (TriggerEventType | string)[];
|
|
498
378
|
}
|
|
499
|
-
|
|
500
379
|
export interface DeploymentGroupInfo {
|
|
501
380
|
applicationName?: string;
|
|
502
|
-
|
|
503
381
|
deploymentGroupId?: string;
|
|
504
|
-
|
|
505
382
|
deploymentGroupName?: string;
|
|
506
|
-
|
|
507
383
|
deploymentConfigName?: string;
|
|
508
|
-
|
|
509
384
|
ec2TagFilters?: EC2TagFilter[];
|
|
510
|
-
|
|
511
385
|
onPremisesInstanceTagFilters?: TagFilter[];
|
|
512
|
-
|
|
513
386
|
autoScalingGroups?: AutoScalingGroup[];
|
|
514
|
-
|
|
515
387
|
serviceRoleArn?: string;
|
|
516
|
-
|
|
517
388
|
targetRevision?: RevisionLocation;
|
|
518
|
-
|
|
519
389
|
triggerConfigurations?: TriggerConfig[];
|
|
520
|
-
|
|
521
390
|
alarmConfiguration?: AlarmConfiguration;
|
|
522
|
-
|
|
523
391
|
autoRollbackConfiguration?: AutoRollbackConfiguration;
|
|
524
|
-
|
|
525
392
|
deploymentStyle?: DeploymentStyle;
|
|
526
|
-
|
|
527
393
|
outdatedInstancesStrategy?: OutdatedInstancesStrategy | string;
|
|
528
|
-
|
|
529
394
|
blueGreenDeploymentConfiguration?: BlueGreenDeploymentConfiguration;
|
|
530
|
-
|
|
531
395
|
loadBalancerInfo?: LoadBalancerInfo;
|
|
532
|
-
|
|
533
396
|
lastSuccessfulDeployment?: LastDeploymentInfo;
|
|
534
|
-
|
|
535
397
|
lastAttemptedDeployment?: LastDeploymentInfo;
|
|
536
|
-
|
|
537
398
|
ec2TagSet?: EC2TagSet;
|
|
538
|
-
|
|
539
399
|
onPremisesTagSet?: OnPremisesTagSet;
|
|
540
|
-
|
|
541
400
|
computePlatform?: ComputePlatform | string;
|
|
542
|
-
|
|
543
401
|
ecsServices?: ECSService[];
|
|
544
402
|
}
|
|
545
|
-
|
|
546
403
|
export interface BatchGetDeploymentGroupsOutput {
|
|
547
404
|
deploymentGroupsInfo?: DeploymentGroupInfo[];
|
|
548
|
-
|
|
549
405
|
errorMessage?: string;
|
|
550
406
|
}
|
|
551
|
-
|
|
552
407
|
export declare class DeploymentConfigDoesNotExistException extends __BaseException {
|
|
553
408
|
readonly name: "DeploymentConfigDoesNotExistException";
|
|
554
409
|
readonly $fault: "client";
|
|
555
|
-
|
|
556
410
|
constructor(
|
|
557
411
|
opts: __ExceptionOptionType<
|
|
558
412
|
DeploymentConfigDoesNotExistException,
|
|
@@ -560,11 +414,9 @@ export declare class DeploymentConfigDoesNotExistException extends __BaseExcepti
|
|
|
560
414
|
>
|
|
561
415
|
);
|
|
562
416
|
}
|
|
563
|
-
|
|
564
417
|
export declare class DeploymentGroupNameRequiredException extends __BaseException {
|
|
565
418
|
readonly name: "DeploymentGroupNameRequiredException";
|
|
566
419
|
readonly $fault: "client";
|
|
567
|
-
|
|
568
420
|
constructor(
|
|
569
421
|
opts: __ExceptionOptionType<
|
|
570
422
|
DeploymentGroupNameRequiredException,
|
|
@@ -572,11 +424,9 @@ export declare class DeploymentGroupNameRequiredException extends __BaseExceptio
|
|
|
572
424
|
>
|
|
573
425
|
);
|
|
574
426
|
}
|
|
575
|
-
|
|
576
427
|
export declare class InvalidDeploymentGroupNameException extends __BaseException {
|
|
577
428
|
readonly name: "InvalidDeploymentGroupNameException";
|
|
578
429
|
readonly $fault: "client";
|
|
579
|
-
|
|
580
430
|
constructor(
|
|
581
431
|
opts: __ExceptionOptionType<
|
|
582
432
|
InvalidDeploymentGroupNameException,
|
|
@@ -584,10 +434,8 @@ export declare class InvalidDeploymentGroupNameException extends __BaseException
|
|
|
584
434
|
>
|
|
585
435
|
);
|
|
586
436
|
}
|
|
587
|
-
|
|
588
437
|
export interface BatchGetDeploymentInstancesInput {
|
|
589
438
|
deploymentId: string | undefined;
|
|
590
|
-
|
|
591
439
|
instanceIds: string[] | undefined;
|
|
592
440
|
}
|
|
593
441
|
export declare enum _InstanceType {
|
|
@@ -602,14 +450,10 @@ export declare enum LifecycleErrorCode {
|
|
|
602
450
|
SUCCESS = "Success",
|
|
603
451
|
UNKNOWN_ERROR = "UnknownError",
|
|
604
452
|
}
|
|
605
|
-
|
|
606
453
|
export interface Diagnostics {
|
|
607
454
|
errorCode?: LifecycleErrorCode | string;
|
|
608
|
-
|
|
609
455
|
scriptName?: string;
|
|
610
|
-
|
|
611
456
|
message?: string;
|
|
612
|
-
|
|
613
457
|
logTail?: string;
|
|
614
458
|
}
|
|
615
459
|
export declare enum LifecycleEventStatus {
|
|
@@ -620,16 +464,11 @@ export declare enum LifecycleEventStatus {
|
|
|
620
464
|
SUCCEEDED = "Succeeded",
|
|
621
465
|
UNKNOWN = "Unknown",
|
|
622
466
|
}
|
|
623
|
-
|
|
624
467
|
export interface LifecycleEvent {
|
|
625
468
|
lifecycleEventName?: string;
|
|
626
|
-
|
|
627
469
|
diagnostics?: Diagnostics;
|
|
628
|
-
|
|
629
470
|
startTime?: Date;
|
|
630
|
-
|
|
631
471
|
endTime?: Date;
|
|
632
|
-
|
|
633
472
|
status?: LifecycleEventStatus | string;
|
|
634
473
|
}
|
|
635
474
|
export declare enum InstanceStatus {
|
|
@@ -641,31 +480,21 @@ export declare enum InstanceStatus {
|
|
|
641
480
|
SUCCEEDED = "Succeeded",
|
|
642
481
|
UNKNOWN = "Unknown",
|
|
643
482
|
}
|
|
644
|
-
|
|
645
483
|
export interface InstanceSummary {
|
|
646
484
|
deploymentId?: string;
|
|
647
|
-
|
|
648
485
|
instanceId?: string;
|
|
649
|
-
|
|
650
486
|
status?: InstanceStatus | string;
|
|
651
|
-
|
|
652
487
|
lastUpdatedAt?: Date;
|
|
653
|
-
|
|
654
488
|
lifecycleEvents?: LifecycleEvent[];
|
|
655
|
-
|
|
656
489
|
instanceType?: _InstanceType | string;
|
|
657
490
|
}
|
|
658
|
-
|
|
659
491
|
export interface BatchGetDeploymentInstancesOutput {
|
|
660
492
|
instancesSummary?: InstanceSummary[];
|
|
661
|
-
|
|
662
493
|
errorMessage?: string;
|
|
663
494
|
}
|
|
664
|
-
|
|
665
495
|
export declare class DeploymentDoesNotExistException extends __BaseException {
|
|
666
496
|
readonly name: "DeploymentDoesNotExistException";
|
|
667
497
|
readonly $fault: "client";
|
|
668
|
-
|
|
669
498
|
constructor(
|
|
670
499
|
opts: __ExceptionOptionType<
|
|
671
500
|
DeploymentDoesNotExistException,
|
|
@@ -673,29 +502,23 @@ export declare class DeploymentDoesNotExistException extends __BaseException {
|
|
|
673
502
|
>
|
|
674
503
|
);
|
|
675
504
|
}
|
|
676
|
-
|
|
677
505
|
export declare class DeploymentIdRequiredException extends __BaseException {
|
|
678
506
|
readonly name: "DeploymentIdRequiredException";
|
|
679
507
|
readonly $fault: "client";
|
|
680
|
-
|
|
681
508
|
constructor(
|
|
682
509
|
opts: __ExceptionOptionType<DeploymentIdRequiredException, __BaseException>
|
|
683
510
|
);
|
|
684
511
|
}
|
|
685
|
-
|
|
686
512
|
export declare class InstanceIdRequiredException extends __BaseException {
|
|
687
513
|
readonly name: "InstanceIdRequiredException";
|
|
688
514
|
readonly $fault: "client";
|
|
689
|
-
|
|
690
515
|
constructor(
|
|
691
516
|
opts: __ExceptionOptionType<InstanceIdRequiredException, __BaseException>
|
|
692
517
|
);
|
|
693
518
|
}
|
|
694
|
-
|
|
695
519
|
export declare class InvalidComputePlatformException extends __BaseException {
|
|
696
520
|
readonly name: "InvalidComputePlatformException";
|
|
697
521
|
readonly $fault: "client";
|
|
698
|
-
|
|
699
522
|
constructor(
|
|
700
523
|
opts: __ExceptionOptionType<
|
|
701
524
|
InvalidComputePlatformException,
|
|
@@ -703,16 +526,13 @@ export declare class InvalidComputePlatformException extends __BaseException {
|
|
|
703
526
|
>
|
|
704
527
|
);
|
|
705
528
|
}
|
|
706
|
-
|
|
707
529
|
export declare class InvalidDeploymentIdException extends __BaseException {
|
|
708
530
|
readonly name: "InvalidDeploymentIdException";
|
|
709
531
|
readonly $fault: "client";
|
|
710
|
-
|
|
711
532
|
constructor(
|
|
712
533
|
opts: __ExceptionOptionType<InvalidDeploymentIdException, __BaseException>
|
|
713
534
|
);
|
|
714
535
|
}
|
|
715
|
-
|
|
716
536
|
export interface BatchGetDeploymentsInput {
|
|
717
537
|
deploymentIds: string[] | undefined;
|
|
718
538
|
}
|
|
@@ -725,18 +545,12 @@ export declare enum DeploymentCreator {
|
|
|
725
545
|
CodeDeployRollback = "codeDeployRollback",
|
|
726
546
|
User = "user",
|
|
727
547
|
}
|
|
728
|
-
|
|
729
548
|
export interface DeploymentOverview {
|
|
730
549
|
Pending?: number;
|
|
731
|
-
|
|
732
550
|
InProgress?: number;
|
|
733
|
-
|
|
734
551
|
Succeeded?: number;
|
|
735
|
-
|
|
736
552
|
Failed?: number;
|
|
737
|
-
|
|
738
553
|
Skipped?: number;
|
|
739
|
-
|
|
740
554
|
Ready?: number;
|
|
741
555
|
}
|
|
742
556
|
export declare enum ErrorCode {
|
|
@@ -775,10 +589,8 @@ export declare enum ErrorCode {
|
|
|
775
589
|
THROTTLED = "THROTTLED",
|
|
776
590
|
TIMEOUT = "TIMEOUT",
|
|
777
591
|
}
|
|
778
|
-
|
|
779
592
|
export interface ErrorInformation {
|
|
780
593
|
code?: ErrorCode | string;
|
|
781
|
-
|
|
782
594
|
message?: string;
|
|
783
595
|
}
|
|
784
596
|
export declare enum FileExistsBehavior {
|
|
@@ -786,95 +598,56 @@ export declare enum FileExistsBehavior {
|
|
|
786
598
|
OVERWRITE = "OVERWRITE",
|
|
787
599
|
RETAIN = "RETAIN",
|
|
788
600
|
}
|
|
789
|
-
|
|
790
601
|
export interface RelatedDeployments {
|
|
791
602
|
autoUpdateOutdatedInstancesRootDeploymentId?: string;
|
|
792
|
-
|
|
793
603
|
autoUpdateOutdatedInstancesDeploymentIds?: string[];
|
|
794
604
|
}
|
|
795
|
-
|
|
796
605
|
export interface RollbackInfo {
|
|
797
606
|
rollbackDeploymentId?: string;
|
|
798
|
-
|
|
799
607
|
rollbackTriggeringDeploymentId?: string;
|
|
800
|
-
|
|
801
608
|
rollbackMessage?: string;
|
|
802
609
|
}
|
|
803
|
-
|
|
804
610
|
export interface TargetInstances {
|
|
805
611
|
tagFilters?: EC2TagFilter[];
|
|
806
|
-
|
|
807
612
|
autoScalingGroups?: string[];
|
|
808
|
-
|
|
809
613
|
ec2TagSet?: EC2TagSet;
|
|
810
614
|
}
|
|
811
|
-
|
|
812
615
|
export interface DeploymentInfo {
|
|
813
616
|
applicationName?: string;
|
|
814
|
-
|
|
815
617
|
deploymentGroupName?: string;
|
|
816
|
-
|
|
817
618
|
deploymentConfigName?: string;
|
|
818
|
-
|
|
819
619
|
deploymentId?: string;
|
|
820
|
-
|
|
821
620
|
previousRevision?: RevisionLocation;
|
|
822
|
-
|
|
823
621
|
revision?: RevisionLocation;
|
|
824
|
-
|
|
825
622
|
status?: DeploymentStatus | string;
|
|
826
|
-
|
|
827
623
|
errorInformation?: ErrorInformation;
|
|
828
|
-
|
|
829
624
|
createTime?: Date;
|
|
830
|
-
|
|
831
625
|
startTime?: Date;
|
|
832
|
-
|
|
833
626
|
completeTime?: Date;
|
|
834
|
-
|
|
835
627
|
deploymentOverview?: DeploymentOverview;
|
|
836
|
-
|
|
837
628
|
description?: string;
|
|
838
|
-
|
|
839
629
|
creator?: DeploymentCreator | string;
|
|
840
|
-
|
|
841
630
|
ignoreApplicationStopFailures?: boolean;
|
|
842
|
-
|
|
843
631
|
autoRollbackConfiguration?: AutoRollbackConfiguration;
|
|
844
|
-
|
|
845
632
|
updateOutdatedInstancesOnly?: boolean;
|
|
846
|
-
|
|
847
633
|
rollbackInfo?: RollbackInfo;
|
|
848
|
-
|
|
849
634
|
deploymentStyle?: DeploymentStyle;
|
|
850
|
-
|
|
851
635
|
targetInstances?: TargetInstances;
|
|
852
|
-
|
|
853
636
|
instanceTerminationWaitTimeStarted?: boolean;
|
|
854
|
-
|
|
855
637
|
blueGreenDeploymentConfiguration?: BlueGreenDeploymentConfiguration;
|
|
856
|
-
|
|
857
638
|
loadBalancerInfo?: LoadBalancerInfo;
|
|
858
|
-
|
|
859
639
|
additionalDeploymentStatusInfo?: string;
|
|
860
|
-
|
|
861
640
|
fileExistsBehavior?: FileExistsBehavior | string;
|
|
862
|
-
|
|
863
641
|
deploymentStatusMessages?: string[];
|
|
864
|
-
|
|
865
642
|
computePlatform?: ComputePlatform | string;
|
|
866
|
-
|
|
867
643
|
externalId?: string;
|
|
868
|
-
|
|
869
644
|
relatedDeployments?: RelatedDeployments;
|
|
870
645
|
}
|
|
871
|
-
|
|
872
646
|
export interface BatchGetDeploymentsOutput {
|
|
873
647
|
deploymentsInfo?: DeploymentInfo[];
|
|
874
648
|
}
|
|
875
649
|
export interface BatchGetDeploymentTargetsInput {
|
|
876
650
|
deploymentId?: string;
|
|
877
|
-
|
|
878
651
|
targetIds?: string[];
|
|
879
652
|
}
|
|
880
653
|
export declare enum TargetStatus {
|
|
@@ -886,20 +659,13 @@ export declare enum TargetStatus {
|
|
|
886
659
|
SUCCEEDED = "Succeeded",
|
|
887
660
|
UNKNOWN = "Unknown",
|
|
888
661
|
}
|
|
889
|
-
|
|
890
662
|
export interface CloudFormationTarget {
|
|
891
663
|
deploymentId?: string;
|
|
892
|
-
|
|
893
664
|
targetId?: string;
|
|
894
|
-
|
|
895
665
|
lastUpdatedAt?: Date;
|
|
896
|
-
|
|
897
666
|
lifecycleEvents?: LifecycleEvent[];
|
|
898
|
-
|
|
899
667
|
status?: TargetStatus | string;
|
|
900
|
-
|
|
901
668
|
resourceType?: string;
|
|
902
|
-
|
|
903
669
|
targetVersionWeight?: number;
|
|
904
670
|
}
|
|
905
671
|
export declare enum DeploymentTargetType {
|
|
@@ -912,113 +678,70 @@ export declare enum TargetLabel {
|
|
|
912
678
|
BLUE = "Blue",
|
|
913
679
|
GREEN = "Green",
|
|
914
680
|
}
|
|
915
|
-
|
|
916
681
|
export interface ECSTaskSet {
|
|
917
682
|
identifer?: string;
|
|
918
|
-
|
|
919
683
|
desiredCount?: number;
|
|
920
|
-
|
|
921
684
|
pendingCount?: number;
|
|
922
|
-
|
|
923
685
|
runningCount?: number;
|
|
924
|
-
|
|
925
686
|
status?: string;
|
|
926
|
-
|
|
927
687
|
trafficWeight?: number;
|
|
928
|
-
|
|
929
688
|
targetGroup?: TargetGroupInfo;
|
|
930
|
-
|
|
931
689
|
taskSetLabel?: TargetLabel | string;
|
|
932
690
|
}
|
|
933
|
-
|
|
934
691
|
export interface ECSTarget {
|
|
935
692
|
deploymentId?: string;
|
|
936
|
-
|
|
937
693
|
targetId?: string;
|
|
938
|
-
|
|
939
694
|
targetArn?: string;
|
|
940
|
-
|
|
941
695
|
lastUpdatedAt?: Date;
|
|
942
|
-
|
|
943
696
|
lifecycleEvents?: LifecycleEvent[];
|
|
944
|
-
|
|
945
697
|
status?: TargetStatus | string;
|
|
946
|
-
|
|
947
698
|
taskSetsInfo?: ECSTaskSet[];
|
|
948
699
|
}
|
|
949
|
-
|
|
950
700
|
export interface InstanceTarget {
|
|
951
701
|
deploymentId?: string;
|
|
952
|
-
|
|
953
702
|
targetId?: string;
|
|
954
|
-
|
|
955
703
|
targetArn?: string;
|
|
956
|
-
|
|
957
704
|
status?: TargetStatus | string;
|
|
958
|
-
|
|
959
705
|
lastUpdatedAt?: Date;
|
|
960
|
-
|
|
961
706
|
lifecycleEvents?: LifecycleEvent[];
|
|
962
|
-
|
|
963
707
|
instanceLabel?: TargetLabel | string;
|
|
964
708
|
}
|
|
965
|
-
|
|
966
709
|
export interface LambdaFunctionInfo {
|
|
967
710
|
functionName?: string;
|
|
968
|
-
|
|
969
711
|
functionAlias?: string;
|
|
970
|
-
|
|
971
712
|
currentVersion?: string;
|
|
972
|
-
|
|
973
713
|
targetVersion?: string;
|
|
974
|
-
|
|
975
714
|
targetVersionWeight?: number;
|
|
976
715
|
}
|
|
977
|
-
|
|
978
716
|
export interface LambdaTarget {
|
|
979
717
|
deploymentId?: string;
|
|
980
|
-
|
|
981
718
|
targetId?: string;
|
|
982
|
-
|
|
983
719
|
targetArn?: string;
|
|
984
|
-
|
|
985
720
|
status?: TargetStatus | string;
|
|
986
|
-
|
|
987
721
|
lastUpdatedAt?: Date;
|
|
988
|
-
|
|
989
722
|
lifecycleEvents?: LifecycleEvent[];
|
|
990
|
-
|
|
991
723
|
lambdaFunctionInfo?: LambdaFunctionInfo;
|
|
992
724
|
}
|
|
993
|
-
|
|
994
725
|
export interface DeploymentTarget {
|
|
995
726
|
deploymentTargetType?: DeploymentTargetType | string;
|
|
996
|
-
|
|
997
727
|
instanceTarget?: InstanceTarget;
|
|
998
|
-
|
|
999
728
|
lambdaTarget?: LambdaTarget;
|
|
1000
|
-
|
|
1001
729
|
ecsTarget?: ECSTarget;
|
|
1002
|
-
|
|
1003
730
|
cloudFormationTarget?: CloudFormationTarget;
|
|
1004
731
|
}
|
|
1005
732
|
export interface BatchGetDeploymentTargetsOutput {
|
|
1006
733
|
deploymentTargets?: DeploymentTarget[];
|
|
1007
734
|
}
|
|
1008
|
-
|
|
1009
735
|
export declare class DeploymentNotStartedException extends __BaseException {
|
|
1010
736
|
readonly name: "DeploymentNotStartedException";
|
|
1011
737
|
readonly $fault: "client";
|
|
1012
|
-
|
|
1013
738
|
constructor(
|
|
1014
739
|
opts: __ExceptionOptionType<DeploymentNotStartedException, __BaseException>
|
|
1015
740
|
);
|
|
1016
741
|
}
|
|
1017
|
-
|
|
1018
742
|
export declare class DeploymentTargetDoesNotExistException extends __BaseException {
|
|
1019
743
|
readonly name: "DeploymentTargetDoesNotExistException";
|
|
1020
744
|
readonly $fault: "client";
|
|
1021
|
-
|
|
1022
745
|
constructor(
|
|
1023
746
|
opts: __ExceptionOptionType<
|
|
1024
747
|
DeploymentTargetDoesNotExistException,
|
|
@@ -1026,11 +749,9 @@ export declare class DeploymentTargetDoesNotExistException extends __BaseExcepti
|
|
|
1026
749
|
>
|
|
1027
750
|
);
|
|
1028
751
|
}
|
|
1029
|
-
|
|
1030
752
|
export declare class DeploymentTargetIdRequiredException extends __BaseException {
|
|
1031
753
|
readonly name: "DeploymentTargetIdRequiredException";
|
|
1032
754
|
readonly $fault: "client";
|
|
1033
|
-
|
|
1034
755
|
constructor(
|
|
1035
756
|
opts: __ExceptionOptionType<
|
|
1036
757
|
DeploymentTargetIdRequiredException,
|
|
@@ -1038,11 +759,9 @@ export declare class DeploymentTargetIdRequiredException extends __BaseException
|
|
|
1038
759
|
>
|
|
1039
760
|
);
|
|
1040
761
|
}
|
|
1041
|
-
|
|
1042
762
|
export declare class DeploymentTargetListSizeExceededException extends __BaseException {
|
|
1043
763
|
readonly name: "DeploymentTargetListSizeExceededException";
|
|
1044
764
|
readonly $fault: "client";
|
|
1045
|
-
|
|
1046
765
|
constructor(
|
|
1047
766
|
opts: __ExceptionOptionType<
|
|
1048
767
|
DeploymentTargetListSizeExceededException,
|
|
@@ -1050,20 +769,16 @@ export declare class DeploymentTargetListSizeExceededException extends __BaseExc
|
|
|
1050
769
|
>
|
|
1051
770
|
);
|
|
1052
771
|
}
|
|
1053
|
-
|
|
1054
772
|
export declare class InstanceDoesNotExistException extends __BaseException {
|
|
1055
773
|
readonly name: "InstanceDoesNotExistException";
|
|
1056
774
|
readonly $fault: "client";
|
|
1057
|
-
|
|
1058
775
|
constructor(
|
|
1059
776
|
opts: __ExceptionOptionType<InstanceDoesNotExistException, __BaseException>
|
|
1060
777
|
);
|
|
1061
778
|
}
|
|
1062
|
-
|
|
1063
779
|
export declare class InvalidDeploymentTargetIdException extends __BaseException {
|
|
1064
780
|
readonly name: "InvalidDeploymentTargetIdException";
|
|
1065
781
|
readonly $fault: "client";
|
|
1066
|
-
|
|
1067
782
|
constructor(
|
|
1068
783
|
opts: __ExceptionOptionType<
|
|
1069
784
|
InvalidDeploymentTargetIdException,
|
|
@@ -1071,35 +786,24 @@ export declare class InvalidDeploymentTargetIdException extends __BaseException
|
|
|
1071
786
|
>
|
|
1072
787
|
);
|
|
1073
788
|
}
|
|
1074
|
-
|
|
1075
789
|
export interface BatchGetOnPremisesInstancesInput {
|
|
1076
790
|
instanceNames: string[] | undefined;
|
|
1077
791
|
}
|
|
1078
|
-
|
|
1079
792
|
export interface InstanceInfo {
|
|
1080
793
|
instanceName?: string;
|
|
1081
|
-
|
|
1082
794
|
iamSessionArn?: string;
|
|
1083
|
-
|
|
1084
795
|
iamUserArn?: string;
|
|
1085
|
-
|
|
1086
796
|
instanceArn?: string;
|
|
1087
|
-
|
|
1088
797
|
registerTime?: Date;
|
|
1089
|
-
|
|
1090
798
|
deregisterTime?: Date;
|
|
1091
|
-
|
|
1092
799
|
tags?: Tag[];
|
|
1093
800
|
}
|
|
1094
|
-
|
|
1095
801
|
export interface BatchGetOnPremisesInstancesOutput {
|
|
1096
802
|
instanceInfos?: InstanceInfo[];
|
|
1097
803
|
}
|
|
1098
|
-
|
|
1099
804
|
export declare class BucketNameFilterRequiredException extends __BaseException {
|
|
1100
805
|
readonly name: "BucketNameFilterRequiredException";
|
|
1101
806
|
readonly $fault: "client";
|
|
1102
|
-
|
|
1103
807
|
constructor(
|
|
1104
808
|
opts: __ExceptionOptionType<
|
|
1105
809
|
BucketNameFilterRequiredException,
|
|
@@ -1113,14 +817,11 @@ export declare enum DeploymentWaitType {
|
|
|
1113
817
|
}
|
|
1114
818
|
export interface ContinueDeploymentInput {
|
|
1115
819
|
deploymentId?: string;
|
|
1116
|
-
|
|
1117
820
|
deploymentWaitType?: DeploymentWaitType | string;
|
|
1118
821
|
}
|
|
1119
|
-
|
|
1120
822
|
export declare class DeploymentAlreadyCompletedException extends __BaseException {
|
|
1121
823
|
readonly name: "DeploymentAlreadyCompletedException";
|
|
1122
824
|
readonly $fault: "client";
|
|
1123
|
-
|
|
1124
825
|
constructor(
|
|
1125
826
|
opts: __ExceptionOptionType<
|
|
1126
827
|
DeploymentAlreadyCompletedException,
|
|
@@ -1128,11 +829,9 @@ export declare class DeploymentAlreadyCompletedException extends __BaseException
|
|
|
1128
829
|
>
|
|
1129
830
|
);
|
|
1130
831
|
}
|
|
1131
|
-
|
|
1132
832
|
export declare class DeploymentIsNotInReadyStateException extends __BaseException {
|
|
1133
833
|
readonly name: "DeploymentIsNotInReadyStateException";
|
|
1134
834
|
readonly $fault: "client";
|
|
1135
|
-
|
|
1136
835
|
constructor(
|
|
1137
836
|
opts: __ExceptionOptionType<
|
|
1138
837
|
DeploymentIsNotInReadyStateException,
|
|
@@ -1140,11 +839,9 @@ export declare class DeploymentIsNotInReadyStateException extends __BaseExceptio
|
|
|
1140
839
|
>
|
|
1141
840
|
);
|
|
1142
841
|
}
|
|
1143
|
-
|
|
1144
842
|
export declare class InvalidDeploymentStatusException extends __BaseException {
|
|
1145
843
|
readonly name: "InvalidDeploymentStatusException";
|
|
1146
844
|
readonly $fault: "client";
|
|
1147
|
-
|
|
1148
845
|
constructor(
|
|
1149
846
|
opts: __ExceptionOptionType<
|
|
1150
847
|
InvalidDeploymentStatusException,
|
|
@@ -1152,11 +849,9 @@ export declare class InvalidDeploymentStatusException extends __BaseException {
|
|
|
1152
849
|
>
|
|
1153
850
|
);
|
|
1154
851
|
}
|
|
1155
|
-
|
|
1156
852
|
export declare class InvalidDeploymentWaitTypeException extends __BaseException {
|
|
1157
853
|
readonly name: "InvalidDeploymentWaitTypeException";
|
|
1158
854
|
readonly $fault: "client";
|
|
1159
|
-
|
|
1160
855
|
constructor(
|
|
1161
856
|
opts: __ExceptionOptionType<
|
|
1162
857
|
InvalidDeploymentWaitTypeException,
|
|
@@ -1164,11 +859,9 @@ export declare class InvalidDeploymentWaitTypeException extends __BaseException
|
|
|
1164
859
|
>
|
|
1165
860
|
);
|
|
1166
861
|
}
|
|
1167
|
-
|
|
1168
862
|
export declare class UnsupportedActionForDeploymentTypeException extends __BaseException {
|
|
1169
863
|
readonly name: "UnsupportedActionForDeploymentTypeException";
|
|
1170
864
|
readonly $fault: "client";
|
|
1171
|
-
|
|
1172
865
|
constructor(
|
|
1173
866
|
opts: __ExceptionOptionType<
|
|
1174
867
|
UnsupportedActionForDeploymentTypeException,
|
|
@@ -1176,58 +869,39 @@ export declare class UnsupportedActionForDeploymentTypeException extends __BaseE
|
|
|
1176
869
|
>
|
|
1177
870
|
);
|
|
1178
871
|
}
|
|
1179
|
-
|
|
1180
872
|
export interface CreateApplicationInput {
|
|
1181
873
|
applicationName: string | undefined;
|
|
1182
|
-
|
|
1183
874
|
computePlatform?: ComputePlatform | string;
|
|
1184
|
-
|
|
1185
875
|
tags?: Tag[];
|
|
1186
876
|
}
|
|
1187
|
-
|
|
1188
877
|
export interface CreateApplicationOutput {
|
|
1189
878
|
applicationId?: string;
|
|
1190
879
|
}
|
|
1191
|
-
|
|
1192
880
|
export declare class InvalidTagsToAddException extends __BaseException {
|
|
1193
881
|
readonly name: "InvalidTagsToAddException";
|
|
1194
882
|
readonly $fault: "client";
|
|
1195
|
-
|
|
1196
883
|
constructor(
|
|
1197
884
|
opts: __ExceptionOptionType<InvalidTagsToAddException, __BaseException>
|
|
1198
885
|
);
|
|
1199
886
|
}
|
|
1200
|
-
|
|
1201
887
|
export interface CreateDeploymentInput {
|
|
1202
888
|
applicationName: string | undefined;
|
|
1203
|
-
|
|
1204
889
|
deploymentGroupName?: string;
|
|
1205
|
-
|
|
1206
890
|
revision?: RevisionLocation;
|
|
1207
|
-
|
|
1208
891
|
deploymentConfigName?: string;
|
|
1209
|
-
|
|
1210
892
|
description?: string;
|
|
1211
|
-
|
|
1212
893
|
ignoreApplicationStopFailures?: boolean;
|
|
1213
|
-
|
|
1214
894
|
targetInstances?: TargetInstances;
|
|
1215
|
-
|
|
1216
895
|
autoRollbackConfiguration?: AutoRollbackConfiguration;
|
|
1217
|
-
|
|
1218
896
|
updateOutdatedInstancesOnly?: boolean;
|
|
1219
|
-
|
|
1220
897
|
fileExistsBehavior?: FileExistsBehavior | string;
|
|
1221
898
|
}
|
|
1222
|
-
|
|
1223
899
|
export interface CreateDeploymentOutput {
|
|
1224
900
|
deploymentId?: string;
|
|
1225
901
|
}
|
|
1226
|
-
|
|
1227
902
|
export declare class DeploymentGroupDoesNotExistException extends __BaseException {
|
|
1228
903
|
readonly name: "DeploymentGroupDoesNotExistException";
|
|
1229
904
|
readonly $fault: "client";
|
|
1230
|
-
|
|
1231
905
|
constructor(
|
|
1232
906
|
opts: __ExceptionOptionType<
|
|
1233
907
|
DeploymentGroupDoesNotExistException,
|
|
@@ -1235,11 +909,9 @@ export declare class DeploymentGroupDoesNotExistException extends __BaseExceptio
|
|
|
1235
909
|
>
|
|
1236
910
|
);
|
|
1237
911
|
}
|
|
1238
|
-
|
|
1239
912
|
export declare class DeploymentLimitExceededException extends __BaseException {
|
|
1240
913
|
readonly name: "DeploymentLimitExceededException";
|
|
1241
914
|
readonly $fault: "client";
|
|
1242
|
-
|
|
1243
915
|
constructor(
|
|
1244
916
|
opts: __ExceptionOptionType<
|
|
1245
917
|
DeploymentLimitExceededException,
|
|
@@ -1247,20 +919,16 @@ export declare class DeploymentLimitExceededException extends __BaseException {
|
|
|
1247
919
|
>
|
|
1248
920
|
);
|
|
1249
921
|
}
|
|
1250
|
-
|
|
1251
922
|
export declare class DescriptionTooLongException extends __BaseException {
|
|
1252
923
|
readonly name: "DescriptionTooLongException";
|
|
1253
924
|
readonly $fault: "client";
|
|
1254
|
-
|
|
1255
925
|
constructor(
|
|
1256
926
|
opts: __ExceptionOptionType<DescriptionTooLongException, __BaseException>
|
|
1257
927
|
);
|
|
1258
928
|
}
|
|
1259
|
-
|
|
1260
929
|
export declare class InvalidAutoRollbackConfigException extends __BaseException {
|
|
1261
930
|
readonly name: "InvalidAutoRollbackConfigException";
|
|
1262
931
|
readonly $fault: "client";
|
|
1263
|
-
|
|
1264
932
|
constructor(
|
|
1265
933
|
opts: __ExceptionOptionType<
|
|
1266
934
|
InvalidAutoRollbackConfigException,
|
|
@@ -1268,11 +936,9 @@ export declare class InvalidAutoRollbackConfigException extends __BaseException
|
|
|
1268
936
|
>
|
|
1269
937
|
);
|
|
1270
938
|
}
|
|
1271
|
-
|
|
1272
939
|
export declare class InvalidAutoScalingGroupException extends __BaseException {
|
|
1273
940
|
readonly name: "InvalidAutoScalingGroupException";
|
|
1274
941
|
readonly $fault: "client";
|
|
1275
|
-
|
|
1276
942
|
constructor(
|
|
1277
943
|
opts: __ExceptionOptionType<
|
|
1278
944
|
InvalidAutoScalingGroupException,
|
|
@@ -1280,11 +946,9 @@ export declare class InvalidAutoScalingGroupException extends __BaseException {
|
|
|
1280
946
|
>
|
|
1281
947
|
);
|
|
1282
948
|
}
|
|
1283
|
-
|
|
1284
949
|
export declare class InvalidDeploymentConfigNameException extends __BaseException {
|
|
1285
950
|
readonly name: "InvalidDeploymentConfigNameException";
|
|
1286
951
|
readonly $fault: "client";
|
|
1287
|
-
|
|
1288
952
|
constructor(
|
|
1289
953
|
opts: __ExceptionOptionType<
|
|
1290
954
|
InvalidDeploymentConfigNameException,
|
|
@@ -1292,11 +956,9 @@ export declare class InvalidDeploymentConfigNameException extends __BaseExceptio
|
|
|
1292
956
|
>
|
|
1293
957
|
);
|
|
1294
958
|
}
|
|
1295
|
-
|
|
1296
959
|
export declare class InvalidFileExistsBehaviorException extends __BaseException {
|
|
1297
960
|
readonly name: "InvalidFileExistsBehaviorException";
|
|
1298
961
|
readonly $fault: "client";
|
|
1299
|
-
|
|
1300
962
|
constructor(
|
|
1301
963
|
opts: __ExceptionOptionType<
|
|
1302
964
|
InvalidFileExistsBehaviorException,
|
|
@@ -1304,11 +966,9 @@ export declare class InvalidFileExistsBehaviorException extends __BaseException
|
|
|
1304
966
|
>
|
|
1305
967
|
);
|
|
1306
968
|
}
|
|
1307
|
-
|
|
1308
969
|
export declare class InvalidGitHubAccountTokenException extends __BaseException {
|
|
1309
970
|
readonly name: "InvalidGitHubAccountTokenException";
|
|
1310
971
|
readonly $fault: "client";
|
|
1311
|
-
|
|
1312
972
|
constructor(
|
|
1313
973
|
opts: __ExceptionOptionType<
|
|
1314
974
|
InvalidGitHubAccountTokenException,
|
|
@@ -1316,11 +976,9 @@ export declare class InvalidGitHubAccountTokenException extends __BaseException
|
|
|
1316
976
|
>
|
|
1317
977
|
);
|
|
1318
978
|
}
|
|
1319
|
-
|
|
1320
979
|
export declare class InvalidIgnoreApplicationStopFailuresValueException extends __BaseException {
|
|
1321
980
|
readonly name: "InvalidIgnoreApplicationStopFailuresValueException";
|
|
1322
981
|
readonly $fault: "client";
|
|
1323
|
-
|
|
1324
982
|
constructor(
|
|
1325
983
|
opts: __ExceptionOptionType<
|
|
1326
984
|
InvalidIgnoreApplicationStopFailuresValueException,
|
|
@@ -1328,11 +986,9 @@ export declare class InvalidIgnoreApplicationStopFailuresValueException extends
|
|
|
1328
986
|
>
|
|
1329
987
|
);
|
|
1330
988
|
}
|
|
1331
|
-
|
|
1332
989
|
export declare class InvalidLoadBalancerInfoException extends __BaseException {
|
|
1333
990
|
readonly name: "InvalidLoadBalancerInfoException";
|
|
1334
991
|
readonly $fault: "client";
|
|
1335
|
-
|
|
1336
992
|
constructor(
|
|
1337
993
|
opts: __ExceptionOptionType<
|
|
1338
994
|
InvalidLoadBalancerInfoException,
|
|
@@ -1340,20 +996,16 @@ export declare class InvalidLoadBalancerInfoException extends __BaseException {
|
|
|
1340
996
|
>
|
|
1341
997
|
);
|
|
1342
998
|
}
|
|
1343
|
-
|
|
1344
999
|
export declare class InvalidRoleException extends __BaseException {
|
|
1345
1000
|
readonly name: "InvalidRoleException";
|
|
1346
1001
|
readonly $fault: "client";
|
|
1347
|
-
|
|
1348
1002
|
constructor(
|
|
1349
1003
|
opts: __ExceptionOptionType<InvalidRoleException, __BaseException>
|
|
1350
1004
|
);
|
|
1351
1005
|
}
|
|
1352
|
-
|
|
1353
1006
|
export declare class InvalidTargetInstancesException extends __BaseException {
|
|
1354
1007
|
readonly name: "InvalidTargetInstancesException";
|
|
1355
1008
|
readonly $fault: "client";
|
|
1356
|
-
|
|
1357
1009
|
constructor(
|
|
1358
1010
|
opts: __ExceptionOptionType<
|
|
1359
1011
|
InvalidTargetInstancesException,
|
|
@@ -1361,11 +1013,9 @@ export declare class InvalidTargetInstancesException extends __BaseException {
|
|
|
1361
1013
|
>
|
|
1362
1014
|
);
|
|
1363
1015
|
}
|
|
1364
|
-
|
|
1365
1016
|
export declare class InvalidTrafficRoutingConfigurationException extends __BaseException {
|
|
1366
1017
|
readonly name: "InvalidTrafficRoutingConfigurationException";
|
|
1367
1018
|
readonly $fault: "client";
|
|
1368
|
-
|
|
1369
1019
|
constructor(
|
|
1370
1020
|
opts: __ExceptionOptionType<
|
|
1371
1021
|
InvalidTrafficRoutingConfigurationException,
|
|
@@ -1373,11 +1023,9 @@ export declare class InvalidTrafficRoutingConfigurationException extends __BaseE
|
|
|
1373
1023
|
>
|
|
1374
1024
|
);
|
|
1375
1025
|
}
|
|
1376
|
-
|
|
1377
1026
|
export declare class InvalidUpdateOutdatedInstancesOnlyValueException extends __BaseException {
|
|
1378
1027
|
readonly name: "InvalidUpdateOutdatedInstancesOnlyValueException";
|
|
1379
1028
|
readonly $fault: "client";
|
|
1380
|
-
|
|
1381
1029
|
constructor(
|
|
1382
1030
|
opts: __ExceptionOptionType<
|
|
1383
1031
|
InvalidUpdateOutdatedInstancesOnlyValueException,
|
|
@@ -1385,41 +1033,31 @@ export declare class InvalidUpdateOutdatedInstancesOnlyValueException extends __
|
|
|
1385
1033
|
>
|
|
1386
1034
|
);
|
|
1387
1035
|
}
|
|
1388
|
-
|
|
1389
1036
|
export declare class RevisionDoesNotExistException extends __BaseException {
|
|
1390
1037
|
readonly name: "RevisionDoesNotExistException";
|
|
1391
1038
|
readonly $fault: "client";
|
|
1392
|
-
|
|
1393
1039
|
constructor(
|
|
1394
1040
|
opts: __ExceptionOptionType<RevisionDoesNotExistException, __BaseException>
|
|
1395
1041
|
);
|
|
1396
1042
|
}
|
|
1397
|
-
|
|
1398
1043
|
export declare class ThrottlingException extends __BaseException {
|
|
1399
1044
|
readonly name: "ThrottlingException";
|
|
1400
1045
|
readonly $fault: "client";
|
|
1401
|
-
|
|
1402
1046
|
constructor(
|
|
1403
1047
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
1404
1048
|
);
|
|
1405
1049
|
}
|
|
1406
1050
|
export declare type MinimumHealthyHostsType = "FLEET_PERCENT" | "HOST_COUNT";
|
|
1407
|
-
|
|
1408
1051
|
export interface MinimumHealthyHosts {
|
|
1409
1052
|
type?: MinimumHealthyHostsType | string;
|
|
1410
|
-
|
|
1411
1053
|
value?: number;
|
|
1412
1054
|
}
|
|
1413
|
-
|
|
1414
1055
|
export interface TimeBasedCanary {
|
|
1415
1056
|
canaryPercentage?: number;
|
|
1416
|
-
|
|
1417
1057
|
canaryInterval?: number;
|
|
1418
1058
|
}
|
|
1419
|
-
|
|
1420
1059
|
export interface TimeBasedLinear {
|
|
1421
1060
|
linearPercentage?: number;
|
|
1422
|
-
|
|
1423
1061
|
linearInterval?: number;
|
|
1424
1062
|
}
|
|
1425
1063
|
export declare enum TrafficRoutingType {
|
|
@@ -1427,33 +1065,23 @@ export declare enum TrafficRoutingType {
|
|
|
1427
1065
|
TimeBasedCanary = "TimeBasedCanary",
|
|
1428
1066
|
TimeBasedLinear = "TimeBasedLinear",
|
|
1429
1067
|
}
|
|
1430
|
-
|
|
1431
1068
|
export interface TrafficRoutingConfig {
|
|
1432
1069
|
type?: TrafficRoutingType | string;
|
|
1433
|
-
|
|
1434
1070
|
timeBasedCanary?: TimeBasedCanary;
|
|
1435
|
-
|
|
1436
1071
|
timeBasedLinear?: TimeBasedLinear;
|
|
1437
1072
|
}
|
|
1438
|
-
|
|
1439
1073
|
export interface CreateDeploymentConfigInput {
|
|
1440
1074
|
deploymentConfigName: string | undefined;
|
|
1441
|
-
|
|
1442
1075
|
minimumHealthyHosts?: MinimumHealthyHosts;
|
|
1443
|
-
|
|
1444
1076
|
trafficRoutingConfig?: TrafficRoutingConfig;
|
|
1445
|
-
|
|
1446
1077
|
computePlatform?: ComputePlatform | string;
|
|
1447
1078
|
}
|
|
1448
|
-
|
|
1449
1079
|
export interface CreateDeploymentConfigOutput {
|
|
1450
1080
|
deploymentConfigId?: string;
|
|
1451
1081
|
}
|
|
1452
|
-
|
|
1453
1082
|
export declare class DeploymentConfigAlreadyExistsException extends __BaseException {
|
|
1454
1083
|
readonly name: "DeploymentConfigAlreadyExistsException";
|
|
1455
1084
|
readonly $fault: "client";
|
|
1456
|
-
|
|
1457
1085
|
constructor(
|
|
1458
1086
|
opts: __ExceptionOptionType<
|
|
1459
1087
|
DeploymentConfigAlreadyExistsException,
|
|
@@ -1461,11 +1089,9 @@ export declare class DeploymentConfigAlreadyExistsException extends __BaseExcept
|
|
|
1461
1089
|
>
|
|
1462
1090
|
);
|
|
1463
1091
|
}
|
|
1464
|
-
|
|
1465
1092
|
export declare class DeploymentConfigLimitExceededException extends __BaseException {
|
|
1466
1093
|
readonly name: "DeploymentConfigLimitExceededException";
|
|
1467
1094
|
readonly $fault: "client";
|
|
1468
|
-
|
|
1469
1095
|
constructor(
|
|
1470
1096
|
opts: __ExceptionOptionType<
|
|
1471
1097
|
DeploymentConfigLimitExceededException,
|
|
@@ -1473,11 +1099,9 @@ export declare class DeploymentConfigLimitExceededException extends __BaseExcept
|
|
|
1473
1099
|
>
|
|
1474
1100
|
);
|
|
1475
1101
|
}
|
|
1476
|
-
|
|
1477
1102
|
export declare class DeploymentConfigNameRequiredException extends __BaseException {
|
|
1478
1103
|
readonly name: "DeploymentConfigNameRequiredException";
|
|
1479
1104
|
readonly $fault: "client";
|
|
1480
|
-
|
|
1481
1105
|
constructor(
|
|
1482
1106
|
opts: __ExceptionOptionType<
|
|
1483
1107
|
DeploymentConfigNameRequiredException,
|
|
@@ -1485,11 +1109,9 @@ export declare class DeploymentConfigNameRequiredException extends __BaseExcepti
|
|
|
1485
1109
|
>
|
|
1486
1110
|
);
|
|
1487
1111
|
}
|
|
1488
|
-
|
|
1489
1112
|
export declare class InvalidMinimumHealthyHostValueException extends __BaseException {
|
|
1490
1113
|
readonly name: "InvalidMinimumHealthyHostValueException";
|
|
1491
1114
|
readonly $fault: "client";
|
|
1492
|
-
|
|
1493
1115
|
constructor(
|
|
1494
1116
|
opts: __ExceptionOptionType<
|
|
1495
1117
|
InvalidMinimumHealthyHostValueException,
|
|
@@ -1497,53 +1119,32 @@ export declare class InvalidMinimumHealthyHostValueException extends __BaseExcep
|
|
|
1497
1119
|
>
|
|
1498
1120
|
);
|
|
1499
1121
|
}
|
|
1500
|
-
|
|
1501
1122
|
export interface CreateDeploymentGroupInput {
|
|
1502
1123
|
applicationName: string | undefined;
|
|
1503
|
-
|
|
1504
1124
|
deploymentGroupName: string | undefined;
|
|
1505
|
-
|
|
1506
1125
|
deploymentConfigName?: string;
|
|
1507
|
-
|
|
1508
1126
|
ec2TagFilters?: EC2TagFilter[];
|
|
1509
|
-
|
|
1510
1127
|
onPremisesInstanceTagFilters?: TagFilter[];
|
|
1511
|
-
|
|
1512
1128
|
autoScalingGroups?: string[];
|
|
1513
|
-
|
|
1514
1129
|
serviceRoleArn: string | undefined;
|
|
1515
|
-
|
|
1516
1130
|
triggerConfigurations?: TriggerConfig[];
|
|
1517
|
-
|
|
1518
1131
|
alarmConfiguration?: AlarmConfiguration;
|
|
1519
|
-
|
|
1520
1132
|
autoRollbackConfiguration?: AutoRollbackConfiguration;
|
|
1521
|
-
|
|
1522
1133
|
outdatedInstancesStrategy?: OutdatedInstancesStrategy | string;
|
|
1523
|
-
|
|
1524
1134
|
deploymentStyle?: DeploymentStyle;
|
|
1525
|
-
|
|
1526
1135
|
blueGreenDeploymentConfiguration?: BlueGreenDeploymentConfiguration;
|
|
1527
|
-
|
|
1528
1136
|
loadBalancerInfo?: LoadBalancerInfo;
|
|
1529
|
-
|
|
1530
1137
|
ec2TagSet?: EC2TagSet;
|
|
1531
|
-
|
|
1532
1138
|
ecsServices?: ECSService[];
|
|
1533
|
-
|
|
1534
1139
|
onPremisesTagSet?: OnPremisesTagSet;
|
|
1535
|
-
|
|
1536
1140
|
tags?: Tag[];
|
|
1537
1141
|
}
|
|
1538
|
-
|
|
1539
1142
|
export interface CreateDeploymentGroupOutput {
|
|
1540
1143
|
deploymentGroupId?: string;
|
|
1541
1144
|
}
|
|
1542
|
-
|
|
1543
1145
|
export declare class DeploymentGroupAlreadyExistsException extends __BaseException {
|
|
1544
1146
|
readonly name: "DeploymentGroupAlreadyExistsException";
|
|
1545
1147
|
readonly $fault: "client";
|
|
1546
|
-
|
|
1547
1148
|
constructor(
|
|
1548
1149
|
opts: __ExceptionOptionType<
|
|
1549
1150
|
DeploymentGroupAlreadyExistsException,
|
|
@@ -1551,11 +1152,9 @@ export declare class DeploymentGroupAlreadyExistsException extends __BaseExcepti
|
|
|
1551
1152
|
>
|
|
1552
1153
|
);
|
|
1553
1154
|
}
|
|
1554
|
-
|
|
1555
1155
|
export declare class DeploymentGroupLimitExceededException extends __BaseException {
|
|
1556
1156
|
readonly name: "DeploymentGroupLimitExceededException";
|
|
1557
1157
|
readonly $fault: "client";
|
|
1558
|
-
|
|
1559
1158
|
constructor(
|
|
1560
1159
|
opts: __ExceptionOptionType<
|
|
1561
1160
|
DeploymentGroupLimitExceededException,
|
|
@@ -1563,11 +1162,9 @@ export declare class DeploymentGroupLimitExceededException extends __BaseExcepti
|
|
|
1563
1162
|
>
|
|
1564
1163
|
);
|
|
1565
1164
|
}
|
|
1566
|
-
|
|
1567
1165
|
export declare class ECSServiceMappingLimitExceededException extends __BaseException {
|
|
1568
1166
|
readonly name: "ECSServiceMappingLimitExceededException";
|
|
1569
1167
|
readonly $fault: "client";
|
|
1570
|
-
|
|
1571
1168
|
constructor(
|
|
1572
1169
|
opts: __ExceptionOptionType<
|
|
1573
1170
|
ECSServiceMappingLimitExceededException,
|
|
@@ -1575,20 +1172,16 @@ export declare class ECSServiceMappingLimitExceededException extends __BaseExcep
|
|
|
1575
1172
|
>
|
|
1576
1173
|
);
|
|
1577
1174
|
}
|
|
1578
|
-
|
|
1579
1175
|
export declare class InvalidAlarmConfigException extends __BaseException {
|
|
1580
1176
|
readonly name: "InvalidAlarmConfigException";
|
|
1581
1177
|
readonly $fault: "client";
|
|
1582
|
-
|
|
1583
1178
|
constructor(
|
|
1584
1179
|
opts: __ExceptionOptionType<InvalidAlarmConfigException, __BaseException>
|
|
1585
1180
|
);
|
|
1586
1181
|
}
|
|
1587
|
-
|
|
1588
1182
|
export declare class InvalidBlueGreenDeploymentConfigurationException extends __BaseException {
|
|
1589
1183
|
readonly name: "InvalidBlueGreenDeploymentConfigurationException";
|
|
1590
1184
|
readonly $fault: "client";
|
|
1591
|
-
|
|
1592
1185
|
constructor(
|
|
1593
1186
|
opts: __ExceptionOptionType<
|
|
1594
1187
|
InvalidBlueGreenDeploymentConfigurationException,
|
|
@@ -1596,11 +1189,9 @@ export declare class InvalidBlueGreenDeploymentConfigurationException extends __
|
|
|
1596
1189
|
>
|
|
1597
1190
|
);
|
|
1598
1191
|
}
|
|
1599
|
-
|
|
1600
1192
|
export declare class InvalidDeploymentStyleException extends __BaseException {
|
|
1601
1193
|
readonly name: "InvalidDeploymentStyleException";
|
|
1602
1194
|
readonly $fault: "client";
|
|
1603
|
-
|
|
1604
1195
|
constructor(
|
|
1605
1196
|
opts: __ExceptionOptionType<
|
|
1606
1197
|
InvalidDeploymentStyleException,
|
|
@@ -1608,11 +1199,9 @@ export declare class InvalidDeploymentStyleException extends __BaseException {
|
|
|
1608
1199
|
>
|
|
1609
1200
|
);
|
|
1610
1201
|
}
|
|
1611
|
-
|
|
1612
1202
|
export declare class InvalidEC2TagCombinationException extends __BaseException {
|
|
1613
1203
|
readonly name: "InvalidEC2TagCombinationException";
|
|
1614
1204
|
readonly $fault: "client";
|
|
1615
|
-
|
|
1616
1205
|
constructor(
|
|
1617
1206
|
opts: __ExceptionOptionType<
|
|
1618
1207
|
InvalidEC2TagCombinationException,
|
|
@@ -1620,38 +1209,30 @@ export declare class InvalidEC2TagCombinationException extends __BaseException {
|
|
|
1620
1209
|
>
|
|
1621
1210
|
);
|
|
1622
1211
|
}
|
|
1623
|
-
|
|
1624
1212
|
export declare class InvalidEC2TagException extends __BaseException {
|
|
1625
1213
|
readonly name: "InvalidEC2TagException";
|
|
1626
1214
|
readonly $fault: "client";
|
|
1627
|
-
|
|
1628
1215
|
constructor(
|
|
1629
1216
|
opts: __ExceptionOptionType<InvalidEC2TagException, __BaseException>
|
|
1630
1217
|
);
|
|
1631
1218
|
}
|
|
1632
|
-
|
|
1633
1219
|
export declare class InvalidECSServiceException extends __BaseException {
|
|
1634
1220
|
readonly name: "InvalidECSServiceException";
|
|
1635
1221
|
readonly $fault: "client";
|
|
1636
|
-
|
|
1637
1222
|
constructor(
|
|
1638
1223
|
opts: __ExceptionOptionType<InvalidECSServiceException, __BaseException>
|
|
1639
1224
|
);
|
|
1640
1225
|
}
|
|
1641
|
-
|
|
1642
1226
|
export declare class InvalidInputException extends __BaseException {
|
|
1643
1227
|
readonly name: "InvalidInputException";
|
|
1644
1228
|
readonly $fault: "client";
|
|
1645
|
-
|
|
1646
1229
|
constructor(
|
|
1647
1230
|
opts: __ExceptionOptionType<InvalidInputException, __BaseException>
|
|
1648
1231
|
);
|
|
1649
1232
|
}
|
|
1650
|
-
|
|
1651
1233
|
export declare class InvalidOnPremisesTagCombinationException extends __BaseException {
|
|
1652
1234
|
readonly name: "InvalidOnPremisesTagCombinationException";
|
|
1653
1235
|
readonly $fault: "client";
|
|
1654
|
-
|
|
1655
1236
|
constructor(
|
|
1656
1237
|
opts: __ExceptionOptionType<
|
|
1657
1238
|
InvalidOnPremisesTagCombinationException,
|
|
@@ -1659,11 +1240,9 @@ export declare class InvalidOnPremisesTagCombinationException extends __BaseExce
|
|
|
1659
1240
|
>
|
|
1660
1241
|
);
|
|
1661
1242
|
}
|
|
1662
|
-
|
|
1663
1243
|
export declare class InvalidTargetGroupPairException extends __BaseException {
|
|
1664
1244
|
readonly name: "InvalidTargetGroupPairException";
|
|
1665
1245
|
readonly $fault: "client";
|
|
1666
|
-
|
|
1667
1246
|
constructor(
|
|
1668
1247
|
opts: __ExceptionOptionType<
|
|
1669
1248
|
InvalidTargetGroupPairException,
|
|
@@ -1671,20 +1250,16 @@ export declare class InvalidTargetGroupPairException extends __BaseException {
|
|
|
1671
1250
|
>
|
|
1672
1251
|
);
|
|
1673
1252
|
}
|
|
1674
|
-
|
|
1675
1253
|
export declare class InvalidTriggerConfigException extends __BaseException {
|
|
1676
1254
|
readonly name: "InvalidTriggerConfigException";
|
|
1677
1255
|
readonly $fault: "client";
|
|
1678
|
-
|
|
1679
1256
|
constructor(
|
|
1680
1257
|
opts: __ExceptionOptionType<InvalidTriggerConfigException, __BaseException>
|
|
1681
1258
|
);
|
|
1682
1259
|
}
|
|
1683
|
-
|
|
1684
1260
|
export declare class LifecycleHookLimitExceededException extends __BaseException {
|
|
1685
1261
|
readonly name: "LifecycleHookLimitExceededException";
|
|
1686
1262
|
readonly $fault: "client";
|
|
1687
|
-
|
|
1688
1263
|
constructor(
|
|
1689
1264
|
opts: __ExceptionOptionType<
|
|
1690
1265
|
LifecycleHookLimitExceededException,
|
|
@@ -1692,20 +1267,16 @@ export declare class LifecycleHookLimitExceededException extends __BaseException
|
|
|
1692
1267
|
>
|
|
1693
1268
|
);
|
|
1694
1269
|
}
|
|
1695
|
-
|
|
1696
1270
|
export declare class RoleRequiredException extends __BaseException {
|
|
1697
1271
|
readonly name: "RoleRequiredException";
|
|
1698
1272
|
readonly $fault: "client";
|
|
1699
|
-
|
|
1700
1273
|
constructor(
|
|
1701
1274
|
opts: __ExceptionOptionType<RoleRequiredException, __BaseException>
|
|
1702
1275
|
);
|
|
1703
1276
|
}
|
|
1704
|
-
|
|
1705
1277
|
export declare class TagSetListLimitExceededException extends __BaseException {
|
|
1706
1278
|
readonly name: "TagSetListLimitExceededException";
|
|
1707
1279
|
readonly $fault: "client";
|
|
1708
|
-
|
|
1709
1280
|
constructor(
|
|
1710
1281
|
opts: __ExceptionOptionType<
|
|
1711
1282
|
TagSetListLimitExceededException,
|
|
@@ -1713,11 +1284,9 @@ export declare class TagSetListLimitExceededException extends __BaseException {
|
|
|
1713
1284
|
>
|
|
1714
1285
|
);
|
|
1715
1286
|
}
|
|
1716
|
-
|
|
1717
1287
|
export declare class TriggerTargetsLimitExceededException extends __BaseException {
|
|
1718
1288
|
readonly name: "TriggerTargetsLimitExceededException";
|
|
1719
1289
|
readonly $fault: "client";
|
|
1720
|
-
|
|
1721
1290
|
constructor(
|
|
1722
1291
|
opts: __ExceptionOptionType<
|
|
1723
1292
|
TriggerTargetsLimitExceededException,
|
|
@@ -1725,55 +1294,42 @@ export declare class TriggerTargetsLimitExceededException extends __BaseExceptio
|
|
|
1725
1294
|
>
|
|
1726
1295
|
);
|
|
1727
1296
|
}
|
|
1728
|
-
|
|
1729
1297
|
export interface DeleteApplicationInput {
|
|
1730
1298
|
applicationName: string | undefined;
|
|
1731
1299
|
}
|
|
1732
|
-
|
|
1733
1300
|
export interface DeleteDeploymentConfigInput {
|
|
1734
1301
|
deploymentConfigName: string | undefined;
|
|
1735
1302
|
}
|
|
1736
|
-
|
|
1737
1303
|
export declare class DeploymentConfigInUseException extends __BaseException {
|
|
1738
1304
|
readonly name: "DeploymentConfigInUseException";
|
|
1739
1305
|
readonly $fault: "client";
|
|
1740
|
-
|
|
1741
1306
|
constructor(
|
|
1742
1307
|
opts: __ExceptionOptionType<DeploymentConfigInUseException, __BaseException>
|
|
1743
1308
|
);
|
|
1744
1309
|
}
|
|
1745
|
-
|
|
1746
1310
|
export declare class InvalidOperationException extends __BaseException {
|
|
1747
1311
|
readonly name: "InvalidOperationException";
|
|
1748
1312
|
readonly $fault: "client";
|
|
1749
|
-
|
|
1750
1313
|
constructor(
|
|
1751
1314
|
opts: __ExceptionOptionType<InvalidOperationException, __BaseException>
|
|
1752
1315
|
);
|
|
1753
1316
|
}
|
|
1754
|
-
|
|
1755
1317
|
export interface DeleteDeploymentGroupInput {
|
|
1756
1318
|
applicationName: string | undefined;
|
|
1757
|
-
|
|
1758
1319
|
deploymentGroupName: string | undefined;
|
|
1759
1320
|
}
|
|
1760
|
-
|
|
1761
1321
|
export interface DeleteDeploymentGroupOutput {
|
|
1762
1322
|
hooksNotCleanedUp?: AutoScalingGroup[];
|
|
1763
1323
|
}
|
|
1764
|
-
|
|
1765
1324
|
export interface DeleteGitHubAccountTokenInput {
|
|
1766
1325
|
tokenName?: string;
|
|
1767
1326
|
}
|
|
1768
|
-
|
|
1769
1327
|
export interface DeleteGitHubAccountTokenOutput {
|
|
1770
1328
|
tokenName?: string;
|
|
1771
1329
|
}
|
|
1772
|
-
|
|
1773
1330
|
export declare class GitHubAccountTokenDoesNotExistException extends __BaseException {
|
|
1774
1331
|
readonly name: "GitHubAccountTokenDoesNotExistException";
|
|
1775
1332
|
readonly $fault: "client";
|
|
1776
|
-
|
|
1777
1333
|
constructor(
|
|
1778
1334
|
opts: __ExceptionOptionType<
|
|
1779
1335
|
GitHubAccountTokenDoesNotExistException,
|
|
@@ -1781,11 +1337,9 @@ export declare class GitHubAccountTokenDoesNotExistException extends __BaseExcep
|
|
|
1781
1337
|
>
|
|
1782
1338
|
);
|
|
1783
1339
|
}
|
|
1784
|
-
|
|
1785
1340
|
export declare class GitHubAccountTokenNameRequiredException extends __BaseException {
|
|
1786
1341
|
readonly name: "GitHubAccountTokenNameRequiredException";
|
|
1787
1342
|
readonly $fault: "client";
|
|
1788
|
-
|
|
1789
1343
|
constructor(
|
|
1790
1344
|
opts: __ExceptionOptionType<
|
|
1791
1345
|
GitHubAccountTokenNameRequiredException,
|
|
@@ -1793,11 +1347,9 @@ export declare class GitHubAccountTokenNameRequiredException extends __BaseExcep
|
|
|
1793
1347
|
>
|
|
1794
1348
|
);
|
|
1795
1349
|
}
|
|
1796
|
-
|
|
1797
1350
|
export declare class InvalidGitHubAccountTokenNameException extends __BaseException {
|
|
1798
1351
|
readonly name: "InvalidGitHubAccountTokenNameException";
|
|
1799
1352
|
readonly $fault: "client";
|
|
1800
|
-
|
|
1801
1353
|
constructor(
|
|
1802
1354
|
opts: __ExceptionOptionType<
|
|
1803
1355
|
InvalidGitHubAccountTokenNameException,
|
|
@@ -1805,20 +1357,16 @@ export declare class InvalidGitHubAccountTokenNameException extends __BaseExcept
|
|
|
1805
1357
|
>
|
|
1806
1358
|
);
|
|
1807
1359
|
}
|
|
1808
|
-
|
|
1809
1360
|
export declare class OperationNotSupportedException extends __BaseException {
|
|
1810
1361
|
readonly name: "OperationNotSupportedException";
|
|
1811
1362
|
readonly $fault: "client";
|
|
1812
|
-
|
|
1813
1363
|
constructor(
|
|
1814
1364
|
opts: __ExceptionOptionType<OperationNotSupportedException, __BaseException>
|
|
1815
1365
|
);
|
|
1816
1366
|
}
|
|
1817
|
-
|
|
1818
1367
|
export declare class ResourceValidationException extends __BaseException {
|
|
1819
1368
|
readonly name: "ResourceValidationException";
|
|
1820
1369
|
readonly $fault: "client";
|
|
1821
|
-
|
|
1822
1370
|
constructor(
|
|
1823
1371
|
opts: __ExceptionOptionType<ResourceValidationException, __BaseException>
|
|
1824
1372
|
);
|
|
@@ -1827,103 +1375,74 @@ export interface DeleteResourcesByExternalIdInput {
|
|
|
1827
1375
|
externalId?: string;
|
|
1828
1376
|
}
|
|
1829
1377
|
export interface DeleteResourcesByExternalIdOutput {}
|
|
1830
|
-
|
|
1831
1378
|
export interface DeregisterOnPremisesInstanceInput {
|
|
1832
1379
|
instanceName: string | undefined;
|
|
1833
1380
|
}
|
|
1834
|
-
|
|
1835
1381
|
export interface GetApplicationInput {
|
|
1836
1382
|
applicationName: string | undefined;
|
|
1837
1383
|
}
|
|
1838
|
-
|
|
1839
1384
|
export interface GetApplicationOutput {
|
|
1840
1385
|
application?: ApplicationInfo;
|
|
1841
1386
|
}
|
|
1842
|
-
|
|
1843
1387
|
export interface GetApplicationRevisionInput {
|
|
1844
1388
|
applicationName: string | undefined;
|
|
1845
|
-
|
|
1846
1389
|
revision: RevisionLocation | undefined;
|
|
1847
1390
|
}
|
|
1848
|
-
|
|
1849
1391
|
export interface GetApplicationRevisionOutput {
|
|
1850
1392
|
applicationName?: string;
|
|
1851
|
-
|
|
1852
1393
|
revision?: RevisionLocation;
|
|
1853
|
-
|
|
1854
1394
|
revisionInfo?: GenericRevisionInfo;
|
|
1855
1395
|
}
|
|
1856
|
-
|
|
1857
1396
|
export interface GetDeploymentInput {
|
|
1858
1397
|
deploymentId: string | undefined;
|
|
1859
1398
|
}
|
|
1860
|
-
|
|
1861
1399
|
export interface GetDeploymentOutput {
|
|
1862
1400
|
deploymentInfo?: DeploymentInfo;
|
|
1863
1401
|
}
|
|
1864
|
-
|
|
1865
1402
|
export interface GetDeploymentConfigInput {
|
|
1866
1403
|
deploymentConfigName: string | undefined;
|
|
1867
1404
|
}
|
|
1868
|
-
|
|
1869
1405
|
export interface DeploymentConfigInfo {
|
|
1870
1406
|
deploymentConfigId?: string;
|
|
1871
|
-
|
|
1872
1407
|
deploymentConfigName?: string;
|
|
1873
|
-
|
|
1874
1408
|
minimumHealthyHosts?: MinimumHealthyHosts;
|
|
1875
|
-
|
|
1876
1409
|
createTime?: Date;
|
|
1877
|
-
|
|
1878
1410
|
computePlatform?: ComputePlatform | string;
|
|
1879
|
-
|
|
1880
1411
|
trafficRoutingConfig?: TrafficRoutingConfig;
|
|
1881
1412
|
}
|
|
1882
|
-
|
|
1883
1413
|
export interface GetDeploymentConfigOutput {
|
|
1884
1414
|
deploymentConfigInfo?: DeploymentConfigInfo;
|
|
1885
1415
|
}
|
|
1886
|
-
|
|
1887
1416
|
export interface GetDeploymentGroupInput {
|
|
1888
1417
|
applicationName: string | undefined;
|
|
1889
|
-
|
|
1890
1418
|
deploymentGroupName: string | undefined;
|
|
1891
1419
|
}
|
|
1892
|
-
|
|
1893
1420
|
export interface GetDeploymentGroupOutput {
|
|
1894
1421
|
deploymentGroupInfo?: DeploymentGroupInfo;
|
|
1895
1422
|
}
|
|
1896
|
-
|
|
1897
1423
|
export interface GetDeploymentInstanceInput {
|
|
1898
1424
|
deploymentId: string | undefined;
|
|
1899
|
-
|
|
1900
1425
|
instanceId: string | undefined;
|
|
1901
1426
|
}
|
|
1902
|
-
|
|
1903
1427
|
export interface GetDeploymentInstanceOutput {
|
|
1904
1428
|
instanceSummary?: InstanceSummary;
|
|
1905
1429
|
}
|
|
1906
1430
|
export interface GetDeploymentTargetInput {
|
|
1907
1431
|
deploymentId?: string;
|
|
1908
|
-
|
|
1909
1432
|
targetId?: string;
|
|
1910
1433
|
}
|
|
1911
1434
|
export interface GetDeploymentTargetOutput {
|
|
1912
1435
|
deploymentTarget?: DeploymentTarget;
|
|
1913
1436
|
}
|
|
1914
|
-
|
|
1915
1437
|
export interface GetOnPremisesInstanceInput {
|
|
1916
1438
|
instanceName: string | undefined;
|
|
1917
1439
|
}
|
|
1918
|
-
|
|
1919
1440
|
export interface GetOnPremisesInstanceOutput {
|
|
1920
1441
|
instanceInfo?: InstanceInfo;
|
|
1921
1442
|
}
|
|
1922
|
-
|
|
1923
1443
|
export declare class InvalidBucketNameFilterException extends __BaseException {
|
|
1924
1444
|
readonly name: "InvalidBucketNameFilterException";
|
|
1925
1445
|
readonly $fault: "client";
|
|
1926
|
-
|
|
1927
1446
|
constructor(
|
|
1928
1447
|
opts: __ExceptionOptionType<
|
|
1929
1448
|
InvalidBucketNameFilterException,
|
|
@@ -1931,11 +1450,9 @@ export declare class InvalidBucketNameFilterException extends __BaseException {
|
|
|
1931
1450
|
>
|
|
1932
1451
|
);
|
|
1933
1452
|
}
|
|
1934
|
-
|
|
1935
1453
|
export declare class InvalidDeployedStateFilterException extends __BaseException {
|
|
1936
1454
|
readonly name: "InvalidDeployedStateFilterException";
|
|
1937
1455
|
readonly $fault: "client";
|
|
1938
|
-
|
|
1939
1456
|
constructor(
|
|
1940
1457
|
opts: __ExceptionOptionType<
|
|
1941
1458
|
InvalidDeployedStateFilterException,
|
|
@@ -1943,11 +1460,9 @@ export declare class InvalidDeployedStateFilterException extends __BaseException
|
|
|
1943
1460
|
>
|
|
1944
1461
|
);
|
|
1945
1462
|
}
|
|
1946
|
-
|
|
1947
1463
|
export declare class InvalidKeyPrefixFilterException extends __BaseException {
|
|
1948
1464
|
readonly name: "InvalidKeyPrefixFilterException";
|
|
1949
1465
|
readonly $fault: "client";
|
|
1950
|
-
|
|
1951
1466
|
constructor(
|
|
1952
1467
|
opts: __ExceptionOptionType<
|
|
1953
1468
|
InvalidKeyPrefixFilterException,
|
|
@@ -1955,29 +1470,23 @@ export declare class InvalidKeyPrefixFilterException extends __BaseException {
|
|
|
1955
1470
|
>
|
|
1956
1471
|
);
|
|
1957
1472
|
}
|
|
1958
|
-
|
|
1959
1473
|
export declare class InvalidNextTokenException extends __BaseException {
|
|
1960
1474
|
readonly name: "InvalidNextTokenException";
|
|
1961
1475
|
readonly $fault: "client";
|
|
1962
|
-
|
|
1963
1476
|
constructor(
|
|
1964
1477
|
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
1965
1478
|
);
|
|
1966
1479
|
}
|
|
1967
|
-
|
|
1968
1480
|
export declare class InvalidSortByException extends __BaseException {
|
|
1969
1481
|
readonly name: "InvalidSortByException";
|
|
1970
1482
|
readonly $fault: "client";
|
|
1971
|
-
|
|
1972
1483
|
constructor(
|
|
1973
1484
|
opts: __ExceptionOptionType<InvalidSortByException, __BaseException>
|
|
1974
1485
|
);
|
|
1975
1486
|
}
|
|
1976
|
-
|
|
1977
1487
|
export declare class InvalidSortOrderException extends __BaseException {
|
|
1978
1488
|
readonly name: "InvalidSortOrderException";
|
|
1979
1489
|
readonly $fault: "client";
|
|
1980
|
-
|
|
1981
1490
|
constructor(
|
|
1982
1491
|
opts: __ExceptionOptionType<InvalidSortOrderException, __BaseException>
|
|
1983
1492
|
);
|
|
@@ -1991,67 +1500,45 @@ export declare enum SortOrder {
|
|
|
1991
1500
|
Ascending = "ascending",
|
|
1992
1501
|
Descending = "descending",
|
|
1993
1502
|
}
|
|
1994
|
-
|
|
1995
1503
|
export interface ListApplicationRevisionsInput {
|
|
1996
1504
|
applicationName: string | undefined;
|
|
1997
|
-
|
|
1998
1505
|
sortBy?: ApplicationRevisionSortBy | string;
|
|
1999
|
-
|
|
2000
1506
|
sortOrder?: SortOrder | string;
|
|
2001
|
-
|
|
2002
1507
|
s3Bucket?: string;
|
|
2003
|
-
|
|
2004
1508
|
s3KeyPrefix?: string;
|
|
2005
|
-
|
|
2006
1509
|
deployed?: ListStateFilterAction | string;
|
|
2007
|
-
|
|
2008
1510
|
nextToken?: string;
|
|
2009
1511
|
}
|
|
2010
|
-
|
|
2011
1512
|
export interface ListApplicationRevisionsOutput {
|
|
2012
1513
|
revisions?: RevisionLocation[];
|
|
2013
|
-
|
|
2014
1514
|
nextToken?: string;
|
|
2015
1515
|
}
|
|
2016
|
-
|
|
2017
1516
|
export interface ListApplicationsInput {
|
|
2018
1517
|
nextToken?: string;
|
|
2019
1518
|
}
|
|
2020
|
-
|
|
2021
1519
|
export interface ListApplicationsOutput {
|
|
2022
1520
|
applications?: string[];
|
|
2023
|
-
|
|
2024
1521
|
nextToken?: string;
|
|
2025
1522
|
}
|
|
2026
|
-
|
|
2027
1523
|
export interface ListDeploymentConfigsInput {
|
|
2028
1524
|
nextToken?: string;
|
|
2029
1525
|
}
|
|
2030
|
-
|
|
2031
1526
|
export interface ListDeploymentConfigsOutput {
|
|
2032
1527
|
deploymentConfigsList?: string[];
|
|
2033
|
-
|
|
2034
1528
|
nextToken?: string;
|
|
2035
1529
|
}
|
|
2036
|
-
|
|
2037
1530
|
export interface ListDeploymentGroupsInput {
|
|
2038
1531
|
applicationName: string | undefined;
|
|
2039
|
-
|
|
2040
1532
|
nextToken?: string;
|
|
2041
1533
|
}
|
|
2042
|
-
|
|
2043
1534
|
export interface ListDeploymentGroupsOutput {
|
|
2044
1535
|
applicationName?: string;
|
|
2045
|
-
|
|
2046
1536
|
deploymentGroups?: string[];
|
|
2047
|
-
|
|
2048
1537
|
nextToken?: string;
|
|
2049
1538
|
}
|
|
2050
|
-
|
|
2051
1539
|
export declare class InvalidDeploymentInstanceTypeException extends __BaseException {
|
|
2052
1540
|
readonly name: "InvalidDeploymentInstanceTypeException";
|
|
2053
1541
|
readonly $fault: "client";
|
|
2054
|
-
|
|
2055
1542
|
constructor(
|
|
2056
1543
|
opts: __ExceptionOptionType<
|
|
2057
1544
|
InvalidDeploymentInstanceTypeException,
|
|
@@ -2059,29 +1546,23 @@ export declare class InvalidDeploymentInstanceTypeException extends __BaseExcept
|
|
|
2059
1546
|
>
|
|
2060
1547
|
);
|
|
2061
1548
|
}
|
|
2062
|
-
|
|
2063
1549
|
export declare class InvalidInstanceStatusException extends __BaseException {
|
|
2064
1550
|
readonly name: "InvalidInstanceStatusException";
|
|
2065
1551
|
readonly $fault: "client";
|
|
2066
|
-
|
|
2067
1552
|
constructor(
|
|
2068
1553
|
opts: __ExceptionOptionType<InvalidInstanceStatusException, __BaseException>
|
|
2069
1554
|
);
|
|
2070
1555
|
}
|
|
2071
|
-
|
|
2072
1556
|
export declare class InvalidInstanceTypeException extends __BaseException {
|
|
2073
1557
|
readonly name: "InvalidInstanceTypeException";
|
|
2074
1558
|
readonly $fault: "client";
|
|
2075
|
-
|
|
2076
1559
|
constructor(
|
|
2077
1560
|
opts: __ExceptionOptionType<InvalidInstanceTypeException, __BaseException>
|
|
2078
1561
|
);
|
|
2079
1562
|
}
|
|
2080
|
-
|
|
2081
1563
|
export declare class InvalidTargetFilterNameException extends __BaseException {
|
|
2082
1564
|
readonly name: "InvalidTargetFilterNameException";
|
|
2083
1565
|
readonly $fault: "client";
|
|
2084
|
-
|
|
2085
1566
|
constructor(
|
|
2086
1567
|
opts: __ExceptionOptionType<
|
|
2087
1568
|
InvalidTargetFilterNameException,
|
|
@@ -2089,64 +1570,44 @@ export declare class InvalidTargetFilterNameException extends __BaseException {
|
|
|
2089
1570
|
>
|
|
2090
1571
|
);
|
|
2091
1572
|
}
|
|
2092
|
-
|
|
2093
1573
|
export interface ListDeploymentInstancesInput {
|
|
2094
1574
|
deploymentId: string | undefined;
|
|
2095
|
-
|
|
2096
1575
|
nextToken?: string;
|
|
2097
|
-
|
|
2098
1576
|
instanceStatusFilter?: (InstanceStatus | string)[];
|
|
2099
|
-
|
|
2100
1577
|
instanceTypeFilter?: (_InstanceType | string)[];
|
|
2101
1578
|
}
|
|
2102
|
-
|
|
2103
1579
|
export interface ListDeploymentInstancesOutput {
|
|
2104
1580
|
instancesList?: string[];
|
|
2105
|
-
|
|
2106
1581
|
nextToken?: string;
|
|
2107
1582
|
}
|
|
2108
|
-
|
|
2109
1583
|
export declare class InvalidExternalIdException extends __BaseException {
|
|
2110
1584
|
readonly name: "InvalidExternalIdException";
|
|
2111
1585
|
readonly $fault: "client";
|
|
2112
|
-
|
|
2113
1586
|
constructor(
|
|
2114
1587
|
opts: __ExceptionOptionType<InvalidExternalIdException, __BaseException>
|
|
2115
1588
|
);
|
|
2116
1589
|
}
|
|
2117
|
-
|
|
2118
1590
|
export declare class InvalidTimeRangeException extends __BaseException {
|
|
2119
1591
|
readonly name: "InvalidTimeRangeException";
|
|
2120
1592
|
readonly $fault: "client";
|
|
2121
|
-
|
|
2122
1593
|
constructor(
|
|
2123
1594
|
opts: __ExceptionOptionType<InvalidTimeRangeException, __BaseException>
|
|
2124
1595
|
);
|
|
2125
1596
|
}
|
|
2126
|
-
|
|
2127
1597
|
export interface TimeRange {
|
|
2128
1598
|
start?: Date;
|
|
2129
|
-
|
|
2130
1599
|
end?: Date;
|
|
2131
1600
|
}
|
|
2132
|
-
|
|
2133
1601
|
export interface ListDeploymentsInput {
|
|
2134
1602
|
applicationName?: string;
|
|
2135
|
-
|
|
2136
1603
|
deploymentGroupName?: string;
|
|
2137
|
-
|
|
2138
1604
|
externalId?: string;
|
|
2139
|
-
|
|
2140
1605
|
includeOnlyStatuses?: (DeploymentStatus | string)[];
|
|
2141
|
-
|
|
2142
1606
|
createTimeRange?: TimeRange;
|
|
2143
|
-
|
|
2144
1607
|
nextToken?: string;
|
|
2145
1608
|
}
|
|
2146
|
-
|
|
2147
1609
|
export interface ListDeploymentsOutput {
|
|
2148
1610
|
deployments?: string[];
|
|
2149
|
-
|
|
2150
1611
|
nextToken?: string;
|
|
2151
1612
|
}
|
|
2152
1613
|
export declare enum TargetFilterName {
|
|
@@ -2155,31 +1616,23 @@ export declare enum TargetFilterName {
|
|
|
2155
1616
|
}
|
|
2156
1617
|
export interface ListDeploymentTargetsInput {
|
|
2157
1618
|
deploymentId?: string;
|
|
2158
|
-
|
|
2159
1619
|
nextToken?: string;
|
|
2160
|
-
|
|
2161
1620
|
targetFilters?: Record<string, string[]>;
|
|
2162
1621
|
}
|
|
2163
1622
|
export interface ListDeploymentTargetsOutput {
|
|
2164
1623
|
targetIds?: string[];
|
|
2165
|
-
|
|
2166
1624
|
nextToken?: string;
|
|
2167
1625
|
}
|
|
2168
|
-
|
|
2169
1626
|
export interface ListGitHubAccountTokenNamesInput {
|
|
2170
1627
|
nextToken?: string;
|
|
2171
1628
|
}
|
|
2172
|
-
|
|
2173
1629
|
export interface ListGitHubAccountTokenNamesOutput {
|
|
2174
1630
|
tokenNameList?: string[];
|
|
2175
|
-
|
|
2176
1631
|
nextToken?: string;
|
|
2177
1632
|
}
|
|
2178
|
-
|
|
2179
1633
|
export declare class InvalidRegistrationStatusException extends __BaseException {
|
|
2180
1634
|
readonly name: "InvalidRegistrationStatusException";
|
|
2181
1635
|
readonly $fault: "client";
|
|
2182
|
-
|
|
2183
1636
|
constructor(
|
|
2184
1637
|
opts: __ExceptionOptionType<
|
|
2185
1638
|
InvalidRegistrationStatusException,
|
|
@@ -2187,11 +1640,9 @@ export declare class InvalidRegistrationStatusException extends __BaseException
|
|
|
2187
1640
|
>
|
|
2188
1641
|
);
|
|
2189
1642
|
}
|
|
2190
|
-
|
|
2191
1643
|
export declare class InvalidTagFilterException extends __BaseException {
|
|
2192
1644
|
readonly name: "InvalidTagFilterException";
|
|
2193
1645
|
readonly $fault: "client";
|
|
2194
|
-
|
|
2195
1646
|
constructor(
|
|
2196
1647
|
opts: __ExceptionOptionType<InvalidTagFilterException, __BaseException>
|
|
2197
1648
|
);
|
|
@@ -2200,53 +1651,40 @@ export declare enum RegistrationStatus {
|
|
|
2200
1651
|
Deregistered = "Deregistered",
|
|
2201
1652
|
Registered = "Registered",
|
|
2202
1653
|
}
|
|
2203
|
-
|
|
2204
1654
|
export interface ListOnPremisesInstancesInput {
|
|
2205
1655
|
registrationStatus?: RegistrationStatus | string;
|
|
2206
|
-
|
|
2207
1656
|
tagFilters?: TagFilter[];
|
|
2208
|
-
|
|
2209
1657
|
nextToken?: string;
|
|
2210
1658
|
}
|
|
2211
|
-
|
|
2212
1659
|
export interface ListOnPremisesInstancesOutput {
|
|
2213
1660
|
instanceNames?: string[];
|
|
2214
|
-
|
|
2215
1661
|
nextToken?: string;
|
|
2216
1662
|
}
|
|
2217
|
-
|
|
2218
1663
|
export declare class InvalidArnException extends __BaseException {
|
|
2219
1664
|
readonly name: "InvalidArnException";
|
|
2220
1665
|
readonly $fault: "client";
|
|
2221
|
-
|
|
2222
1666
|
constructor(
|
|
2223
1667
|
opts: __ExceptionOptionType<InvalidArnException, __BaseException>
|
|
2224
1668
|
);
|
|
2225
1669
|
}
|
|
2226
1670
|
export interface ListTagsForResourceInput {
|
|
2227
1671
|
ResourceArn: string | undefined;
|
|
2228
|
-
|
|
2229
1672
|
NextToken?: string;
|
|
2230
1673
|
}
|
|
2231
1674
|
export interface ListTagsForResourceOutput {
|
|
2232
1675
|
Tags?: Tag[];
|
|
2233
|
-
|
|
2234
1676
|
NextToken?: string;
|
|
2235
1677
|
}
|
|
2236
|
-
|
|
2237
1678
|
export declare class ResourceArnRequiredException extends __BaseException {
|
|
2238
1679
|
readonly name: "ResourceArnRequiredException";
|
|
2239
1680
|
readonly $fault: "client";
|
|
2240
|
-
|
|
2241
1681
|
constructor(
|
|
2242
1682
|
opts: __ExceptionOptionType<ResourceArnRequiredException, __BaseException>
|
|
2243
1683
|
);
|
|
2244
1684
|
}
|
|
2245
|
-
|
|
2246
1685
|
export declare class InvalidLifecycleEventHookExecutionIdException extends __BaseException {
|
|
2247
1686
|
readonly name: "InvalidLifecycleEventHookExecutionIdException";
|
|
2248
1687
|
readonly $fault: "client";
|
|
2249
|
-
|
|
2250
1688
|
constructor(
|
|
2251
1689
|
opts: __ExceptionOptionType<
|
|
2252
1690
|
InvalidLifecycleEventHookExecutionIdException,
|
|
@@ -2254,11 +1692,9 @@ export declare class InvalidLifecycleEventHookExecutionIdException extends __Bas
|
|
|
2254
1692
|
>
|
|
2255
1693
|
);
|
|
2256
1694
|
}
|
|
2257
|
-
|
|
2258
1695
|
export declare class InvalidLifecycleEventHookExecutionStatusException extends __BaseException {
|
|
2259
1696
|
readonly name: "InvalidLifecycleEventHookExecutionStatusException";
|
|
2260
1697
|
readonly $fault: "client";
|
|
2261
|
-
|
|
2262
1698
|
constructor(
|
|
2263
1699
|
opts: __ExceptionOptionType<
|
|
2264
1700
|
InvalidLifecycleEventHookExecutionStatusException,
|
|
@@ -2266,11 +1702,9 @@ export declare class InvalidLifecycleEventHookExecutionStatusException extends _
|
|
|
2266
1702
|
>
|
|
2267
1703
|
);
|
|
2268
1704
|
}
|
|
2269
|
-
|
|
2270
1705
|
export declare class LifecycleEventAlreadyCompletedException extends __BaseException {
|
|
2271
1706
|
readonly name: "LifecycleEventAlreadyCompletedException";
|
|
2272
1707
|
readonly $fault: "client";
|
|
2273
|
-
|
|
2274
1708
|
constructor(
|
|
2275
1709
|
opts: __ExceptionOptionType<
|
|
2276
1710
|
LifecycleEventAlreadyCompletedException,
|
|
@@ -2280,36 +1714,27 @@ export declare class LifecycleEventAlreadyCompletedException extends __BaseExcep
|
|
|
2280
1714
|
}
|
|
2281
1715
|
export interface PutLifecycleEventHookExecutionStatusInput {
|
|
2282
1716
|
deploymentId?: string;
|
|
2283
|
-
|
|
2284
1717
|
lifecycleEventHookExecutionId?: string;
|
|
2285
|
-
|
|
2286
1718
|
status?: LifecycleEventStatus | string;
|
|
2287
1719
|
}
|
|
2288
1720
|
export interface PutLifecycleEventHookExecutionStatusOutput {
|
|
2289
1721
|
lifecycleEventHookExecutionId?: string;
|
|
2290
1722
|
}
|
|
2291
|
-
|
|
2292
1723
|
export interface RegisterApplicationRevisionInput {
|
|
2293
1724
|
applicationName: string | undefined;
|
|
2294
|
-
|
|
2295
1725
|
description?: string;
|
|
2296
|
-
|
|
2297
1726
|
revision: RevisionLocation | undefined;
|
|
2298
1727
|
}
|
|
2299
|
-
|
|
2300
1728
|
export declare class IamArnRequiredException extends __BaseException {
|
|
2301
1729
|
readonly name: "IamArnRequiredException";
|
|
2302
1730
|
readonly $fault: "client";
|
|
2303
|
-
|
|
2304
1731
|
constructor(
|
|
2305
1732
|
opts: __ExceptionOptionType<IamArnRequiredException, __BaseException>
|
|
2306
1733
|
);
|
|
2307
1734
|
}
|
|
2308
|
-
|
|
2309
1735
|
export declare class IamSessionArnAlreadyRegisteredException extends __BaseException {
|
|
2310
1736
|
readonly name: "IamSessionArnAlreadyRegisteredException";
|
|
2311
1737
|
readonly $fault: "client";
|
|
2312
|
-
|
|
2313
1738
|
constructor(
|
|
2314
1739
|
opts: __ExceptionOptionType<
|
|
2315
1740
|
IamSessionArnAlreadyRegisteredException,
|
|
@@ -2317,11 +1742,9 @@ export declare class IamSessionArnAlreadyRegisteredException extends __BaseExcep
|
|
|
2317
1742
|
>
|
|
2318
1743
|
);
|
|
2319
1744
|
}
|
|
2320
|
-
|
|
2321
1745
|
export declare class IamUserArnAlreadyRegisteredException extends __BaseException {
|
|
2322
1746
|
readonly name: "IamUserArnAlreadyRegisteredException";
|
|
2323
1747
|
readonly $fault: "client";
|
|
2324
|
-
|
|
2325
1748
|
constructor(
|
|
2326
1749
|
opts: __ExceptionOptionType<
|
|
2327
1750
|
IamUserArnAlreadyRegisteredException,
|
|
@@ -2329,20 +1752,16 @@ export declare class IamUserArnAlreadyRegisteredException extends __BaseExceptio
|
|
|
2329
1752
|
>
|
|
2330
1753
|
);
|
|
2331
1754
|
}
|
|
2332
|
-
|
|
2333
1755
|
export declare class IamUserArnRequiredException extends __BaseException {
|
|
2334
1756
|
readonly name: "IamUserArnRequiredException";
|
|
2335
1757
|
readonly $fault: "client";
|
|
2336
|
-
|
|
2337
1758
|
constructor(
|
|
2338
1759
|
opts: __ExceptionOptionType<IamUserArnRequiredException, __BaseException>
|
|
2339
1760
|
);
|
|
2340
1761
|
}
|
|
2341
|
-
|
|
2342
1762
|
export declare class InstanceNameAlreadyRegisteredException extends __BaseException {
|
|
2343
1763
|
readonly name: "InstanceNameAlreadyRegisteredException";
|
|
2344
1764
|
readonly $fault: "client";
|
|
2345
|
-
|
|
2346
1765
|
constructor(
|
|
2347
1766
|
opts: __ExceptionOptionType<
|
|
2348
1767
|
InstanceNameAlreadyRegisteredException,
|
|
@@ -2350,29 +1769,23 @@ export declare class InstanceNameAlreadyRegisteredException extends __BaseExcept
|
|
|
2350
1769
|
>
|
|
2351
1770
|
);
|
|
2352
1771
|
}
|
|
2353
|
-
|
|
2354
1772
|
export declare class InvalidIamSessionArnException extends __BaseException {
|
|
2355
1773
|
readonly name: "InvalidIamSessionArnException";
|
|
2356
1774
|
readonly $fault: "client";
|
|
2357
|
-
|
|
2358
1775
|
constructor(
|
|
2359
1776
|
opts: __ExceptionOptionType<InvalidIamSessionArnException, __BaseException>
|
|
2360
1777
|
);
|
|
2361
1778
|
}
|
|
2362
|
-
|
|
2363
1779
|
export declare class InvalidIamUserArnException extends __BaseException {
|
|
2364
1780
|
readonly name: "InvalidIamUserArnException";
|
|
2365
1781
|
readonly $fault: "client";
|
|
2366
|
-
|
|
2367
1782
|
constructor(
|
|
2368
1783
|
opts: __ExceptionOptionType<InvalidIamUserArnException, __BaseException>
|
|
2369
1784
|
);
|
|
2370
1785
|
}
|
|
2371
|
-
|
|
2372
1786
|
export declare class MultipleIamArnsProvidedException extends __BaseException {
|
|
2373
1787
|
readonly name: "MultipleIamArnsProvidedException";
|
|
2374
1788
|
readonly $fault: "client";
|
|
2375
|
-
|
|
2376
1789
|
constructor(
|
|
2377
1790
|
opts: __ExceptionOptionType<
|
|
2378
1791
|
MultipleIamArnsProvidedException,
|
|
@@ -2380,612 +1793,442 @@ export declare class MultipleIamArnsProvidedException extends __BaseException {
|
|
|
2380
1793
|
>
|
|
2381
1794
|
);
|
|
2382
1795
|
}
|
|
2383
|
-
|
|
2384
1796
|
export interface RegisterOnPremisesInstanceInput {
|
|
2385
1797
|
instanceName: string | undefined;
|
|
2386
|
-
|
|
2387
1798
|
iamSessionArn?: string;
|
|
2388
|
-
|
|
2389
1799
|
iamUserArn?: string;
|
|
2390
1800
|
}
|
|
2391
|
-
|
|
2392
1801
|
export interface RemoveTagsFromOnPremisesInstancesInput {
|
|
2393
1802
|
tags: Tag[] | undefined;
|
|
2394
|
-
|
|
2395
1803
|
instanceNames: string[] | undefined;
|
|
2396
1804
|
}
|
|
2397
1805
|
export interface SkipWaitTimeForInstanceTerminationInput {
|
|
2398
1806
|
deploymentId?: string;
|
|
2399
1807
|
}
|
|
2400
|
-
|
|
2401
1808
|
export interface StopDeploymentInput {
|
|
2402
1809
|
deploymentId: string | undefined;
|
|
2403
|
-
|
|
2404
1810
|
autoRollbackEnabled?: boolean;
|
|
2405
1811
|
}
|
|
2406
1812
|
export declare enum StopStatus {
|
|
2407
1813
|
PENDING = "Pending",
|
|
2408
1814
|
SUCCEEDED = "Succeeded",
|
|
2409
1815
|
}
|
|
2410
|
-
|
|
2411
1816
|
export interface StopDeploymentOutput {
|
|
2412
1817
|
status?: StopStatus | string;
|
|
2413
|
-
|
|
2414
1818
|
statusMessage?: string;
|
|
2415
1819
|
}
|
|
2416
1820
|
export interface TagResourceInput {
|
|
2417
1821
|
ResourceArn: string | undefined;
|
|
2418
|
-
|
|
2419
1822
|
Tags: Tag[] | undefined;
|
|
2420
1823
|
}
|
|
2421
1824
|
export interface TagResourceOutput {}
|
|
2422
1825
|
export interface UntagResourceInput {
|
|
2423
1826
|
ResourceArn: string | undefined;
|
|
2424
|
-
|
|
2425
1827
|
TagKeys: string[] | undefined;
|
|
2426
1828
|
}
|
|
2427
1829
|
export interface UntagResourceOutput {}
|
|
2428
|
-
|
|
2429
1830
|
export interface UpdateApplicationInput {
|
|
2430
1831
|
applicationName?: string;
|
|
2431
|
-
|
|
2432
1832
|
newApplicationName?: string;
|
|
2433
1833
|
}
|
|
2434
|
-
|
|
2435
1834
|
export interface UpdateDeploymentGroupInput {
|
|
2436
1835
|
applicationName: string | undefined;
|
|
2437
|
-
|
|
2438
1836
|
currentDeploymentGroupName: string | undefined;
|
|
2439
|
-
|
|
2440
1837
|
newDeploymentGroupName?: string;
|
|
2441
|
-
|
|
2442
1838
|
deploymentConfigName?: string;
|
|
2443
|
-
|
|
2444
1839
|
ec2TagFilters?: EC2TagFilter[];
|
|
2445
|
-
|
|
2446
1840
|
onPremisesInstanceTagFilters?: TagFilter[];
|
|
2447
|
-
|
|
2448
1841
|
autoScalingGroups?: string[];
|
|
2449
|
-
|
|
2450
1842
|
serviceRoleArn?: string;
|
|
2451
|
-
|
|
2452
1843
|
triggerConfigurations?: TriggerConfig[];
|
|
2453
|
-
|
|
2454
1844
|
alarmConfiguration?: AlarmConfiguration;
|
|
2455
|
-
|
|
2456
1845
|
autoRollbackConfiguration?: AutoRollbackConfiguration;
|
|
2457
|
-
|
|
2458
1846
|
outdatedInstancesStrategy?: OutdatedInstancesStrategy | string;
|
|
2459
|
-
|
|
2460
1847
|
deploymentStyle?: DeploymentStyle;
|
|
2461
|
-
|
|
2462
1848
|
blueGreenDeploymentConfiguration?: BlueGreenDeploymentConfiguration;
|
|
2463
|
-
|
|
2464
1849
|
loadBalancerInfo?: LoadBalancerInfo;
|
|
2465
|
-
|
|
2466
1850
|
ec2TagSet?: EC2TagSet;
|
|
2467
|
-
|
|
2468
1851
|
ecsServices?: ECSService[];
|
|
2469
|
-
|
|
2470
1852
|
onPremisesTagSet?: OnPremisesTagSet;
|
|
2471
1853
|
}
|
|
2472
|
-
|
|
2473
1854
|
export interface UpdateDeploymentGroupOutput {
|
|
2474
1855
|
hooksNotCleanedUp?: AutoScalingGroup[];
|
|
2475
1856
|
}
|
|
2476
|
-
|
|
2477
1857
|
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
2478
|
-
|
|
2479
1858
|
export declare const AddTagsToOnPremisesInstancesInputFilterSensitiveLog: (
|
|
2480
1859
|
obj: AddTagsToOnPremisesInstancesInput
|
|
2481
1860
|
) => any;
|
|
2482
|
-
|
|
2483
1861
|
export declare const AlarmFilterSensitiveLog: (obj: Alarm) => any;
|
|
2484
|
-
|
|
2485
1862
|
export declare const AlarmConfigurationFilterSensitiveLog: (
|
|
2486
1863
|
obj: AlarmConfiguration
|
|
2487
1864
|
) => any;
|
|
2488
|
-
|
|
2489
1865
|
export declare const ApplicationInfoFilterSensitiveLog: (
|
|
2490
1866
|
obj: ApplicationInfo
|
|
2491
1867
|
) => any;
|
|
2492
|
-
|
|
2493
1868
|
export declare const AppSpecContentFilterSensitiveLog: (
|
|
2494
1869
|
obj: AppSpecContent
|
|
2495
1870
|
) => any;
|
|
2496
|
-
|
|
2497
1871
|
export declare const AutoRollbackConfigurationFilterSensitiveLog: (
|
|
2498
1872
|
obj: AutoRollbackConfiguration
|
|
2499
1873
|
) => any;
|
|
2500
|
-
|
|
2501
1874
|
export declare const AutoScalingGroupFilterSensitiveLog: (
|
|
2502
1875
|
obj: AutoScalingGroup
|
|
2503
1876
|
) => any;
|
|
2504
|
-
|
|
2505
1877
|
export declare const GitHubLocationFilterSensitiveLog: (
|
|
2506
1878
|
obj: GitHubLocation
|
|
2507
1879
|
) => any;
|
|
2508
|
-
|
|
2509
1880
|
export declare const S3LocationFilterSensitiveLog: (obj: S3Location) => any;
|
|
2510
|
-
|
|
2511
1881
|
export declare const RawStringFilterSensitiveLog: (obj: RawString) => any;
|
|
2512
|
-
|
|
2513
1882
|
export declare const RevisionLocationFilterSensitiveLog: (
|
|
2514
1883
|
obj: RevisionLocation
|
|
2515
1884
|
) => any;
|
|
2516
|
-
|
|
2517
1885
|
export declare const BatchGetApplicationRevisionsInputFilterSensitiveLog: (
|
|
2518
1886
|
obj: BatchGetApplicationRevisionsInput
|
|
2519
1887
|
) => any;
|
|
2520
|
-
|
|
2521
1888
|
export declare const GenericRevisionInfoFilterSensitiveLog: (
|
|
2522
1889
|
obj: GenericRevisionInfo
|
|
2523
1890
|
) => any;
|
|
2524
|
-
|
|
2525
1891
|
export declare const RevisionInfoFilterSensitiveLog: (obj: RevisionInfo) => any;
|
|
2526
|
-
|
|
2527
1892
|
export declare const BatchGetApplicationRevisionsOutputFilterSensitiveLog: (
|
|
2528
1893
|
obj: BatchGetApplicationRevisionsOutput
|
|
2529
1894
|
) => any;
|
|
2530
|
-
|
|
2531
1895
|
export declare const BatchGetApplicationsInputFilterSensitiveLog: (
|
|
2532
1896
|
obj: BatchGetApplicationsInput
|
|
2533
1897
|
) => any;
|
|
2534
|
-
|
|
2535
1898
|
export declare const BatchGetApplicationsOutputFilterSensitiveLog: (
|
|
2536
1899
|
obj: BatchGetApplicationsOutput
|
|
2537
1900
|
) => any;
|
|
2538
|
-
|
|
2539
1901
|
export declare const BatchGetDeploymentGroupsInputFilterSensitiveLog: (
|
|
2540
1902
|
obj: BatchGetDeploymentGroupsInput
|
|
2541
1903
|
) => any;
|
|
2542
|
-
|
|
2543
1904
|
export declare const DeploymentReadyOptionFilterSensitiveLog: (
|
|
2544
1905
|
obj: DeploymentReadyOption
|
|
2545
1906
|
) => any;
|
|
2546
|
-
|
|
2547
1907
|
export declare const GreenFleetProvisioningOptionFilterSensitiveLog: (
|
|
2548
1908
|
obj: GreenFleetProvisioningOption
|
|
2549
1909
|
) => any;
|
|
2550
|
-
|
|
2551
1910
|
export declare const BlueInstanceTerminationOptionFilterSensitiveLog: (
|
|
2552
1911
|
obj: BlueInstanceTerminationOption
|
|
2553
1912
|
) => any;
|
|
2554
|
-
|
|
2555
1913
|
export declare const BlueGreenDeploymentConfigurationFilterSensitiveLog: (
|
|
2556
1914
|
obj: BlueGreenDeploymentConfiguration
|
|
2557
1915
|
) => any;
|
|
2558
|
-
|
|
2559
1916
|
export declare const DeploymentStyleFilterSensitiveLog: (
|
|
2560
1917
|
obj: DeploymentStyle
|
|
2561
1918
|
) => any;
|
|
2562
|
-
|
|
2563
1919
|
export declare const EC2TagFilterFilterSensitiveLog: (obj: EC2TagFilter) => any;
|
|
2564
|
-
|
|
2565
1920
|
export declare const EC2TagSetFilterSensitiveLog: (obj: EC2TagSet) => any;
|
|
2566
|
-
|
|
2567
1921
|
export declare const ECSServiceFilterSensitiveLog: (obj: ECSService) => any;
|
|
2568
|
-
|
|
2569
1922
|
export declare const LastDeploymentInfoFilterSensitiveLog: (
|
|
2570
1923
|
obj: LastDeploymentInfo
|
|
2571
1924
|
) => any;
|
|
2572
|
-
|
|
2573
1925
|
export declare const ELBInfoFilterSensitiveLog: (obj: ELBInfo) => any;
|
|
2574
|
-
|
|
2575
1926
|
export declare const TargetGroupInfoFilterSensitiveLog: (
|
|
2576
1927
|
obj: TargetGroupInfo
|
|
2577
1928
|
) => any;
|
|
2578
|
-
|
|
2579
1929
|
export declare const TrafficRouteFilterSensitiveLog: (obj: TrafficRoute) => any;
|
|
2580
|
-
|
|
2581
1930
|
export declare const TargetGroupPairInfoFilterSensitiveLog: (
|
|
2582
1931
|
obj: TargetGroupPairInfo
|
|
2583
1932
|
) => any;
|
|
2584
|
-
|
|
2585
1933
|
export declare const LoadBalancerInfoFilterSensitiveLog: (
|
|
2586
1934
|
obj: LoadBalancerInfo
|
|
2587
1935
|
) => any;
|
|
2588
|
-
|
|
2589
1936
|
export declare const TagFilterFilterSensitiveLog: (obj: TagFilter) => any;
|
|
2590
|
-
|
|
2591
1937
|
export declare const OnPremisesTagSetFilterSensitiveLog: (
|
|
2592
1938
|
obj: OnPremisesTagSet
|
|
2593
1939
|
) => any;
|
|
2594
|
-
|
|
2595
1940
|
export declare const TriggerConfigFilterSensitiveLog: (
|
|
2596
1941
|
obj: TriggerConfig
|
|
2597
1942
|
) => any;
|
|
2598
|
-
|
|
2599
1943
|
export declare const DeploymentGroupInfoFilterSensitiveLog: (
|
|
2600
1944
|
obj: DeploymentGroupInfo
|
|
2601
1945
|
) => any;
|
|
2602
|
-
|
|
2603
1946
|
export declare const BatchGetDeploymentGroupsOutputFilterSensitiveLog: (
|
|
2604
1947
|
obj: BatchGetDeploymentGroupsOutput
|
|
2605
1948
|
) => any;
|
|
2606
|
-
|
|
2607
1949
|
export declare const BatchGetDeploymentInstancesInputFilterSensitiveLog: (
|
|
2608
1950
|
obj: BatchGetDeploymentInstancesInput
|
|
2609
1951
|
) => any;
|
|
2610
|
-
|
|
2611
1952
|
export declare const DiagnosticsFilterSensitiveLog: (obj: Diagnostics) => any;
|
|
2612
|
-
|
|
2613
1953
|
export declare const LifecycleEventFilterSensitiveLog: (
|
|
2614
1954
|
obj: LifecycleEvent
|
|
2615
1955
|
) => any;
|
|
2616
|
-
|
|
2617
1956
|
export declare const InstanceSummaryFilterSensitiveLog: (
|
|
2618
1957
|
obj: InstanceSummary
|
|
2619
1958
|
) => any;
|
|
2620
|
-
|
|
2621
1959
|
export declare const BatchGetDeploymentInstancesOutputFilterSensitiveLog: (
|
|
2622
1960
|
obj: BatchGetDeploymentInstancesOutput
|
|
2623
1961
|
) => any;
|
|
2624
|
-
|
|
2625
1962
|
export declare const BatchGetDeploymentsInputFilterSensitiveLog: (
|
|
2626
1963
|
obj: BatchGetDeploymentsInput
|
|
2627
1964
|
) => any;
|
|
2628
|
-
|
|
2629
1965
|
export declare const DeploymentOverviewFilterSensitiveLog: (
|
|
2630
1966
|
obj: DeploymentOverview
|
|
2631
1967
|
) => any;
|
|
2632
|
-
|
|
2633
1968
|
export declare const ErrorInformationFilterSensitiveLog: (
|
|
2634
1969
|
obj: ErrorInformation
|
|
2635
1970
|
) => any;
|
|
2636
|
-
|
|
2637
1971
|
export declare const RelatedDeploymentsFilterSensitiveLog: (
|
|
2638
1972
|
obj: RelatedDeployments
|
|
2639
1973
|
) => any;
|
|
2640
|
-
|
|
2641
1974
|
export declare const RollbackInfoFilterSensitiveLog: (obj: RollbackInfo) => any;
|
|
2642
|
-
|
|
2643
1975
|
export declare const TargetInstancesFilterSensitiveLog: (
|
|
2644
1976
|
obj: TargetInstances
|
|
2645
1977
|
) => any;
|
|
2646
|
-
|
|
2647
1978
|
export declare const DeploymentInfoFilterSensitiveLog: (
|
|
2648
1979
|
obj: DeploymentInfo
|
|
2649
1980
|
) => any;
|
|
2650
|
-
|
|
2651
1981
|
export declare const BatchGetDeploymentsOutputFilterSensitiveLog: (
|
|
2652
1982
|
obj: BatchGetDeploymentsOutput
|
|
2653
1983
|
) => any;
|
|
2654
|
-
|
|
2655
1984
|
export declare const BatchGetDeploymentTargetsInputFilterSensitiveLog: (
|
|
2656
1985
|
obj: BatchGetDeploymentTargetsInput
|
|
2657
1986
|
) => any;
|
|
2658
|
-
|
|
2659
1987
|
export declare const CloudFormationTargetFilterSensitiveLog: (
|
|
2660
1988
|
obj: CloudFormationTarget
|
|
2661
1989
|
) => any;
|
|
2662
|
-
|
|
2663
1990
|
export declare const ECSTaskSetFilterSensitiveLog: (obj: ECSTaskSet) => any;
|
|
2664
|
-
|
|
2665
1991
|
export declare const ECSTargetFilterSensitiveLog: (obj: ECSTarget) => any;
|
|
2666
|
-
|
|
2667
1992
|
export declare const InstanceTargetFilterSensitiveLog: (
|
|
2668
1993
|
obj: InstanceTarget
|
|
2669
1994
|
) => any;
|
|
2670
|
-
|
|
2671
1995
|
export declare const LambdaFunctionInfoFilterSensitiveLog: (
|
|
2672
1996
|
obj: LambdaFunctionInfo
|
|
2673
1997
|
) => any;
|
|
2674
|
-
|
|
2675
1998
|
export declare const LambdaTargetFilterSensitiveLog: (obj: LambdaTarget) => any;
|
|
2676
|
-
|
|
2677
1999
|
export declare const DeploymentTargetFilterSensitiveLog: (
|
|
2678
2000
|
obj: DeploymentTarget
|
|
2679
2001
|
) => any;
|
|
2680
|
-
|
|
2681
2002
|
export declare const BatchGetDeploymentTargetsOutputFilterSensitiveLog: (
|
|
2682
2003
|
obj: BatchGetDeploymentTargetsOutput
|
|
2683
2004
|
) => any;
|
|
2684
|
-
|
|
2685
2005
|
export declare const BatchGetOnPremisesInstancesInputFilterSensitiveLog: (
|
|
2686
2006
|
obj: BatchGetOnPremisesInstancesInput
|
|
2687
2007
|
) => any;
|
|
2688
|
-
|
|
2689
2008
|
export declare const InstanceInfoFilterSensitiveLog: (obj: InstanceInfo) => any;
|
|
2690
|
-
|
|
2691
2009
|
export declare const BatchGetOnPremisesInstancesOutputFilterSensitiveLog: (
|
|
2692
2010
|
obj: BatchGetOnPremisesInstancesOutput
|
|
2693
2011
|
) => any;
|
|
2694
|
-
|
|
2695
2012
|
export declare const ContinueDeploymentInputFilterSensitiveLog: (
|
|
2696
2013
|
obj: ContinueDeploymentInput
|
|
2697
2014
|
) => any;
|
|
2698
|
-
|
|
2699
2015
|
export declare const CreateApplicationInputFilterSensitiveLog: (
|
|
2700
2016
|
obj: CreateApplicationInput
|
|
2701
2017
|
) => any;
|
|
2702
|
-
|
|
2703
2018
|
export declare const CreateApplicationOutputFilterSensitiveLog: (
|
|
2704
2019
|
obj: CreateApplicationOutput
|
|
2705
2020
|
) => any;
|
|
2706
|
-
|
|
2707
2021
|
export declare const CreateDeploymentInputFilterSensitiveLog: (
|
|
2708
2022
|
obj: CreateDeploymentInput
|
|
2709
2023
|
) => any;
|
|
2710
|
-
|
|
2711
2024
|
export declare const CreateDeploymentOutputFilterSensitiveLog: (
|
|
2712
2025
|
obj: CreateDeploymentOutput
|
|
2713
2026
|
) => any;
|
|
2714
|
-
|
|
2715
2027
|
export declare const MinimumHealthyHostsFilterSensitiveLog: (
|
|
2716
2028
|
obj: MinimumHealthyHosts
|
|
2717
2029
|
) => any;
|
|
2718
|
-
|
|
2719
2030
|
export declare const TimeBasedCanaryFilterSensitiveLog: (
|
|
2720
2031
|
obj: TimeBasedCanary
|
|
2721
2032
|
) => any;
|
|
2722
|
-
|
|
2723
2033
|
export declare const TimeBasedLinearFilterSensitiveLog: (
|
|
2724
2034
|
obj: TimeBasedLinear
|
|
2725
2035
|
) => any;
|
|
2726
|
-
|
|
2727
2036
|
export declare const TrafficRoutingConfigFilterSensitiveLog: (
|
|
2728
2037
|
obj: TrafficRoutingConfig
|
|
2729
2038
|
) => any;
|
|
2730
|
-
|
|
2731
2039
|
export declare const CreateDeploymentConfigInputFilterSensitiveLog: (
|
|
2732
2040
|
obj: CreateDeploymentConfigInput
|
|
2733
2041
|
) => any;
|
|
2734
|
-
|
|
2735
2042
|
export declare const CreateDeploymentConfigOutputFilterSensitiveLog: (
|
|
2736
2043
|
obj: CreateDeploymentConfigOutput
|
|
2737
2044
|
) => any;
|
|
2738
|
-
|
|
2739
2045
|
export declare const CreateDeploymentGroupInputFilterSensitiveLog: (
|
|
2740
2046
|
obj: CreateDeploymentGroupInput
|
|
2741
2047
|
) => any;
|
|
2742
|
-
|
|
2743
2048
|
export declare const CreateDeploymentGroupOutputFilterSensitiveLog: (
|
|
2744
2049
|
obj: CreateDeploymentGroupOutput
|
|
2745
2050
|
) => any;
|
|
2746
|
-
|
|
2747
2051
|
export declare const DeleteApplicationInputFilterSensitiveLog: (
|
|
2748
2052
|
obj: DeleteApplicationInput
|
|
2749
2053
|
) => any;
|
|
2750
|
-
|
|
2751
2054
|
export declare const DeleteDeploymentConfigInputFilterSensitiveLog: (
|
|
2752
2055
|
obj: DeleteDeploymentConfigInput
|
|
2753
2056
|
) => any;
|
|
2754
|
-
|
|
2755
2057
|
export declare const DeleteDeploymentGroupInputFilterSensitiveLog: (
|
|
2756
2058
|
obj: DeleteDeploymentGroupInput
|
|
2757
2059
|
) => any;
|
|
2758
|
-
|
|
2759
2060
|
export declare const DeleteDeploymentGroupOutputFilterSensitiveLog: (
|
|
2760
2061
|
obj: DeleteDeploymentGroupOutput
|
|
2761
2062
|
) => any;
|
|
2762
|
-
|
|
2763
2063
|
export declare const DeleteGitHubAccountTokenInputFilterSensitiveLog: (
|
|
2764
2064
|
obj: DeleteGitHubAccountTokenInput
|
|
2765
2065
|
) => any;
|
|
2766
|
-
|
|
2767
2066
|
export declare const DeleteGitHubAccountTokenOutputFilterSensitiveLog: (
|
|
2768
2067
|
obj: DeleteGitHubAccountTokenOutput
|
|
2769
2068
|
) => any;
|
|
2770
|
-
|
|
2771
2069
|
export declare const DeleteResourcesByExternalIdInputFilterSensitiveLog: (
|
|
2772
2070
|
obj: DeleteResourcesByExternalIdInput
|
|
2773
2071
|
) => any;
|
|
2774
|
-
|
|
2775
2072
|
export declare const DeleteResourcesByExternalIdOutputFilterSensitiveLog: (
|
|
2776
2073
|
obj: DeleteResourcesByExternalIdOutput
|
|
2777
2074
|
) => any;
|
|
2778
|
-
|
|
2779
2075
|
export declare const DeregisterOnPremisesInstanceInputFilterSensitiveLog: (
|
|
2780
2076
|
obj: DeregisterOnPremisesInstanceInput
|
|
2781
2077
|
) => any;
|
|
2782
|
-
|
|
2783
2078
|
export declare const GetApplicationInputFilterSensitiveLog: (
|
|
2784
2079
|
obj: GetApplicationInput
|
|
2785
2080
|
) => any;
|
|
2786
|
-
|
|
2787
2081
|
export declare const GetApplicationOutputFilterSensitiveLog: (
|
|
2788
2082
|
obj: GetApplicationOutput
|
|
2789
2083
|
) => any;
|
|
2790
|
-
|
|
2791
2084
|
export declare const GetApplicationRevisionInputFilterSensitiveLog: (
|
|
2792
2085
|
obj: GetApplicationRevisionInput
|
|
2793
2086
|
) => any;
|
|
2794
|
-
|
|
2795
2087
|
export declare const GetApplicationRevisionOutputFilterSensitiveLog: (
|
|
2796
2088
|
obj: GetApplicationRevisionOutput
|
|
2797
2089
|
) => any;
|
|
2798
|
-
|
|
2799
2090
|
export declare const GetDeploymentInputFilterSensitiveLog: (
|
|
2800
2091
|
obj: GetDeploymentInput
|
|
2801
2092
|
) => any;
|
|
2802
|
-
|
|
2803
2093
|
export declare const GetDeploymentOutputFilterSensitiveLog: (
|
|
2804
2094
|
obj: GetDeploymentOutput
|
|
2805
2095
|
) => any;
|
|
2806
|
-
|
|
2807
2096
|
export declare const GetDeploymentConfigInputFilterSensitiveLog: (
|
|
2808
2097
|
obj: GetDeploymentConfigInput
|
|
2809
2098
|
) => any;
|
|
2810
|
-
|
|
2811
2099
|
export declare const DeploymentConfigInfoFilterSensitiveLog: (
|
|
2812
2100
|
obj: DeploymentConfigInfo
|
|
2813
2101
|
) => any;
|
|
2814
|
-
|
|
2815
2102
|
export declare const GetDeploymentConfigOutputFilterSensitiveLog: (
|
|
2816
2103
|
obj: GetDeploymentConfigOutput
|
|
2817
2104
|
) => any;
|
|
2818
|
-
|
|
2819
2105
|
export declare const GetDeploymentGroupInputFilterSensitiveLog: (
|
|
2820
2106
|
obj: GetDeploymentGroupInput
|
|
2821
2107
|
) => any;
|
|
2822
|
-
|
|
2823
2108
|
export declare const GetDeploymentGroupOutputFilterSensitiveLog: (
|
|
2824
2109
|
obj: GetDeploymentGroupOutput
|
|
2825
2110
|
) => any;
|
|
2826
|
-
|
|
2827
2111
|
export declare const GetDeploymentInstanceInputFilterSensitiveLog: (
|
|
2828
2112
|
obj: GetDeploymentInstanceInput
|
|
2829
2113
|
) => any;
|
|
2830
|
-
|
|
2831
2114
|
export declare const GetDeploymentInstanceOutputFilterSensitiveLog: (
|
|
2832
2115
|
obj: GetDeploymentInstanceOutput
|
|
2833
2116
|
) => any;
|
|
2834
|
-
|
|
2835
2117
|
export declare const GetDeploymentTargetInputFilterSensitiveLog: (
|
|
2836
2118
|
obj: GetDeploymentTargetInput
|
|
2837
2119
|
) => any;
|
|
2838
|
-
|
|
2839
2120
|
export declare const GetDeploymentTargetOutputFilterSensitiveLog: (
|
|
2840
2121
|
obj: GetDeploymentTargetOutput
|
|
2841
2122
|
) => any;
|
|
2842
|
-
|
|
2843
2123
|
export declare const GetOnPremisesInstanceInputFilterSensitiveLog: (
|
|
2844
2124
|
obj: GetOnPremisesInstanceInput
|
|
2845
2125
|
) => any;
|
|
2846
|
-
|
|
2847
2126
|
export declare const GetOnPremisesInstanceOutputFilterSensitiveLog: (
|
|
2848
2127
|
obj: GetOnPremisesInstanceOutput
|
|
2849
2128
|
) => any;
|
|
2850
|
-
|
|
2851
2129
|
export declare const ListApplicationRevisionsInputFilterSensitiveLog: (
|
|
2852
2130
|
obj: ListApplicationRevisionsInput
|
|
2853
2131
|
) => any;
|
|
2854
|
-
|
|
2855
2132
|
export declare const ListApplicationRevisionsOutputFilterSensitiveLog: (
|
|
2856
2133
|
obj: ListApplicationRevisionsOutput
|
|
2857
2134
|
) => any;
|
|
2858
|
-
|
|
2859
2135
|
export declare const ListApplicationsInputFilterSensitiveLog: (
|
|
2860
2136
|
obj: ListApplicationsInput
|
|
2861
2137
|
) => any;
|
|
2862
|
-
|
|
2863
2138
|
export declare const ListApplicationsOutputFilterSensitiveLog: (
|
|
2864
2139
|
obj: ListApplicationsOutput
|
|
2865
2140
|
) => any;
|
|
2866
|
-
|
|
2867
2141
|
export declare const ListDeploymentConfigsInputFilterSensitiveLog: (
|
|
2868
2142
|
obj: ListDeploymentConfigsInput
|
|
2869
2143
|
) => any;
|
|
2870
|
-
|
|
2871
2144
|
export declare const ListDeploymentConfigsOutputFilterSensitiveLog: (
|
|
2872
2145
|
obj: ListDeploymentConfigsOutput
|
|
2873
2146
|
) => any;
|
|
2874
|
-
|
|
2875
2147
|
export declare const ListDeploymentGroupsInputFilterSensitiveLog: (
|
|
2876
2148
|
obj: ListDeploymentGroupsInput
|
|
2877
2149
|
) => any;
|
|
2878
|
-
|
|
2879
2150
|
export declare const ListDeploymentGroupsOutputFilterSensitiveLog: (
|
|
2880
2151
|
obj: ListDeploymentGroupsOutput
|
|
2881
2152
|
) => any;
|
|
2882
|
-
|
|
2883
2153
|
export declare const ListDeploymentInstancesInputFilterSensitiveLog: (
|
|
2884
2154
|
obj: ListDeploymentInstancesInput
|
|
2885
2155
|
) => any;
|
|
2886
|
-
|
|
2887
2156
|
export declare const ListDeploymentInstancesOutputFilterSensitiveLog: (
|
|
2888
2157
|
obj: ListDeploymentInstancesOutput
|
|
2889
2158
|
) => any;
|
|
2890
|
-
|
|
2891
2159
|
export declare const TimeRangeFilterSensitiveLog: (obj: TimeRange) => any;
|
|
2892
|
-
|
|
2893
2160
|
export declare const ListDeploymentsInputFilterSensitiveLog: (
|
|
2894
2161
|
obj: ListDeploymentsInput
|
|
2895
2162
|
) => any;
|
|
2896
|
-
|
|
2897
2163
|
export declare const ListDeploymentsOutputFilterSensitiveLog: (
|
|
2898
2164
|
obj: ListDeploymentsOutput
|
|
2899
2165
|
) => any;
|
|
2900
|
-
|
|
2901
2166
|
export declare const ListDeploymentTargetsInputFilterSensitiveLog: (
|
|
2902
2167
|
obj: ListDeploymentTargetsInput
|
|
2903
2168
|
) => any;
|
|
2904
|
-
|
|
2905
2169
|
export declare const ListDeploymentTargetsOutputFilterSensitiveLog: (
|
|
2906
2170
|
obj: ListDeploymentTargetsOutput
|
|
2907
2171
|
) => any;
|
|
2908
|
-
|
|
2909
2172
|
export declare const ListGitHubAccountTokenNamesInputFilterSensitiveLog: (
|
|
2910
2173
|
obj: ListGitHubAccountTokenNamesInput
|
|
2911
2174
|
) => any;
|
|
2912
|
-
|
|
2913
2175
|
export declare const ListGitHubAccountTokenNamesOutputFilterSensitiveLog: (
|
|
2914
2176
|
obj: ListGitHubAccountTokenNamesOutput
|
|
2915
2177
|
) => any;
|
|
2916
|
-
|
|
2917
2178
|
export declare const ListOnPremisesInstancesInputFilterSensitiveLog: (
|
|
2918
2179
|
obj: ListOnPremisesInstancesInput
|
|
2919
2180
|
) => any;
|
|
2920
|
-
|
|
2921
2181
|
export declare const ListOnPremisesInstancesOutputFilterSensitiveLog: (
|
|
2922
2182
|
obj: ListOnPremisesInstancesOutput
|
|
2923
2183
|
) => any;
|
|
2924
|
-
|
|
2925
2184
|
export declare const ListTagsForResourceInputFilterSensitiveLog: (
|
|
2926
2185
|
obj: ListTagsForResourceInput
|
|
2927
2186
|
) => any;
|
|
2928
|
-
|
|
2929
2187
|
export declare const ListTagsForResourceOutputFilterSensitiveLog: (
|
|
2930
2188
|
obj: ListTagsForResourceOutput
|
|
2931
2189
|
) => any;
|
|
2932
|
-
|
|
2933
2190
|
export declare const PutLifecycleEventHookExecutionStatusInputFilterSensitiveLog: (
|
|
2934
2191
|
obj: PutLifecycleEventHookExecutionStatusInput
|
|
2935
2192
|
) => any;
|
|
2936
|
-
|
|
2937
2193
|
export declare const PutLifecycleEventHookExecutionStatusOutputFilterSensitiveLog: (
|
|
2938
2194
|
obj: PutLifecycleEventHookExecutionStatusOutput
|
|
2939
2195
|
) => any;
|
|
2940
|
-
|
|
2941
2196
|
export declare const RegisterApplicationRevisionInputFilterSensitiveLog: (
|
|
2942
2197
|
obj: RegisterApplicationRevisionInput
|
|
2943
2198
|
) => any;
|
|
2944
|
-
|
|
2945
2199
|
export declare const RegisterOnPremisesInstanceInputFilterSensitiveLog: (
|
|
2946
2200
|
obj: RegisterOnPremisesInstanceInput
|
|
2947
2201
|
) => any;
|
|
2948
|
-
|
|
2949
2202
|
export declare const RemoveTagsFromOnPremisesInstancesInputFilterSensitiveLog: (
|
|
2950
2203
|
obj: RemoveTagsFromOnPremisesInstancesInput
|
|
2951
2204
|
) => any;
|
|
2952
|
-
|
|
2953
2205
|
export declare const SkipWaitTimeForInstanceTerminationInputFilterSensitiveLog: (
|
|
2954
2206
|
obj: SkipWaitTimeForInstanceTerminationInput
|
|
2955
2207
|
) => any;
|
|
2956
|
-
|
|
2957
2208
|
export declare const StopDeploymentInputFilterSensitiveLog: (
|
|
2958
2209
|
obj: StopDeploymentInput
|
|
2959
2210
|
) => any;
|
|
2960
|
-
|
|
2961
2211
|
export declare const StopDeploymentOutputFilterSensitiveLog: (
|
|
2962
2212
|
obj: StopDeploymentOutput
|
|
2963
2213
|
) => any;
|
|
2964
|
-
|
|
2965
2214
|
export declare const TagResourceInputFilterSensitiveLog: (
|
|
2966
2215
|
obj: TagResourceInput
|
|
2967
2216
|
) => any;
|
|
2968
|
-
|
|
2969
2217
|
export declare const TagResourceOutputFilterSensitiveLog: (
|
|
2970
2218
|
obj: TagResourceOutput
|
|
2971
2219
|
) => any;
|
|
2972
|
-
|
|
2973
2220
|
export declare const UntagResourceInputFilterSensitiveLog: (
|
|
2974
2221
|
obj: UntagResourceInput
|
|
2975
2222
|
) => any;
|
|
2976
|
-
|
|
2977
2223
|
export declare const UntagResourceOutputFilterSensitiveLog: (
|
|
2978
2224
|
obj: UntagResourceOutput
|
|
2979
2225
|
) => any;
|
|
2980
|
-
|
|
2981
2226
|
export declare const UpdateApplicationInputFilterSensitiveLog: (
|
|
2982
2227
|
obj: UpdateApplicationInput
|
|
2983
2228
|
) => any;
|
|
2984
|
-
|
|
2985
2229
|
export declare const UpdateDeploymentGroupInputFilterSensitiveLog: (
|
|
2986
2230
|
obj: UpdateDeploymentGroupInput
|
|
2987
2231
|
) => any;
|
|
2988
|
-
|
|
2989
2232
|
export declare const UpdateDeploymentGroupOutputFilterSensitiveLog: (
|
|
2990
2233
|
obj: UpdateDeploymentGroupOutput
|
|
2991
2234
|
) => any;
|