@aws-sdk/client-arc-region-switch 3.954.0 → 3.956.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/README.md +8 -0
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/index.js +191 -19
- package/dist-es/ARCRegionSwitch.js +2 -0
- package/dist-es/commands/ListRoute53HealthChecksInRegionCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +19 -0
- package/dist-es/models/errors.js +8 -8
- package/dist-es/pagination/ListRoute53HealthChecksInRegionPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +132 -11
- package/dist-types/ARCRegionSwitch.d.ts +7 -0
- package/dist-types/ARCRegionSwitchClient.d.ts +3 -2
- package/dist-types/commands/CreatePlanCommand.d.ts +76 -4
- package/dist-types/commands/GetPlanCommand.d.ts +38 -2
- package/dist-types/commands/GetPlanExecutionCommand.d.ts +52 -2
- package/dist-types/commands/GetPlanInRegionCommand.d.ts +38 -2
- package/dist-types/commands/ListPlanExecutionEventsCommand.d.ts +2 -2
- package/dist-types/commands/ListRoute53HealthChecksCommand.d.ts +1 -0
- package/dist-types/commands/ListRoute53HealthChecksInRegionCommand.d.ts +133 -0
- package/dist-types/commands/UpdatePlanCommand.d.ts +76 -4
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/enums.d.ts +51 -0
- package/dist-types/models/errors.d.ts +8 -8
- package/dist-types/models/models_0.d.ts +302 -2
- package/dist-types/pagination/ListRoute53HealthChecksInRegionPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +14 -2
- package/dist-types/ts3.4/ARCRegionSwitch.d.ts +17 -0
- package/dist-types/ts3.4/ARCRegionSwitchClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListRoute53HealthChecksInRegionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +27 -0
- package/dist-types/ts3.4/models/errors.d.ts +6 -6
- package/dist-types/ts3.4/models/models_0.d.ts +120 -0
- package/dist-types/ts3.4/pagination/ListRoute53HealthChecksInRegionPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +14 -1
- package/package.json +34 -34
package/dist-es/models/errors.js
CHANGED
|
@@ -35,27 +35,27 @@ export class InternalServerException extends __BaseException {
|
|
|
35
35
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
|
-
export class
|
|
39
|
-
name = "
|
|
38
|
+
export class IllegalArgumentException extends __BaseException {
|
|
39
|
+
name = "IllegalArgumentException";
|
|
40
40
|
$fault = "client";
|
|
41
41
|
constructor(opts) {
|
|
42
42
|
super({
|
|
43
|
-
name: "
|
|
43
|
+
name: "IllegalArgumentException",
|
|
44
44
|
$fault: "client",
|
|
45
45
|
...opts,
|
|
46
46
|
});
|
|
47
|
-
Object.setPrototypeOf(this,
|
|
47
|
+
Object.setPrototypeOf(this, IllegalArgumentException.prototype);
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
|
-
export class
|
|
51
|
-
name = "
|
|
50
|
+
export class IllegalStateException extends __BaseException {
|
|
51
|
+
name = "IllegalStateException";
|
|
52
52
|
$fault = "client";
|
|
53
53
|
constructor(opts) {
|
|
54
54
|
super({
|
|
55
|
-
name: "
|
|
55
|
+
name: "IllegalStateException",
|
|
56
56
|
$fault: "client",
|
|
57
57
|
...opts,
|
|
58
58
|
});
|
|
59
|
-
Object.setPrototypeOf(this,
|
|
59
|
+
Object.setPrototypeOf(this, IllegalStateException.prototype);
|
|
60
60
|
}
|
|
61
61
|
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ARCRegionSwitchClient } from "../ARCRegionSwitchClient";
|
|
3
|
+
import { ListRoute53HealthChecksInRegionCommand, } from "../commands/ListRoute53HealthChecksInRegionCommand";
|
|
4
|
+
export const paginateListRoute53HealthChecksInRegion = createPaginator(ARCRegionSwitchClient, ListRoute53HealthChecksInRegionCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -5,4 +5,5 @@ export * from "./ListPlanExecutionEventsPaginator";
|
|
|
5
5
|
export * from "./ListPlanExecutionsPaginator";
|
|
6
6
|
export * from "./ListPlansInRegionPaginator";
|
|
7
7
|
export * from "./ListPlansPaginator";
|
|
8
|
+
export * from "./ListRoute53HealthChecksInRegionPaginator";
|
|
8
9
|
export * from "./ListRoute53HealthChecksPaginator";
|
|
@@ -19,6 +19,8 @@ const _CPER = "CancelPlanExecutionRequest";
|
|
|
19
19
|
const _CPERa = "CancelPlanExecutionResponse";
|
|
20
20
|
const _CPR = "CreatePlanRequest";
|
|
21
21
|
const _CPRr = "CreatePlanResponse";
|
|
22
|
+
const _DDC = "DocumentDbConfiguration";
|
|
23
|
+
const _DDU = "DocumentDbUngraceful";
|
|
22
24
|
const _DP = "DeletePlan";
|
|
23
25
|
const _DPR = "DeletePlanRequest";
|
|
24
26
|
const _DPRe = "DeletePlanResponse";
|
|
@@ -34,6 +36,7 @@ const _ERSC = "EksResourceScalingConfiguration";
|
|
|
34
36
|
const _ERSU = "EksResourceScalingUngraceful";
|
|
35
37
|
const _EU = "Ec2Ungraceful";
|
|
36
38
|
const _EUc = "EcsUngraceful";
|
|
39
|
+
const _FRO = "FailedReportOutput";
|
|
37
40
|
const _GAC = "GlobalAuroraConfiguration";
|
|
38
41
|
const _GAU = "GlobalAuroraUngraceful";
|
|
39
42
|
const _GP = "GetPlan";
|
|
@@ -48,6 +51,8 @@ const _GPIRR = "GetPlanInRegionRequest";
|
|
|
48
51
|
const _GPIRRe = "GetPlanInRegionResponse";
|
|
49
52
|
const _GPR = "GetPlanRequest";
|
|
50
53
|
const _GPRe = "GetPlanResponse";
|
|
54
|
+
const _GR = "GeneratedReport";
|
|
55
|
+
const _GRD = "GeneratedReportDetails";
|
|
51
56
|
const _IAE = "IllegalArgumentException";
|
|
52
57
|
const _ISE = "IllegalStateException";
|
|
53
58
|
const _ISEn = "InternalServerException";
|
|
@@ -70,6 +75,9 @@ const _LPIRRi = "ListPlansInRegionResponse";
|
|
|
70
75
|
const _LPR = "ListPlansRequest";
|
|
71
76
|
const _LPRi = "ListPlansResponse";
|
|
72
77
|
const _LRHC = "ListRoute53HealthChecks";
|
|
78
|
+
const _LRHCIR = "ListRoute53HealthChecksInRegion";
|
|
79
|
+
const _LRHCIRR = "ListRoute53HealthChecksInRegionRequest";
|
|
80
|
+
const _LRHCIRRi = "ListRoute53HealthChecksInRegionResponse";
|
|
73
81
|
const _LRHCR = "ListRoute53HealthChecksRequest";
|
|
74
82
|
const _LRHCRi = "ListRoute53HealthChecksResponse";
|
|
75
83
|
const _LTFR = "ListTagsForResource";
|
|
@@ -82,10 +90,14 @@ const _PEBC = "ParallelExecutionBlockConfiguration";
|
|
|
82
90
|
const _PL = "PlanList";
|
|
83
91
|
const _PW = "PlanWarnings";
|
|
84
92
|
const _RARC = "RegionAndRoutingControls";
|
|
93
|
+
const _RC = "ReportConfiguration";
|
|
85
94
|
const _RHC = "Route53HealthCheck";
|
|
86
95
|
const _RHCC = "Route53HealthCheckConfiguration";
|
|
87
96
|
const _RHCL = "Route53HealthCheckList";
|
|
88
97
|
const _RNFE = "ResourceNotFoundException";
|
|
98
|
+
const _RO = "ReportOutput";
|
|
99
|
+
const _ROC = "ReportOutputConfiguration";
|
|
100
|
+
const _ROL = "ReportOutputList";
|
|
89
101
|
const _RRRS = "Route53ResourceRecordSet";
|
|
90
102
|
const _RRRSL = "Route53ResourceRecordSetList";
|
|
91
103
|
const _RSPC = "RegionSwitchPlanConfiguration";
|
|
@@ -96,6 +108,8 @@ const _SL = "ServiceList";
|
|
|
96
108
|
const _SPE = "StartPlanExecution";
|
|
97
109
|
const _SPER = "StartPlanExecutionRequest";
|
|
98
110
|
const _SPERt = "StartPlanExecutionResponse";
|
|
111
|
+
const _SRO = "S3ReportOutput";
|
|
112
|
+
const _SROC = "S3ReportOutputConfiguration";
|
|
99
113
|
const _SS = "StepState";
|
|
100
114
|
const _SSt = "StepStates";
|
|
101
115
|
const _St = "Step";
|
|
@@ -136,6 +150,8 @@ const _ac = "action";
|
|
|
136
150
|
const _ap = "approval";
|
|
137
151
|
const _as = "asgs";
|
|
138
152
|
const _b = "behavior";
|
|
153
|
+
const _bO = "bucketOwner";
|
|
154
|
+
const _bP = "bucketPath";
|
|
139
155
|
const _c = "comment";
|
|
140
156
|
const _cA = "clusterArn";
|
|
141
157
|
const _cALC = "customActionLambdaConfig";
|
|
@@ -146,6 +162,7 @@ const _co = "conditions";
|
|
|
146
162
|
const _con = "condition";
|
|
147
163
|
const _d = "description";
|
|
148
164
|
const _dCA = "databaseClusterArns";
|
|
165
|
+
const _dDC = "documentDbConfig";
|
|
149
166
|
const _dR = "deactivateRegion";
|
|
150
167
|
const _e = "error";
|
|
151
168
|
const _eA = "executionAction";
|
|
@@ -155,17 +172,21 @@ const _eBC = "executionBlockConfiguration";
|
|
|
155
172
|
const _eBT = "executionBlockType";
|
|
156
173
|
const _eC = "eksClusters";
|
|
157
174
|
const _eCIC = "ecsCapacityIncreaseConfig";
|
|
175
|
+
const _eCr = "errorCode";
|
|
158
176
|
const _eI = "executionId";
|
|
159
177
|
const _eIv = "eventId";
|
|
160
178
|
const _eIx = "externalId";
|
|
179
|
+
const _eM = "errorMessage";
|
|
161
180
|
const _eR = "executionRegion";
|
|
162
181
|
const _eRSC = "eksResourceScalingConfig";
|
|
163
182
|
const _eRx = "executionRole";
|
|
164
183
|
const _eS = "executionState";
|
|
165
184
|
const _eSv = "evaluationState";
|
|
166
185
|
const _eT = "endTime";
|
|
186
|
+
const _fRO = "failedReportOutput";
|
|
167
187
|
const _gAC = "globalAuroraConfig";
|
|
168
188
|
const _gCI = "globalClusterIdentifier";
|
|
189
|
+
const _gRD = "generatedReportDetails";
|
|
169
190
|
const _hC = "healthChecks";
|
|
170
191
|
const _hCI = "healthCheckId";
|
|
171
192
|
const _hE = "httpError";
|
|
@@ -198,11 +219,14 @@ const _r = "regions";
|
|
|
198
219
|
const _rA = "recoveryApproach";
|
|
199
220
|
const _rARC = "regionAndRoutingControls";
|
|
200
221
|
const _rAe = "resourceArn";
|
|
222
|
+
const _rC = "reportConfiguration";
|
|
201
223
|
const _rCA = "routingControlArn";
|
|
224
|
+
const _rGT = "reportGenerationTime";
|
|
202
225
|
const _rHCC = "route53HealthCheckConfig";
|
|
203
226
|
const _rI = "resourceIdentifier";
|
|
204
227
|
const _rIM = "retryIntervalMinutes";
|
|
205
228
|
const _rN = "recordName";
|
|
229
|
+
const _rO = "reportOutput";
|
|
206
230
|
const _rS = "recordSets";
|
|
207
231
|
const _rSI = "recordSetIdentifier";
|
|
208
232
|
const _rSPC = "regionSwitchPlanConfig";
|
|
@@ -214,9 +238,12 @@ const _re = "resources";
|
|
|
214
238
|
const _reg = "region";
|
|
215
239
|
const _s = "state";
|
|
216
240
|
const _sA = "serviceArn";
|
|
241
|
+
const _sC = "s3Configuration";
|
|
217
242
|
const _sM = "stepMode";
|
|
218
243
|
const _sN = "stepName";
|
|
244
|
+
const _sOK = "s3ObjectKey";
|
|
219
245
|
const _sR = "scalingResources";
|
|
246
|
+
const _sRO = "s3ReportOutput";
|
|
220
247
|
const _sS = "stepStates";
|
|
221
248
|
const _sT = "startTime";
|
|
222
249
|
const _se = "services";
|
|
@@ -292,8 +319,21 @@ export var CreatePlanRequest$ = [
|
|
|
292
319
|
n0,
|
|
293
320
|
_CPR,
|
|
294
321
|
0,
|
|
295
|
-
[_d, _w, _eRx, _rTOM, _aA, _t, _n, _r, _rA, _pR, _ta],
|
|
296
|
-
[
|
|
322
|
+
[_d, _w, _eRx, _rTOM, _aA, _t, _rC, _n, _r, _rA, _pR, _ta],
|
|
323
|
+
[
|
|
324
|
+
0,
|
|
325
|
+
() => WorkflowList,
|
|
326
|
+
0,
|
|
327
|
+
1,
|
|
328
|
+
() => AssociatedAlarmMap,
|
|
329
|
+
() => TriggerList,
|
|
330
|
+
() => ReportConfiguration$,
|
|
331
|
+
0,
|
|
332
|
+
64 | 0,
|
|
333
|
+
0,
|
|
334
|
+
0,
|
|
335
|
+
128 | 0,
|
|
336
|
+
],
|
|
297
337
|
];
|
|
298
338
|
export var CreatePlanResponse$ = [3, n0, _CPRr, 0, [_p], [() => Plan$]];
|
|
299
339
|
export var CustomActionLambdaConfiguration$ = [
|
|
@@ -306,6 +346,15 @@ export var CustomActionLambdaConfiguration$ = [
|
|
|
306
346
|
];
|
|
307
347
|
export var DeletePlanRequest$ = [3, n0, _DPR, 0, [_a], [0]];
|
|
308
348
|
export var DeletePlanResponse$ = [3, n0, _DPRe, 0, [], []];
|
|
349
|
+
export var DocumentDbConfiguration$ = [
|
|
350
|
+
3,
|
|
351
|
+
n0,
|
|
352
|
+
_DDC,
|
|
353
|
+
0,
|
|
354
|
+
[_tM, _cAR, _eIx, _b, _u, _gCI, _dCA],
|
|
355
|
+
[1, 0, 0, 0, () => DocumentDbUngraceful$, 0, 64 | 0],
|
|
356
|
+
];
|
|
357
|
+
export var DocumentDbUngraceful$ = [3, n0, _DDU, 0, [_u], [0]];
|
|
309
358
|
export var Ec2AsgCapacityIncreaseConfiguration$ = [
|
|
310
359
|
3,
|
|
311
360
|
n0,
|
|
@@ -351,6 +400,8 @@ export var ExecutionEvent$ = [
|
|
|
351
400
|
[_ti, _ty, _sN, _eBT, _re, _e, _d, _eIv, _pEI],
|
|
352
401
|
[4, 0, 0, 0, 64 | 0, 0, 0, 0, 0],
|
|
353
402
|
];
|
|
403
|
+
export var FailedReportOutput$ = [3, n0, _FRO, 0, [_eCr, _eM], [0, 0]];
|
|
404
|
+
export var GeneratedReport$ = [3, n0, _GR, 0, [_rGT, _rO], [4, () => ReportOutput$]];
|
|
354
405
|
export var GetPlanEvaluationStatusRequest$ = [3, n0, _GPESR, 0, [_pA, _mR, _nT], [0, 1, 0]];
|
|
355
406
|
export var GetPlanEvaluationStatusResponse$ = [
|
|
356
407
|
3,
|
|
@@ -366,8 +417,8 @@ export var GetPlanExecutionResponse$ = [
|
|
|
366
417
|
n0,
|
|
367
418
|
_GPERe,
|
|
368
419
|
0,
|
|
369
|
-
[_pA, _eI, _v, _uA, _c, _sT, _eT, _m, _eS, _eA, _eR, _sS, _p, _aRT, _nT],
|
|
370
|
-
[0, 0, 0, 4, 0, 4, 4, 0, 0, 0, 0, () => StepStates, () => Plan$, 0, 0],
|
|
420
|
+
[_pA, _eI, _v, _uA, _c, _sT, _eT, _m, _eS, _eA, _eR, _sS, _p, _aRT, _gRD, _nT],
|
|
421
|
+
[0, 0, 0, 4, 0, 4, 4, 0, 0, 0, 0, () => StepStates, () => Plan$, 0, () => GeneratedReportDetails, 0],
|
|
371
422
|
];
|
|
372
423
|
export var GetPlanInRegionRequest$ = [3, n0, _GPIRR, 0, [_a], [0]];
|
|
373
424
|
export var GetPlanInRegionResponse$ = [3, n0, _GPIRRe, 0, [_p], [() => Plan$]];
|
|
@@ -421,6 +472,22 @@ export var ListPlansInRegionRequest$ = [3, n0, _LPIRR, 0, [_mR, _nT], [1, 0]];
|
|
|
421
472
|
export var ListPlansInRegionResponse$ = [3, n0, _LPIRRi, 0, [_pl, _nT], [() => PlanList, 0]];
|
|
422
473
|
export var ListPlansRequest$ = [3, n0, _LPR, 0, [_mR, _nT], [1, 0]];
|
|
423
474
|
export var ListPlansResponse$ = [3, n0, _LPRi, 0, [_pl, _nT], [() => PlanList, 0]];
|
|
475
|
+
export var ListRoute53HealthChecksInRegionRequest$ = [
|
|
476
|
+
3,
|
|
477
|
+
n0,
|
|
478
|
+
_LRHCIRR,
|
|
479
|
+
0,
|
|
480
|
+
[_a, _hZI, _rN, _mR, _nT],
|
|
481
|
+
[0, 0, 0, 1, 0],
|
|
482
|
+
];
|
|
483
|
+
export var ListRoute53HealthChecksInRegionResponse$ = [
|
|
484
|
+
3,
|
|
485
|
+
n0,
|
|
486
|
+
_LRHCIRRi,
|
|
487
|
+
0,
|
|
488
|
+
[_hC, _nT],
|
|
489
|
+
[() => Route53HealthCheckList, 0],
|
|
490
|
+
];
|
|
424
491
|
export var ListRoute53HealthChecksRequest$ = [
|
|
425
492
|
3,
|
|
426
493
|
n0,
|
|
@@ -446,10 +513,27 @@ export var Plan$ = [
|
|
|
446
513
|
n0,
|
|
447
514
|
_P,
|
|
448
515
|
0,
|
|
449
|
-
[_a, _d, _w, _eRx, _rTOM, _aA, _t, _n, _r, _rA, _pR, _o, _v, _uA],
|
|
450
|
-
[
|
|
516
|
+
[_a, _d, _w, _eRx, _rTOM, _aA, _t, _rC, _n, _r, _rA, _pR, _o, _v, _uA],
|
|
517
|
+
[
|
|
518
|
+
0,
|
|
519
|
+
0,
|
|
520
|
+
() => WorkflowList,
|
|
521
|
+
0,
|
|
522
|
+
1,
|
|
523
|
+
() => AssociatedAlarmMap,
|
|
524
|
+
() => TriggerList,
|
|
525
|
+
() => ReportConfiguration$,
|
|
526
|
+
0,
|
|
527
|
+
64 | 0,
|
|
528
|
+
0,
|
|
529
|
+
0,
|
|
530
|
+
0,
|
|
531
|
+
0,
|
|
532
|
+
4,
|
|
533
|
+
],
|
|
451
534
|
];
|
|
452
535
|
export var RegionSwitchPlanConfiguration$ = [3, n0, _RSPC, 0, [_cAR, _eIx, _a], [0, 0, 0]];
|
|
536
|
+
export var ReportConfiguration$ = [3, n0, _RC, 0, [_rO], [() => ReportOutputList]];
|
|
453
537
|
export var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _cl, [_hE]: 404 }, [_me], [0]];
|
|
454
538
|
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
455
539
|
export var ResourceWarning$ = [
|
|
@@ -460,7 +544,14 @@ export var ResourceWarning$ = [
|
|
|
460
544
|
[_wo, _v, _sN, _rAe, _wS, _wUT, _wM],
|
|
461
545
|
[() => MinimalWorkflow$, 0, 0, 0, 0, 4, 0],
|
|
462
546
|
];
|
|
463
|
-
export var Route53HealthCheck$ = [
|
|
547
|
+
export var Route53HealthCheck$ = [
|
|
548
|
+
3,
|
|
549
|
+
n0,
|
|
550
|
+
_RHC,
|
|
551
|
+
0,
|
|
552
|
+
[_hZI, _rN, _hCI, _sta, _reg],
|
|
553
|
+
[0, 0, 0, 0, 0],
|
|
554
|
+
];
|
|
464
555
|
export var Route53HealthCheckConfiguration$ = [
|
|
465
556
|
3,
|
|
466
557
|
n0,
|
|
@@ -470,6 +561,8 @@ export var Route53HealthCheckConfiguration$ = [
|
|
|
470
561
|
[1, 0, 0, 0, 0, () => Route53ResourceRecordSetList],
|
|
471
562
|
];
|
|
472
563
|
export var Route53ResourceRecordSet$ = [3, n0, _RRRS, 0, [_rSI, _reg], [0, 0]];
|
|
564
|
+
export var S3ReportOutput$ = [3, n0, _SRO, 0, [_sOK], [0]];
|
|
565
|
+
export var S3ReportOutputConfiguration$ = [3, n0, _SROC, 0, [_bP, _bO], [0, 0]];
|
|
473
566
|
export var Service$ = [3, n0, _S, 0, [_cAR, _eIx, _cA, _sA], [0, 0, 0, 0]];
|
|
474
567
|
export var StartPlanExecutionRequest$ = [
|
|
475
568
|
3,
|
|
@@ -525,8 +618,8 @@ export var UpdatePlanRequest$ = [
|
|
|
525
618
|
n0,
|
|
526
619
|
_UPR,
|
|
527
620
|
0,
|
|
528
|
-
[_a, _d, _w, _eRx, _rTOM, _aA, _t],
|
|
529
|
-
[0, 0, () => WorkflowList, 0, 1, () => AssociatedAlarmMap, () => TriggerList],
|
|
621
|
+
[_a, _d, _w, _eRx, _rTOM, _aA, _t, _rC],
|
|
622
|
+
[0, 0, () => WorkflowList, 0, 1, () => AssociatedAlarmMap, () => TriggerList, () => ReportConfiguration$],
|
|
530
623
|
];
|
|
531
624
|
export var UpdatePlanResponse$ = [3, n0, _UPRp, 0, [_p], [() => Plan$]];
|
|
532
625
|
export var Workflow$ = [3, n0, _W, 0, [_st, _wTA, _wTR, _wD], [() => Steps, 0, 0, 0]];
|
|
@@ -543,13 +636,16 @@ var AbbreviatedExecutionsList = [1, n0, _AEL, 0, () => AbbreviatedExecution$];
|
|
|
543
636
|
var ArcRoutingControlStates = [1, n0, _ARCSr, 0, () => ArcRoutingControlState$];
|
|
544
637
|
var AsgList = [1, n0, _AL, 0, () => Asg$];
|
|
545
638
|
var AuroraClusterArns = 64 | 0;
|
|
639
|
+
var DocumentDbClusterArns = 64 | 0;
|
|
546
640
|
var EksClusters = [1, n0, _ECk, 0, () => EksCluster$];
|
|
547
641
|
var ExecutionEventList = [1, n0, _EEL, 0, () => ExecutionEvent$];
|
|
642
|
+
var GeneratedReportDetails = [1, n0, _GRD, 0, () => GeneratedReport$];
|
|
548
643
|
var KubernetesScalingApps = [1, n0, _KSA, 0, () => KubernetesScalingApplication];
|
|
549
644
|
var LambdaList = [1, n0, _LL, 0, () => Lambdas$];
|
|
550
645
|
var PlanList = [1, n0, _PL, 0, () => AbbreviatedPlan$];
|
|
551
646
|
var PlanWarnings = [1, n0, _PW, 0, () => ResourceWarning$];
|
|
552
647
|
var RegionList = 64 | 0;
|
|
648
|
+
var ReportOutputList = [1, n0, _ROL, 0, () => ReportOutputConfiguration$];
|
|
553
649
|
var Resources = 64 | 0;
|
|
554
650
|
var Route53HealthCheckList = [1, n0, _RHCL, 0, () => Route53HealthCheck$];
|
|
555
651
|
var Route53ResourceRecordSetList = [1, n0, _RRRSL, 0, () => Route53ResourceRecordSet$];
|
|
@@ -566,11 +662,11 @@ var RegionalScalingResource = [2, n0, _RSR, 0, 0, () => KubernetesScalingResourc
|
|
|
566
662
|
var RegionAndRoutingControls = [2, n0, _RARC, 0, 0, () => ArcRoutingControlStates];
|
|
567
663
|
var Tags = 128 | 0;
|
|
568
664
|
export var ExecutionBlockConfiguration$ = [
|
|
569
|
-
|
|
665
|
+
4,
|
|
570
666
|
n0,
|
|
571
667
|
_EBC,
|
|
572
668
|
0,
|
|
573
|
-
[_cALC, _eACIC, _eAC, _aRCC, _gAC, _pC, _rSPC, _eCIC, _eRSC, _rHCC],
|
|
669
|
+
[_cALC, _eACIC, _eAC, _aRCC, _gAC, _pC, _rSPC, _eCIC, _eRSC, _rHCC, _dDC],
|
|
574
670
|
[
|
|
575
671
|
() => CustomActionLambdaConfiguration$,
|
|
576
672
|
() => Ec2AsgCapacityIncreaseConfiguration$,
|
|
@@ -582,8 +678,25 @@ export var ExecutionBlockConfiguration$ = [
|
|
|
582
678
|
() => EcsCapacityIncreaseConfiguration$,
|
|
583
679
|
() => EksResourceScalingConfiguration$,
|
|
584
680
|
() => Route53HealthCheckConfiguration$,
|
|
681
|
+
() => DocumentDbConfiguration$,
|
|
585
682
|
],
|
|
586
683
|
];
|
|
684
|
+
export var ReportOutput$ = [
|
|
685
|
+
4,
|
|
686
|
+
n0,
|
|
687
|
+
_RO,
|
|
688
|
+
0,
|
|
689
|
+
[_sRO, _fRO],
|
|
690
|
+
[() => S3ReportOutput$, () => FailedReportOutput$],
|
|
691
|
+
];
|
|
692
|
+
export var ReportOutputConfiguration$ = [
|
|
693
|
+
4,
|
|
694
|
+
n0,
|
|
695
|
+
_ROC,
|
|
696
|
+
0,
|
|
697
|
+
[_sC],
|
|
698
|
+
[() => S3ReportOutputConfiguration$],
|
|
699
|
+
];
|
|
587
700
|
export var ApprovePlanExecutionStep$ = [
|
|
588
701
|
9,
|
|
589
702
|
n0,
|
|
@@ -660,6 +773,14 @@ export var ListRoute53HealthChecks$ = [
|
|
|
660
773
|
() => ListRoute53HealthChecksRequest$,
|
|
661
774
|
() => ListRoute53HealthChecksResponse$,
|
|
662
775
|
];
|
|
776
|
+
export var ListRoute53HealthChecksInRegion$ = [
|
|
777
|
+
9,
|
|
778
|
+
n0,
|
|
779
|
+
_LRHCIR,
|
|
780
|
+
0,
|
|
781
|
+
() => ListRoute53HealthChecksInRegionRequest$,
|
|
782
|
+
() => ListRoute53HealthChecksInRegionResponse$,
|
|
783
|
+
];
|
|
663
784
|
export var ListTagsForResource$ = [
|
|
664
785
|
9,
|
|
665
786
|
n0,
|
|
@@ -13,6 +13,7 @@ import { ListPlanExecutionsCommandInput, ListPlanExecutionsCommandOutput } from
|
|
|
13
13
|
import { ListPlansCommandInput, ListPlansCommandOutput } from "./commands/ListPlansCommand";
|
|
14
14
|
import { ListPlansInRegionCommandInput, ListPlansInRegionCommandOutput } from "./commands/ListPlansInRegionCommand";
|
|
15
15
|
import { ListRoute53HealthChecksCommandInput, ListRoute53HealthChecksCommandOutput } from "./commands/ListRoute53HealthChecksCommand";
|
|
16
|
+
import { ListRoute53HealthChecksInRegionCommandInput, ListRoute53HealthChecksInRegionCommandOutput } from "./commands/ListRoute53HealthChecksInRegionCommand";
|
|
16
17
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
17
18
|
import { StartPlanExecutionCommandInput, StartPlanExecutionCommandOutput } from "./commands/StartPlanExecutionCommand";
|
|
18
19
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
@@ -101,6 +102,12 @@ export interface ARCRegionSwitch {
|
|
|
101
102
|
listRoute53HealthChecks(args: ListRoute53HealthChecksCommandInput, options?: __HttpHandlerOptions): Promise<ListRoute53HealthChecksCommandOutput>;
|
|
102
103
|
listRoute53HealthChecks(args: ListRoute53HealthChecksCommandInput, cb: (err: any, data?: ListRoute53HealthChecksCommandOutput) => void): void;
|
|
103
104
|
listRoute53HealthChecks(args: ListRoute53HealthChecksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRoute53HealthChecksCommandOutput) => void): void;
|
|
105
|
+
/**
|
|
106
|
+
* @see {@link ListRoute53HealthChecksInRegionCommand}
|
|
107
|
+
*/
|
|
108
|
+
listRoute53HealthChecksInRegion(args: ListRoute53HealthChecksInRegionCommandInput, options?: __HttpHandlerOptions): Promise<ListRoute53HealthChecksInRegionCommandOutput>;
|
|
109
|
+
listRoute53HealthChecksInRegion(args: ListRoute53HealthChecksInRegionCommandInput, cb: (err: any, data?: ListRoute53HealthChecksInRegionCommandOutput) => void): void;
|
|
110
|
+
listRoute53HealthChecksInRegion(args: ListRoute53HealthChecksInRegionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRoute53HealthChecksInRegionCommandOutput) => void): void;
|
|
104
111
|
/**
|
|
105
112
|
* @see {@link ListTagsForResourceCommand}
|
|
106
113
|
*/
|
|
@@ -20,6 +20,7 @@ import { ListPlanExecutionsCommandInput, ListPlanExecutionsCommandOutput } from
|
|
|
20
20
|
import { ListPlansCommandInput, ListPlansCommandOutput } from "./commands/ListPlansCommand";
|
|
21
21
|
import { ListPlansInRegionCommandInput, ListPlansInRegionCommandOutput } from "./commands/ListPlansInRegionCommand";
|
|
22
22
|
import { ListRoute53HealthChecksCommandInput, ListRoute53HealthChecksCommandOutput } from "./commands/ListRoute53HealthChecksCommand";
|
|
23
|
+
import { ListRoute53HealthChecksInRegionCommandInput, ListRoute53HealthChecksInRegionCommandOutput } from "./commands/ListRoute53HealthChecksInRegionCommand";
|
|
23
24
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
24
25
|
import { StartPlanExecutionCommandInput, StartPlanExecutionCommandOutput } from "./commands/StartPlanExecutionCommand";
|
|
25
26
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
@@ -33,11 +34,11 @@ export { __Client };
|
|
|
33
34
|
/**
|
|
34
35
|
* @public
|
|
35
36
|
*/
|
|
36
|
-
export type ServiceInputTypes = ApprovePlanExecutionStepCommandInput | CancelPlanExecutionCommandInput | CreatePlanCommandInput | DeletePlanCommandInput | GetPlanCommandInput | GetPlanEvaluationStatusCommandInput | GetPlanExecutionCommandInput | GetPlanInRegionCommandInput | ListPlanExecutionEventsCommandInput | ListPlanExecutionsCommandInput | ListPlansCommandInput | ListPlansInRegionCommandInput | ListRoute53HealthChecksCommandInput | ListTagsForResourceCommandInput | StartPlanExecutionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdatePlanCommandInput | UpdatePlanExecutionCommandInput | UpdatePlanExecutionStepCommandInput;
|
|
37
|
+
export type ServiceInputTypes = ApprovePlanExecutionStepCommandInput | CancelPlanExecutionCommandInput | CreatePlanCommandInput | DeletePlanCommandInput | GetPlanCommandInput | GetPlanEvaluationStatusCommandInput | GetPlanExecutionCommandInput | GetPlanInRegionCommandInput | ListPlanExecutionEventsCommandInput | ListPlanExecutionsCommandInput | ListPlansCommandInput | ListPlansInRegionCommandInput | ListRoute53HealthChecksCommandInput | ListRoute53HealthChecksInRegionCommandInput | ListTagsForResourceCommandInput | StartPlanExecutionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdatePlanCommandInput | UpdatePlanExecutionCommandInput | UpdatePlanExecutionStepCommandInput;
|
|
37
38
|
/**
|
|
38
39
|
* @public
|
|
39
40
|
*/
|
|
40
|
-
export type ServiceOutputTypes = ApprovePlanExecutionStepCommandOutput | CancelPlanExecutionCommandOutput | CreatePlanCommandOutput | DeletePlanCommandOutput | GetPlanCommandOutput | GetPlanEvaluationStatusCommandOutput | GetPlanExecutionCommandOutput | GetPlanInRegionCommandOutput | ListPlanExecutionEventsCommandOutput | ListPlanExecutionsCommandOutput | ListPlansCommandOutput | ListPlansInRegionCommandOutput | ListRoute53HealthChecksCommandOutput | ListTagsForResourceCommandOutput | StartPlanExecutionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdatePlanCommandOutput | UpdatePlanExecutionCommandOutput | UpdatePlanExecutionStepCommandOutput;
|
|
41
|
+
export type ServiceOutputTypes = ApprovePlanExecutionStepCommandOutput | CancelPlanExecutionCommandOutput | CreatePlanCommandOutput | DeletePlanCommandOutput | GetPlanCommandOutput | GetPlanEvaluationStatusCommandOutput | GetPlanExecutionCommandOutput | GetPlanInRegionCommandOutput | ListPlanExecutionEventsCommandOutput | ListPlanExecutionsCommandOutput | ListPlansCommandOutput | ListPlansInRegionCommandOutput | ListRoute53HealthChecksCommandOutput | ListRoute53HealthChecksInRegionCommandOutput | ListTagsForResourceCommandOutput | StartPlanExecutionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdatePlanCommandOutput | UpdatePlanExecutionCommandOutput | UpdatePlanExecutionStepCommandOutput;
|
|
41
42
|
/**
|
|
42
43
|
* @public
|
|
43
44
|
*/
|
|
@@ -238,8 +238,21 @@ declare const CreatePlanCommand_base: {
|
|
|
238
238
|
* },
|
|
239
239
|
* ],
|
|
240
240
|
* },
|
|
241
|
+
* documentDbConfig: { // DocumentDbConfiguration
|
|
242
|
+
* timeoutMinutes: Number("int"),
|
|
243
|
+
* crossAccountRole: "STRING_VALUE",
|
|
244
|
+
* externalId: "STRING_VALUE",
|
|
245
|
+
* behavior: "switchoverOnly" || "failover", // required
|
|
246
|
+
* ungraceful: { // DocumentDbUngraceful
|
|
247
|
+
* ungraceful: "failover",
|
|
248
|
+
* },
|
|
249
|
+
* globalClusterIdentifier: "STRING_VALUE", // required
|
|
250
|
+
* databaseClusterArns: [ // DocumentDbClusterArns // required
|
|
251
|
+
* "STRING_VALUE",
|
|
252
|
+
* ],
|
|
253
|
+
* },
|
|
241
254
|
* },
|
|
242
|
-
* executionBlockType: "CustomActionLambda" || "ManualApproval" || "AuroraGlobalDatabase" || "EC2AutoScaling" || "ARCRoutingControl" || "ARCRegionSwitchPlan" || "Parallel" || "ECSServiceScaling" || "EKSResourceScaling" || "Route53HealthCheck", // required
|
|
255
|
+
* executionBlockType: "CustomActionLambda" || "ManualApproval" || "AuroraGlobalDatabase" || "EC2AutoScaling" || "ARCRoutingControl" || "ARCRegionSwitchPlan" || "Parallel" || "ECSServiceScaling" || "EKSResourceScaling" || "Route53HealthCheck" || "DocumentDb", // required
|
|
243
256
|
* },
|
|
244
257
|
* ],
|
|
245
258
|
* },
|
|
@@ -307,8 +320,21 @@ declare const CreatePlanCommand_base: {
|
|
|
307
320
|
* },
|
|
308
321
|
* ],
|
|
309
322
|
* },
|
|
323
|
+
* documentDbConfig: {
|
|
324
|
+
* timeoutMinutes: Number("int"),
|
|
325
|
+
* crossAccountRole: "STRING_VALUE",
|
|
326
|
+
* externalId: "STRING_VALUE",
|
|
327
|
+
* behavior: "switchoverOnly" || "failover", // required
|
|
328
|
+
* ungraceful: {
|
|
329
|
+
* ungraceful: "failover",
|
|
330
|
+
* },
|
|
331
|
+
* globalClusterIdentifier: "STRING_VALUE", // required
|
|
332
|
+
* databaseClusterArns: [ // required
|
|
333
|
+
* "STRING_VALUE",
|
|
334
|
+
* ],
|
|
335
|
+
* },
|
|
310
336
|
* },
|
|
311
|
-
* executionBlockType: "CustomActionLambda" || "ManualApproval" || "AuroraGlobalDatabase" || "EC2AutoScaling" || "ARCRoutingControl" || "ARCRegionSwitchPlan" || "Parallel" || "ECSServiceScaling" || "EKSResourceScaling" || "Route53HealthCheck", // required
|
|
337
|
+
* executionBlockType: "CustomActionLambda" || "ManualApproval" || "AuroraGlobalDatabase" || "EC2AutoScaling" || "ARCRoutingControl" || "ARCRegionSwitchPlan" || "Parallel" || "ECSServiceScaling" || "EKSResourceScaling" || "Route53HealthCheck" || "DocumentDb", // required
|
|
312
338
|
* },
|
|
313
339
|
* ],
|
|
314
340
|
* workflowTargetAction: "activate" || "deactivate", // required
|
|
@@ -340,6 +366,16 @@ declare const CreatePlanCommand_base: {
|
|
|
340
366
|
* minDelayMinutesBetweenExecutions: Number("int"), // required
|
|
341
367
|
* },
|
|
342
368
|
* ],
|
|
369
|
+
* reportConfiguration: { // ReportConfiguration
|
|
370
|
+
* reportOutput: [ // ReportOutputList
|
|
371
|
+
* { // ReportOutputConfiguration Union: only one key present
|
|
372
|
+
* s3Configuration: { // S3ReportOutputConfiguration
|
|
373
|
+
* bucketPath: "STRING_VALUE",
|
|
374
|
+
* bucketOwner: "STRING_VALUE",
|
|
375
|
+
* },
|
|
376
|
+
* },
|
|
377
|
+
* ],
|
|
378
|
+
* },
|
|
343
379
|
* name: "STRING_VALUE", // required
|
|
344
380
|
* regions: [ // RegionList // required
|
|
345
381
|
* "STRING_VALUE",
|
|
@@ -556,8 +592,21 @@ declare const CreatePlanCommand_base: {
|
|
|
556
592
|
* // },
|
|
557
593
|
* // ],
|
|
558
594
|
* // },
|
|
595
|
+
* // documentDbConfig: { // DocumentDbConfiguration
|
|
596
|
+
* // timeoutMinutes: Number("int"),
|
|
597
|
+
* // crossAccountRole: "STRING_VALUE",
|
|
598
|
+
* // externalId: "STRING_VALUE",
|
|
599
|
+
* // behavior: "switchoverOnly" || "failover", // required
|
|
600
|
+
* // ungraceful: { // DocumentDbUngraceful
|
|
601
|
+
* // ungraceful: "failover",
|
|
602
|
+
* // },
|
|
603
|
+
* // globalClusterIdentifier: "STRING_VALUE", // required
|
|
604
|
+
* // databaseClusterArns: [ // DocumentDbClusterArns // required
|
|
605
|
+
* // "STRING_VALUE",
|
|
606
|
+
* // ],
|
|
607
|
+
* // },
|
|
559
608
|
* // },
|
|
560
|
-
* // executionBlockType: "CustomActionLambda" || "ManualApproval" || "AuroraGlobalDatabase" || "EC2AutoScaling" || "ARCRoutingControl" || "ARCRegionSwitchPlan" || "Parallel" || "ECSServiceScaling" || "EKSResourceScaling" || "Route53HealthCheck", // required
|
|
609
|
+
* // executionBlockType: "CustomActionLambda" || "ManualApproval" || "AuroraGlobalDatabase" || "EC2AutoScaling" || "ARCRoutingControl" || "ARCRegionSwitchPlan" || "Parallel" || "ECSServiceScaling" || "EKSResourceScaling" || "Route53HealthCheck" || "DocumentDb", // required
|
|
561
610
|
* // },
|
|
562
611
|
* // ],
|
|
563
612
|
* // },
|
|
@@ -625,8 +674,21 @@ declare const CreatePlanCommand_base: {
|
|
|
625
674
|
* // },
|
|
626
675
|
* // ],
|
|
627
676
|
* // },
|
|
677
|
+
* // documentDbConfig: {
|
|
678
|
+
* // timeoutMinutes: Number("int"),
|
|
679
|
+
* // crossAccountRole: "STRING_VALUE",
|
|
680
|
+
* // externalId: "STRING_VALUE",
|
|
681
|
+
* // behavior: "switchoverOnly" || "failover", // required
|
|
682
|
+
* // ungraceful: {
|
|
683
|
+
* // ungraceful: "failover",
|
|
684
|
+
* // },
|
|
685
|
+
* // globalClusterIdentifier: "STRING_VALUE", // required
|
|
686
|
+
* // databaseClusterArns: [ // required
|
|
687
|
+
* // "STRING_VALUE",
|
|
688
|
+
* // ],
|
|
689
|
+
* // },
|
|
628
690
|
* // },
|
|
629
|
-
* // executionBlockType: "CustomActionLambda" || "ManualApproval" || "AuroraGlobalDatabase" || "EC2AutoScaling" || "ARCRoutingControl" || "ARCRegionSwitchPlan" || "Parallel" || "ECSServiceScaling" || "EKSResourceScaling" || "Route53HealthCheck", // required
|
|
691
|
+
* // executionBlockType: "CustomActionLambda" || "ManualApproval" || "AuroraGlobalDatabase" || "EC2AutoScaling" || "ARCRoutingControl" || "ARCRegionSwitchPlan" || "Parallel" || "ECSServiceScaling" || "EKSResourceScaling" || "Route53HealthCheck" || "DocumentDb", // required
|
|
630
692
|
* // },
|
|
631
693
|
* // ],
|
|
632
694
|
* // workflowTargetAction: "activate" || "deactivate", // required
|
|
@@ -658,6 +720,16 @@ declare const CreatePlanCommand_base: {
|
|
|
658
720
|
* // minDelayMinutesBetweenExecutions: Number("int"), // required
|
|
659
721
|
* // },
|
|
660
722
|
* // ],
|
|
723
|
+
* // reportConfiguration: { // ReportConfiguration
|
|
724
|
+
* // reportOutput: [ // ReportOutputList
|
|
725
|
+
* // { // ReportOutputConfiguration Union: only one key present
|
|
726
|
+
* // s3Configuration: { // S3ReportOutputConfiguration
|
|
727
|
+
* // bucketPath: "STRING_VALUE",
|
|
728
|
+
* // bucketOwner: "STRING_VALUE",
|
|
729
|
+
* // },
|
|
730
|
+
* // },
|
|
731
|
+
* // ],
|
|
732
|
+
* // },
|
|
661
733
|
* // name: "STRING_VALUE", // required
|
|
662
734
|
* // regions: [ // RegionList // required
|
|
663
735
|
* // "STRING_VALUE",
|
|
@@ -245,8 +245,21 @@ declare const GetPlanCommand_base: {
|
|
|
245
245
|
* // },
|
|
246
246
|
* // ],
|
|
247
247
|
* // },
|
|
248
|
+
* // documentDbConfig: { // DocumentDbConfiguration
|
|
249
|
+
* // timeoutMinutes: Number("int"),
|
|
250
|
+
* // crossAccountRole: "STRING_VALUE",
|
|
251
|
+
* // externalId: "STRING_VALUE",
|
|
252
|
+
* // behavior: "switchoverOnly" || "failover", // required
|
|
253
|
+
* // ungraceful: { // DocumentDbUngraceful
|
|
254
|
+
* // ungraceful: "failover",
|
|
255
|
+
* // },
|
|
256
|
+
* // globalClusterIdentifier: "STRING_VALUE", // required
|
|
257
|
+
* // databaseClusterArns: [ // DocumentDbClusterArns // required
|
|
258
|
+
* // "STRING_VALUE",
|
|
259
|
+
* // ],
|
|
260
|
+
* // },
|
|
248
261
|
* // },
|
|
249
|
-
* // executionBlockType: "CustomActionLambda" || "ManualApproval" || "AuroraGlobalDatabase" || "EC2AutoScaling" || "ARCRoutingControl" || "ARCRegionSwitchPlan" || "Parallel" || "ECSServiceScaling" || "EKSResourceScaling" || "Route53HealthCheck", // required
|
|
262
|
+
* // executionBlockType: "CustomActionLambda" || "ManualApproval" || "AuroraGlobalDatabase" || "EC2AutoScaling" || "ARCRoutingControl" || "ARCRegionSwitchPlan" || "Parallel" || "ECSServiceScaling" || "EKSResourceScaling" || "Route53HealthCheck" || "DocumentDb", // required
|
|
250
263
|
* // },
|
|
251
264
|
* // ],
|
|
252
265
|
* // },
|
|
@@ -314,8 +327,21 @@ declare const GetPlanCommand_base: {
|
|
|
314
327
|
* // },
|
|
315
328
|
* // ],
|
|
316
329
|
* // },
|
|
330
|
+
* // documentDbConfig: {
|
|
331
|
+
* // timeoutMinutes: Number("int"),
|
|
332
|
+
* // crossAccountRole: "STRING_VALUE",
|
|
333
|
+
* // externalId: "STRING_VALUE",
|
|
334
|
+
* // behavior: "switchoverOnly" || "failover", // required
|
|
335
|
+
* // ungraceful: {
|
|
336
|
+
* // ungraceful: "failover",
|
|
337
|
+
* // },
|
|
338
|
+
* // globalClusterIdentifier: "STRING_VALUE", // required
|
|
339
|
+
* // databaseClusterArns: [ // required
|
|
340
|
+
* // "STRING_VALUE",
|
|
341
|
+
* // ],
|
|
342
|
+
* // },
|
|
317
343
|
* // },
|
|
318
|
-
* // executionBlockType: "CustomActionLambda" || "ManualApproval" || "AuroraGlobalDatabase" || "EC2AutoScaling" || "ARCRoutingControl" || "ARCRegionSwitchPlan" || "Parallel" || "ECSServiceScaling" || "EKSResourceScaling" || "Route53HealthCheck", // required
|
|
344
|
+
* // executionBlockType: "CustomActionLambda" || "ManualApproval" || "AuroraGlobalDatabase" || "EC2AutoScaling" || "ARCRoutingControl" || "ARCRegionSwitchPlan" || "Parallel" || "ECSServiceScaling" || "EKSResourceScaling" || "Route53HealthCheck" || "DocumentDb", // required
|
|
319
345
|
* // },
|
|
320
346
|
* // ],
|
|
321
347
|
* // workflowTargetAction: "activate" || "deactivate", // required
|
|
@@ -347,6 +373,16 @@ declare const GetPlanCommand_base: {
|
|
|
347
373
|
* // minDelayMinutesBetweenExecutions: Number("int"), // required
|
|
348
374
|
* // },
|
|
349
375
|
* // ],
|
|
376
|
+
* // reportConfiguration: { // ReportConfiguration
|
|
377
|
+
* // reportOutput: [ // ReportOutputList
|
|
378
|
+
* // { // ReportOutputConfiguration Union: only one key present
|
|
379
|
+
* // s3Configuration: { // S3ReportOutputConfiguration
|
|
380
|
+
* // bucketPath: "STRING_VALUE",
|
|
381
|
+
* // bucketOwner: "STRING_VALUE",
|
|
382
|
+
* // },
|
|
383
|
+
* // },
|
|
384
|
+
* // ],
|
|
385
|
+
* // },
|
|
350
386
|
* // name: "STRING_VALUE", // required
|
|
351
387
|
* // regions: [ // RegionList // required
|
|
352
388
|
* // "STRING_VALUE",
|