@aws-sdk/client-scheduler 3.952.0 → 3.954.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.
Files changed (32) hide show
  1. package/dist-cjs/index.js +214 -145
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateScheduleCommand.js +2 -2
  4. package/dist-es/commands/CreateScheduleGroupCommand.js +2 -2
  5. package/dist-es/commands/DeleteScheduleCommand.js +2 -2
  6. package/dist-es/commands/DeleteScheduleGroupCommand.js +2 -2
  7. package/dist-es/commands/GetScheduleCommand.js +2 -2
  8. package/dist-es/commands/GetScheduleGroupCommand.js +2 -2
  9. package/dist-es/commands/ListScheduleGroupsCommand.js +2 -2
  10. package/dist-es/commands/ListSchedulesCommand.js +2 -2
  11. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  12. package/dist-es/commands/TagResourceCommand.js +2 -2
  13. package/dist-es/commands/UntagResourceCommand.js +2 -2
  14. package/dist-es/commands/UpdateScheduleCommand.js +2 -2
  15. package/dist-es/index.js +1 -0
  16. package/dist-es/runtimeConfig.shared.js +6 -1
  17. package/dist-es/schemas/schemas_0.js +126 -119
  18. package/dist-types/SchedulerClient.d.ts +1 -10
  19. package/dist-types/index.d.ts +1 -0
  20. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  21. package/dist-types/runtimeConfig.d.ts +6 -2
  22. package/dist-types/runtimeConfig.native.d.ts +6 -2
  23. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  24. package/dist-types/schemas/schemas_0.d.ts +63 -75
  25. package/dist-types/ts3.4/SchedulerClient.d.ts +0 -4
  26. package/dist-types/ts3.4/index.d.ts +1 -0
  27. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  28. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  29. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  30. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  31. package/dist-types/ts3.4/schemas/schemas_0.d.ts +62 -75
  32. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class SchedulerClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let SchedulerServiceException$1 = class SchedulerServiceException extends smithyClient.ServiceException {
113
+ class SchedulerServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, SchedulerServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let InternalServerException$1 = class InternalServerException extends SchedulerServiceException$1 {
120
+ class InternalServerException extends SchedulerServiceException {
121
121
  name = "InternalServerException";
122
122
  $fault = "server";
123
123
  Message;
@@ -130,8 +130,8 @@ let InternalServerException$1 = class InternalServerException extends SchedulerS
130
130
  Object.setPrototypeOf(this, InternalServerException.prototype);
131
131
  this.Message = opts.Message;
132
132
  }
133
- };
134
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends SchedulerServiceException$1 {
133
+ }
134
+ class ResourceNotFoundException extends SchedulerServiceException {
135
135
  name = "ResourceNotFoundException";
136
136
  $fault = "client";
137
137
  Message;
@@ -144,8 +144,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Schedu
144
144
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
145
145
  this.Message = opts.Message;
146
146
  }
147
- };
148
- let ThrottlingException$1 = class ThrottlingException extends SchedulerServiceException$1 {
147
+ }
148
+ class ThrottlingException extends SchedulerServiceException {
149
149
  name = "ThrottlingException";
150
150
  $fault = "client";
151
151
  Message;
@@ -158,8 +158,8 @@ let ThrottlingException$1 = class ThrottlingException extends SchedulerServiceEx
158
158
  Object.setPrototypeOf(this, ThrottlingException.prototype);
159
159
  this.Message = opts.Message;
160
160
  }
161
- };
162
- let ValidationException$1 = class ValidationException extends SchedulerServiceException$1 {
161
+ }
162
+ class ValidationException extends SchedulerServiceException {
163
163
  name = "ValidationException";
164
164
  $fault = "client";
165
165
  Message;
@@ -172,8 +172,8 @@ let ValidationException$1 = class ValidationException extends SchedulerServiceEx
172
172
  Object.setPrototypeOf(this, ValidationException.prototype);
173
173
  this.Message = opts.Message;
174
174
  }
175
- };
176
- let ConflictException$1 = class ConflictException extends SchedulerServiceException$1 {
175
+ }
176
+ class ConflictException extends SchedulerServiceException {
177
177
  name = "ConflictException";
178
178
  $fault = "client";
179
179
  Message;
@@ -186,8 +186,8 @@ let ConflictException$1 = class ConflictException extends SchedulerServiceExcept
186
186
  Object.setPrototypeOf(this, ConflictException.prototype);
187
187
  this.Message = opts.Message;
188
188
  }
189
- };
190
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends SchedulerServiceException$1 {
189
+ }
190
+ class ServiceQuotaExceededException extends SchedulerServiceException {
191
191
  name = "ServiceQuotaExceededException";
192
192
  $fault = "client";
193
193
  Message;
@@ -200,7 +200,7 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
200
200
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
201
201
  this.Message = opts.Message;
202
202
  }
203
- };
203
+ }
204
204
 
205
205
  const _A = "Arn";
206
206
  const _AAC = "ActionAfterCompletion";
@@ -339,11 +339,11 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.scheduler";
339
339
  const _t = "type";
340
340
  const _w = "weight";
341
341
  const n0 = "com.amazonaws.scheduler";
342
- var AwsVpcConfiguration = [3, n0, _AVC, 0, [_S, _SG, _API], [64 | 0, 64 | 0, 0]];
343
- var CapacityProviderStrategyItem = [3, n0, _CPSI, 0, [_cP, _w, _b], [0, 1, 1]];
344
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
345
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
346
- var CreateScheduleGroupInput = [
342
+ var AwsVpcConfiguration$ = [3, n0, _AVC, 0, [_S, _SG, _API], [64 | 0, 64 | 0, 0]];
343
+ var CapacityProviderStrategyItem$ = [3, n0, _CPSI, 0, [_cP, _w, _b], [0, 1, 1]];
344
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
345
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
346
+ var CreateScheduleGroupInput$ = [
347
347
  3,
348
348
  n0,
349
349
  _CSGI,
@@ -351,18 +351,18 @@ var CreateScheduleGroupInput = [
351
351
  [_N, _T, _CT],
352
352
  [[0, 1], () => TagList, [0, 4]],
353
353
  ];
354
- var CreateScheduleGroupOutput = [3, n0, _CSGO, 0, [_SGA], [0]];
355
- var CreateScheduleInput = [
354
+ var CreateScheduleGroupOutput$ = [3, n0, _CSGO, 0, [_SGA], [0]];
355
+ var CreateScheduleInput$ = [
356
356
  3,
357
357
  n0,
358
358
  _CSI,
359
359
  0,
360
360
  [_N, _GN, _SE, _SD, _ED, _D, _SET, _St, _KKA, _Ta, _FTW, _CT, _AAC],
361
- [[0, 1], 0, 0, 4, 4, 0, 0, 0, 0, () => Target, () => FlexibleTimeWindow, [0, 4], 0],
361
+ [[0, 1], 0, 0, 4, 4, 0, 0, 0, 0, () => Target$, () => FlexibleTimeWindow$, [0, 4], 0],
362
362
  ];
363
- var CreateScheduleOutput = [3, n0, _CSO, 0, [_SA], [0]];
364
- var DeadLetterConfig = [3, n0, _DLC, 0, [_A], [0]];
365
- var DeleteScheduleGroupInput = [
363
+ var CreateScheduleOutput$ = [3, n0, _CSO, 0, [_SA], [0]];
364
+ var DeadLetterConfig$ = [3, n0, _DLC, 0, [_A], [0]];
365
+ var DeleteScheduleGroupInput$ = [
366
366
  3,
367
367
  n0,
368
368
  _DSGI,
@@ -373,8 +373,8 @@ var DeleteScheduleGroupInput = [
373
373
  [0, { [_iT]: 1, [_hQ]: _cT }],
374
374
  ],
375
375
  ];
376
- var DeleteScheduleGroupOutput = [3, n0, _DSGO, 0, [], []];
377
- var DeleteScheduleInput = [
376
+ var DeleteScheduleGroupOutput$ = [3, n0, _DSGO, 0, [], []];
377
+ var DeleteScheduleInput$ = [
378
378
  3,
379
379
  n0,
380
380
  _DSI,
@@ -386,8 +386,8 @@ var DeleteScheduleInput = [
386
386
  [0, { [_iT]: 1, [_hQ]: _cT }],
387
387
  ],
388
388
  ];
389
- var DeleteScheduleOutput = [3, n0, _DSO, 0, [], []];
390
- var EcsParameters = [
389
+ var DeleteScheduleOutput$ = [3, n0, _DSO, 0, [], []];
390
+ var EcsParameters$ = [
391
391
  3,
392
392
  n0,
393
393
  _EP,
@@ -397,7 +397,7 @@ var EcsParameters = [
397
397
  0,
398
398
  1,
399
399
  0,
400
- () => NetworkConfiguration,
400
+ () => NetworkConfiguration$,
401
401
  0,
402
402
  0,
403
403
  () => CapacityProviderStrategy,
@@ -410,11 +410,18 @@ var EcsParameters = [
410
410
  [1, n0, _T, 0, 128 | 0],
411
411
  ],
412
412
  ];
413
- var EventBridgeParameters = [3, n0, _EBP, 0, [_DT, _So], [0, 0]];
414
- var FlexibleTimeWindow = [3, n0, _FTW, 0, [_Mo, _MWIM], [0, 1]];
415
- var GetScheduleGroupInput = [3, n0, _GSGI, 0, [_N], [[0, 1]]];
416
- var GetScheduleGroupOutput = [3, n0, _GSGO, 0, [_A, _N, _St, _CD, _LMD], [0, 0, 0, 4, 4]];
417
- var GetScheduleInput = [
413
+ var EventBridgeParameters$ = [3, n0, _EBP, 0, [_DT, _So], [0, 0]];
414
+ var FlexibleTimeWindow$ = [3, n0, _FTW, 0, [_Mo, _MWIM], [0, 1]];
415
+ var GetScheduleGroupInput$ = [3, n0, _GSGI, 0, [_N], [[0, 1]]];
416
+ var GetScheduleGroupOutput$ = [
417
+ 3,
418
+ n0,
419
+ _GSGO,
420
+ 0,
421
+ [_A, _N, _St, _CD, _LMD],
422
+ [0, 0, 0, 4, 4],
423
+ ];
424
+ var GetScheduleInput$ = [
418
425
  3,
419
426
  n0,
420
427
  _GSI,
@@ -425,18 +432,18 @@ var GetScheduleInput = [
425
432
  [0, { [_hQ]: _gN }],
426
433
  ],
427
434
  ];
428
- var GetScheduleOutput = [
435
+ var GetScheduleOutput$ = [
429
436
  3,
430
437
  n0,
431
438
  _GSO,
432
439
  0,
433
440
  [_A, _GN, _N, _SE, _SD, _ED, _D, _SET, _St, _CD, _LMD, _KKA, _Ta, _FTW, _AAC],
434
- [0, 0, 0, 0, 4, 4, 0, 0, 0, 4, 4, 0, () => Target, () => FlexibleTimeWindow, 0],
441
+ [0, 0, 0, 0, 4, 4, 0, 0, 0, 4, 4, 0, () => Target$, () => FlexibleTimeWindow$, 0],
435
442
  ];
436
- var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
437
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
438
- var KinesisParameters = [3, n0, _KP, 0, [_PK], [0]];
439
- var ListScheduleGroupsInput = [
443
+ var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
444
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
445
+ var KinesisParameters$ = [3, n0, _KP, 0, [_PK], [0]];
446
+ var ListScheduleGroupsInput$ = [
440
447
  3,
441
448
  n0,
442
449
  _LSGI,
@@ -448,7 +455,7 @@ var ListScheduleGroupsInput = [
448
455
  [1, { [_hQ]: _MR }],
449
456
  ],
450
457
  ];
451
- var ListScheduleGroupsOutput = [
458
+ var ListScheduleGroupsOutput$ = [
452
459
  3,
453
460
  n0,
454
461
  _LSGO,
@@ -456,7 +463,7 @@ var ListScheduleGroupsOutput = [
456
463
  [_NT, _SGc],
457
464
  [0, () => ScheduleGroupList],
458
465
  ];
459
- var ListSchedulesInput = [
466
+ var ListSchedulesInput$ = [
460
467
  3,
461
468
  n0,
462
469
  _LSI,
@@ -470,17 +477,17 @@ var ListSchedulesInput = [
470
477
  [1, { [_hQ]: _MR }],
471
478
  ],
472
479
  ];
473
- var ListSchedulesOutput = [3, n0, _LSO, 0, [_NT, _Sc], [0, () => ScheduleList]];
474
- var ListTagsForResourceInput = [3, n0, _LTFRI, 0, [_RA], [[0, 1]]];
475
- var ListTagsForResourceOutput = [3, n0, _LTFRO, 0, [_T], [() => TagList]];
476
- var NetworkConfiguration = [3, n0, _NC, 0, [_aC], [() => AwsVpcConfiguration]];
477
- var PlacementConstraint = [3, n0, _PCl, 0, [_t, _ex], [0, 0]];
478
- var PlacementStrategy = [3, n0, _PS, 0, [_t, _f], [0, 0]];
479
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
480
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
481
- var RetryPolicy = [3, n0, _RP, 0, [_MEAIS, _MRA], [1, 1]];
482
- var SageMakerPipelineParameter = [3, n0, _SMPP, 0, [_N, _V], [0, 0]];
483
- var SageMakerPipelineParameters = [
480
+ var ListSchedulesOutput$ = [3, n0, _LSO, 0, [_NT, _Sc], [0, () => ScheduleList]];
481
+ var ListTagsForResourceInput$ = [3, n0, _LTFRI, 0, [_RA], [[0, 1]]];
482
+ var ListTagsForResourceOutput$ = [3, n0, _LTFRO, 0, [_T], [() => TagList]];
483
+ var NetworkConfiguration$ = [3, n0, _NC, 0, [_aC], [() => AwsVpcConfiguration$]];
484
+ var PlacementConstraint$ = [3, n0, _PCl, 0, [_t, _ex], [0, 0]];
485
+ var PlacementStrategy$ = [3, n0, _PS, 0, [_t, _f], [0, 0]];
486
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
487
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
488
+ var RetryPolicy$ = [3, n0, _RP, 0, [_MEAIS, _MRA], [1, 1]];
489
+ var SageMakerPipelineParameter$ = [3, n0, _SMPP, 0, [_N, _V], [0, 0]];
490
+ var SageMakerPipelineParameters$ = [
484
491
  3,
485
492
  n0,
486
493
  _SMPPa,
@@ -488,22 +495,22 @@ var SageMakerPipelineParameters = [
488
495
  [_PPL],
489
496
  [() => SageMakerPipelineParameterList],
490
497
  ];
491
- var ScheduleGroupSummary = [3, n0, _SGS, 0, [_A, _N, _St, _CD, _LMD], [0, 0, 0, 4, 4]];
492
- var ScheduleSummary = [
498
+ var ScheduleGroupSummary$ = [3, n0, _SGS, 0, [_A, _N, _St, _CD, _LMD], [0, 0, 0, 4, 4]];
499
+ var ScheduleSummary$ = [
493
500
  3,
494
501
  n0,
495
502
  _SS,
496
503
  0,
497
504
  [_A, _N, _GN, _St, _CD, _LMD, _Ta],
498
- [0, 0, 0, 0, 4, 4, () => TargetSummary],
505
+ [0, 0, 0, 0, 4, 4, () => TargetSummary$],
499
506
  ];
500
- var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
501
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
502
- var SqsParameters = [3, n0, _SP, 0, [_MGI], [0]];
503
- var Tag = [3, n0, _Tag, 0, [_K, _V], [0, 0]];
504
- var TagResourceInput = [3, n0, _TRI, 0, [_RA, _T], [[0, 1], () => TagList]];
505
- var TagResourceOutput = [3, n0, _TRO, 0, [], []];
506
- var Target = [
507
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
508
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
509
+ var SqsParameters$ = [3, n0, _SP, 0, [_MGI], [0]];
510
+ var Tag$ = [3, n0, _Tag, 0, [_K, _V], [0, 0]];
511
+ var TagResourceInput$ = [3, n0, _TRI, 0, [_RA, _T], [[0, 1], () => TagList]];
512
+ var TagResourceOutput$ = [3, n0, _TRO, 0, [], []];
513
+ var Target$ = [
507
514
  3,
508
515
  n0,
509
516
  _Ta,
@@ -512,20 +519,20 @@ var Target = [
512
519
  [
513
520
  0,
514
521
  0,
515
- () => DeadLetterConfig,
516
- () => RetryPolicy,
522
+ () => DeadLetterConfig$,
523
+ () => RetryPolicy$,
517
524
  0,
518
- () => EcsParameters,
519
- () => EventBridgeParameters,
520
- () => KinesisParameters,
521
- () => SageMakerPipelineParameters,
522
- () => SqsParameters,
525
+ () => EcsParameters$,
526
+ () => EventBridgeParameters$,
527
+ () => KinesisParameters$,
528
+ () => SageMakerPipelineParameters$,
529
+ () => SqsParameters$,
523
530
  ],
524
531
  ];
525
- var TargetSummary = [3, n0, _TS, 0, [_A], [0]];
526
- var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
527
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
528
- var UntagResourceInput = [
532
+ var TargetSummary$ = [3, n0, _TS, 0, [_A], [0]];
533
+ var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
534
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
535
+ var UntagResourceInput$ = [
529
536
  3,
530
537
  n0,
531
538
  _URI,
@@ -536,122 +543,122 @@ var UntagResourceInput = [
536
543
  [64 | 0, { [_hQ]: _TK }],
537
544
  ],
538
545
  ];
539
- var UntagResourceOutput = [3, n0, _URO, 0, [], []];
540
- var UpdateScheduleInput = [
546
+ var UntagResourceOutput$ = [3, n0, _URO, 0, [], []];
547
+ var UpdateScheduleInput$ = [
541
548
  3,
542
549
  n0,
543
550
  _USI,
544
551
  0,
545
552
  [_N, _GN, _SE, _SD, _ED, _D, _SET, _St, _KKA, _Ta, _FTW, _CT, _AAC],
546
- [[0, 1], 0, 0, 4, 4, 0, 0, 0, 0, () => Target, () => FlexibleTimeWindow, [0, 4], 0],
553
+ [[0, 1], 0, 0, 4, 4, 0, 0, 0, 0, () => Target$, () => FlexibleTimeWindow$, [0, 4], 0],
547
554
  ];
548
- var UpdateScheduleOutput = [3, n0, _USO, 0, [_SA], [0]];
549
- var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
550
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
551
- var SchedulerServiceException = [-3, _sm, "SchedulerServiceException", 0, [], []];
552
- schema.TypeRegistry.for(_sm).registerError(SchedulerServiceException, SchedulerServiceException$1);
553
- var CapacityProviderStrategy = [1, n0, _CPS, 0, () => CapacityProviderStrategyItem];
554
- var PlacementConstraints = [1, n0, _PC, 0, () => PlacementConstraint];
555
- var PlacementStrategies = [1, n0, _PSl, 0, () => PlacementStrategy];
556
- var SageMakerPipelineParameterList = [1, n0, _SMPPL, 0, () => SageMakerPipelineParameter];
557
- var ScheduleGroupList = [1, n0, _SGL, 0, () => ScheduleGroupSummary];
558
- var ScheduleList = [1, n0, _SL, 0, () => ScheduleSummary];
559
- var TagList = [1, n0, _TL, 0, () => Tag];
560
- var CreateSchedule = [
555
+ var UpdateScheduleOutput$ = [3, n0, _USO, 0, [_SA], [0]];
556
+ var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
557
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
558
+ var SchedulerServiceException$ = [-3, _sm, "SchedulerServiceException", 0, [], []];
559
+ schema.TypeRegistry.for(_sm).registerError(SchedulerServiceException$, SchedulerServiceException);
560
+ var CapacityProviderStrategy = [1, n0, _CPS, 0, () => CapacityProviderStrategyItem$];
561
+ var PlacementConstraints = [1, n0, _PC, 0, () => PlacementConstraint$];
562
+ var PlacementStrategies = [1, n0, _PSl, 0, () => PlacementStrategy$];
563
+ var SageMakerPipelineParameterList = [1, n0, _SMPPL, 0, () => SageMakerPipelineParameter$];
564
+ var ScheduleGroupList = [1, n0, _SGL, 0, () => ScheduleGroupSummary$];
565
+ var ScheduleList = [1, n0, _SL, 0, () => ScheduleSummary$];
566
+ var TagList = [1, n0, _TL, 0, () => Tag$];
567
+ var CreateSchedule$ = [
561
568
  9,
562
569
  n0,
563
570
  _CS,
564
571
  { [_h]: ["POST", "/schedules/{Name}", 200] },
565
- () => CreateScheduleInput,
566
- () => CreateScheduleOutput,
572
+ () => CreateScheduleInput$,
573
+ () => CreateScheduleOutput$,
567
574
  ];
568
- var CreateScheduleGroup = [
575
+ var CreateScheduleGroup$ = [
569
576
  9,
570
577
  n0,
571
578
  _CSG,
572
579
  { [_h]: ["POST", "/schedule-groups/{Name}", 200] },
573
- () => CreateScheduleGroupInput,
574
- () => CreateScheduleGroupOutput,
580
+ () => CreateScheduleGroupInput$,
581
+ () => CreateScheduleGroupOutput$,
575
582
  ];
576
- var DeleteSchedule = [
583
+ var DeleteSchedule$ = [
577
584
  9,
578
585
  n0,
579
586
  _DS,
580
587
  { [_h]: ["DELETE", "/schedules/{Name}", 200] },
581
- () => DeleteScheduleInput,
582
- () => DeleteScheduleOutput,
588
+ () => DeleteScheduleInput$,
589
+ () => DeleteScheduleOutput$,
583
590
  ];
584
- var DeleteScheduleGroup = [
591
+ var DeleteScheduleGroup$ = [
585
592
  9,
586
593
  n0,
587
594
  _DSG,
588
595
  { [_h]: ["DELETE", "/schedule-groups/{Name}", 200] },
589
- () => DeleteScheduleGroupInput,
590
- () => DeleteScheduleGroupOutput,
596
+ () => DeleteScheduleGroupInput$,
597
+ () => DeleteScheduleGroupOutput$,
591
598
  ];
592
- var GetSchedule = [
599
+ var GetSchedule$ = [
593
600
  9,
594
601
  n0,
595
602
  _GS,
596
603
  { [_h]: ["GET", "/schedules/{Name}", 200] },
597
- () => GetScheduleInput,
598
- () => GetScheduleOutput,
604
+ () => GetScheduleInput$,
605
+ () => GetScheduleOutput$,
599
606
  ];
600
- var GetScheduleGroup = [
607
+ var GetScheduleGroup$ = [
601
608
  9,
602
609
  n0,
603
610
  _GSG,
604
611
  { [_h]: ["GET", "/schedule-groups/{Name}", 200] },
605
- () => GetScheduleGroupInput,
606
- () => GetScheduleGroupOutput,
612
+ () => GetScheduleGroupInput$,
613
+ () => GetScheduleGroupOutput$,
607
614
  ];
608
- var ListScheduleGroups = [
615
+ var ListScheduleGroups$ = [
609
616
  9,
610
617
  n0,
611
618
  _LSG,
612
619
  { [_h]: ["GET", "/schedule-groups", 200] },
613
- () => ListScheduleGroupsInput,
614
- () => ListScheduleGroupsOutput,
620
+ () => ListScheduleGroupsInput$,
621
+ () => ListScheduleGroupsOutput$,
615
622
  ];
616
- var ListSchedules = [
623
+ var ListSchedules$ = [
617
624
  9,
618
625
  n0,
619
626
  _LS,
620
627
  { [_h]: ["GET", "/schedules", 200] },
621
- () => ListSchedulesInput,
622
- () => ListSchedulesOutput,
628
+ () => ListSchedulesInput$,
629
+ () => ListSchedulesOutput$,
623
630
  ];
624
- var ListTagsForResource = [
631
+ var ListTagsForResource$ = [
625
632
  9,
626
633
  n0,
627
634
  _LTFR,
628
635
  { [_h]: ["GET", "/tags/{ResourceArn}", 200] },
629
- () => ListTagsForResourceInput,
630
- () => ListTagsForResourceOutput,
636
+ () => ListTagsForResourceInput$,
637
+ () => ListTagsForResourceOutput$,
631
638
  ];
632
- var TagResource = [
639
+ var TagResource$ = [
633
640
  9,
634
641
  n0,
635
642
  _TR,
636
643
  { [_h]: ["POST", "/tags/{ResourceArn}", 200] },
637
- () => TagResourceInput,
638
- () => TagResourceOutput,
644
+ () => TagResourceInput$,
645
+ () => TagResourceOutput$,
639
646
  ];
640
- var UntagResource = [
647
+ var UntagResource$ = [
641
648
  9,
642
649
  n0,
643
650
  _UR,
644
651
  { [_h]: ["DELETE", "/tags/{ResourceArn}", 200] },
645
- () => UntagResourceInput,
646
- () => UntagResourceOutput,
652
+ () => UntagResourceInput$,
653
+ () => UntagResourceOutput$,
647
654
  ];
648
- var UpdateSchedule = [
655
+ var UpdateSchedule$ = [
649
656
  9,
650
657
  n0,
651
658
  _US,
652
659
  { [_h]: ["PUT", "/schedules/{Name}", 200] },
653
- () => UpdateScheduleInput,
654
- () => UpdateScheduleOutput,
660
+ () => UpdateScheduleInput$,
661
+ () => UpdateScheduleOutput$,
655
662
  ];
656
663
 
657
664
  class CreateScheduleCommand extends smithyClient.Command
@@ -662,7 +669,7 @@ class CreateScheduleCommand extends smithyClient.Command
662
669
  })
663
670
  .s("AWSChronosService", "CreateSchedule", {})
664
671
  .n("SchedulerClient", "CreateScheduleCommand")
665
- .sc(CreateSchedule)
672
+ .sc(CreateSchedule$)
666
673
  .build() {
667
674
  }
668
675
 
@@ -674,7 +681,7 @@ class CreateScheduleGroupCommand extends smithyClient.Command
674
681
  })
675
682
  .s("AWSChronosService", "CreateScheduleGroup", {})
676
683
  .n("SchedulerClient", "CreateScheduleGroupCommand")
677
- .sc(CreateScheduleGroup)
684
+ .sc(CreateScheduleGroup$)
678
685
  .build() {
679
686
  }
680
687
 
@@ -686,7 +693,7 @@ class DeleteScheduleCommand extends smithyClient.Command
686
693
  })
687
694
  .s("AWSChronosService", "DeleteSchedule", {})
688
695
  .n("SchedulerClient", "DeleteScheduleCommand")
689
- .sc(DeleteSchedule)
696
+ .sc(DeleteSchedule$)
690
697
  .build() {
691
698
  }
692
699
 
@@ -698,7 +705,7 @@ class DeleteScheduleGroupCommand extends smithyClient.Command
698
705
  })
699
706
  .s("AWSChronosService", "DeleteScheduleGroup", {})
700
707
  .n("SchedulerClient", "DeleteScheduleGroupCommand")
701
- .sc(DeleteScheduleGroup)
708
+ .sc(DeleteScheduleGroup$)
702
709
  .build() {
703
710
  }
704
711
 
@@ -710,7 +717,7 @@ class GetScheduleCommand extends smithyClient.Command
710
717
  })
711
718
  .s("AWSChronosService", "GetSchedule", {})
712
719
  .n("SchedulerClient", "GetScheduleCommand")
713
- .sc(GetSchedule)
720
+ .sc(GetSchedule$)
714
721
  .build() {
715
722
  }
716
723
 
@@ -722,7 +729,7 @@ class GetScheduleGroupCommand extends smithyClient.Command
722
729
  })
723
730
  .s("AWSChronosService", "GetScheduleGroup", {})
724
731
  .n("SchedulerClient", "GetScheduleGroupCommand")
725
- .sc(GetScheduleGroup)
732
+ .sc(GetScheduleGroup$)
726
733
  .build() {
727
734
  }
728
735
 
@@ -734,7 +741,7 @@ class ListScheduleGroupsCommand extends smithyClient.Command
734
741
  })
735
742
  .s("AWSChronosService", "ListScheduleGroups", {})
736
743
  .n("SchedulerClient", "ListScheduleGroupsCommand")
737
- .sc(ListScheduleGroups)
744
+ .sc(ListScheduleGroups$)
738
745
  .build() {
739
746
  }
740
747
 
@@ -746,7 +753,7 @@ class ListSchedulesCommand extends smithyClient.Command
746
753
  })
747
754
  .s("AWSChronosService", "ListSchedules", {})
748
755
  .n("SchedulerClient", "ListSchedulesCommand")
749
- .sc(ListSchedules)
756
+ .sc(ListSchedules$)
750
757
  .build() {
751
758
  }
752
759
 
@@ -758,7 +765,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
758
765
  })
759
766
  .s("AWSChronosService", "ListTagsForResource", {})
760
767
  .n("SchedulerClient", "ListTagsForResourceCommand")
761
- .sc(ListTagsForResource)
768
+ .sc(ListTagsForResource$)
762
769
  .build() {
763
770
  }
764
771
 
@@ -770,7 +777,7 @@ class TagResourceCommand extends smithyClient.Command
770
777
  })
771
778
  .s("AWSChronosService", "TagResource", {})
772
779
  .n("SchedulerClient", "TagResourceCommand")
773
- .sc(TagResource)
780
+ .sc(TagResource$)
774
781
  .build() {
775
782
  }
776
783
 
@@ -782,7 +789,7 @@ class UntagResourceCommand extends smithyClient.Command
782
789
  })
783
790
  .s("AWSChronosService", "UntagResource", {})
784
791
  .n("SchedulerClient", "UntagResourceCommand")
785
- .sc(UntagResource)
792
+ .sc(UntagResource$)
786
793
  .build() {
787
794
  }
788
795
 
@@ -794,7 +801,7 @@ class UpdateScheduleCommand extends smithyClient.Command
794
801
  })
795
802
  .s("AWSChronosService", "UpdateSchedule", {})
796
803
  .n("SchedulerClient", "UpdateScheduleCommand")
797
- .sc(UpdateSchedule)
804
+ .sc(UpdateSchedule$)
798
805
  .build() {
799
806
  }
800
807
 
@@ -868,33 +875,95 @@ Object.defineProperty(exports, "__Client", {
868
875
  });
869
876
  exports.ActionAfterCompletion = ActionAfterCompletion;
870
877
  exports.AssignPublicIp = AssignPublicIp;
871
- exports.ConflictException = ConflictException$1;
878
+ exports.AwsVpcConfiguration$ = AwsVpcConfiguration$;
879
+ exports.CapacityProviderStrategyItem$ = CapacityProviderStrategyItem$;
880
+ exports.ConflictException = ConflictException;
881
+ exports.ConflictException$ = ConflictException$;
882
+ exports.CreateSchedule$ = CreateSchedule$;
872
883
  exports.CreateScheduleCommand = CreateScheduleCommand;
884
+ exports.CreateScheduleGroup$ = CreateScheduleGroup$;
873
885
  exports.CreateScheduleGroupCommand = CreateScheduleGroupCommand;
886
+ exports.CreateScheduleGroupInput$ = CreateScheduleGroupInput$;
887
+ exports.CreateScheduleGroupOutput$ = CreateScheduleGroupOutput$;
888
+ exports.CreateScheduleInput$ = CreateScheduleInput$;
889
+ exports.CreateScheduleOutput$ = CreateScheduleOutput$;
890
+ exports.DeadLetterConfig$ = DeadLetterConfig$;
891
+ exports.DeleteSchedule$ = DeleteSchedule$;
874
892
  exports.DeleteScheduleCommand = DeleteScheduleCommand;
893
+ exports.DeleteScheduleGroup$ = DeleteScheduleGroup$;
875
894
  exports.DeleteScheduleGroupCommand = DeleteScheduleGroupCommand;
895
+ exports.DeleteScheduleGroupInput$ = DeleteScheduleGroupInput$;
896
+ exports.DeleteScheduleGroupOutput$ = DeleteScheduleGroupOutput$;
897
+ exports.DeleteScheduleInput$ = DeleteScheduleInput$;
898
+ exports.DeleteScheduleOutput$ = DeleteScheduleOutput$;
899
+ exports.EcsParameters$ = EcsParameters$;
900
+ exports.EventBridgeParameters$ = EventBridgeParameters$;
901
+ exports.FlexibleTimeWindow$ = FlexibleTimeWindow$;
876
902
  exports.FlexibleTimeWindowMode = FlexibleTimeWindowMode;
903
+ exports.GetSchedule$ = GetSchedule$;
877
904
  exports.GetScheduleCommand = GetScheduleCommand;
905
+ exports.GetScheduleGroup$ = GetScheduleGroup$;
878
906
  exports.GetScheduleGroupCommand = GetScheduleGroupCommand;
879
- exports.InternalServerException = InternalServerException$1;
907
+ exports.GetScheduleGroupInput$ = GetScheduleGroupInput$;
908
+ exports.GetScheduleGroupOutput$ = GetScheduleGroupOutput$;
909
+ exports.GetScheduleInput$ = GetScheduleInput$;
910
+ exports.GetScheduleOutput$ = GetScheduleOutput$;
911
+ exports.InternalServerException = InternalServerException;
912
+ exports.InternalServerException$ = InternalServerException$;
913
+ exports.KinesisParameters$ = KinesisParameters$;
880
914
  exports.LaunchType = LaunchType;
915
+ exports.ListScheduleGroups$ = ListScheduleGroups$;
881
916
  exports.ListScheduleGroupsCommand = ListScheduleGroupsCommand;
917
+ exports.ListScheduleGroupsInput$ = ListScheduleGroupsInput$;
918
+ exports.ListScheduleGroupsOutput$ = ListScheduleGroupsOutput$;
919
+ exports.ListSchedules$ = ListSchedules$;
882
920
  exports.ListSchedulesCommand = ListSchedulesCommand;
921
+ exports.ListSchedulesInput$ = ListSchedulesInput$;
922
+ exports.ListSchedulesOutput$ = ListSchedulesOutput$;
923
+ exports.ListTagsForResource$ = ListTagsForResource$;
883
924
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
925
+ exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
926
+ exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
927
+ exports.NetworkConfiguration$ = NetworkConfiguration$;
928
+ exports.PlacementConstraint$ = PlacementConstraint$;
884
929
  exports.PlacementConstraintType = PlacementConstraintType;
930
+ exports.PlacementStrategy$ = PlacementStrategy$;
885
931
  exports.PlacementStrategyType = PlacementStrategyType;
886
932
  exports.PropagateTags = PropagateTags;
887
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
933
+ exports.ResourceNotFoundException = ResourceNotFoundException;
934
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
935
+ exports.RetryPolicy$ = RetryPolicy$;
936
+ exports.SageMakerPipelineParameter$ = SageMakerPipelineParameter$;
937
+ exports.SageMakerPipelineParameters$ = SageMakerPipelineParameters$;
888
938
  exports.ScheduleGroupState = ScheduleGroupState;
939
+ exports.ScheduleGroupSummary$ = ScheduleGroupSummary$;
889
940
  exports.ScheduleState = ScheduleState;
941
+ exports.ScheduleSummary$ = ScheduleSummary$;
890
942
  exports.Scheduler = Scheduler;
891
943
  exports.SchedulerClient = SchedulerClient;
892
- exports.SchedulerServiceException = SchedulerServiceException$1;
893
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
944
+ exports.SchedulerServiceException = SchedulerServiceException;
945
+ exports.SchedulerServiceException$ = SchedulerServiceException$;
946
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
947
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
948
+ exports.SqsParameters$ = SqsParameters$;
949
+ exports.Tag$ = Tag$;
950
+ exports.TagResource$ = TagResource$;
894
951
  exports.TagResourceCommand = TagResourceCommand;
895
- exports.ThrottlingException = ThrottlingException$1;
952
+ exports.TagResourceInput$ = TagResourceInput$;
953
+ exports.TagResourceOutput$ = TagResourceOutput$;
954
+ exports.Target$ = Target$;
955
+ exports.TargetSummary$ = TargetSummary$;
956
+ exports.ThrottlingException = ThrottlingException;
957
+ exports.ThrottlingException$ = ThrottlingException$;
958
+ exports.UntagResource$ = UntagResource$;
896
959
  exports.UntagResourceCommand = UntagResourceCommand;
960
+ exports.UntagResourceInput$ = UntagResourceInput$;
961
+ exports.UntagResourceOutput$ = UntagResourceOutput$;
962
+ exports.UpdateSchedule$ = UpdateSchedule$;
897
963
  exports.UpdateScheduleCommand = UpdateScheduleCommand;
898
- exports.ValidationException = ValidationException$1;
964
+ exports.UpdateScheduleInput$ = UpdateScheduleInput$;
965
+ exports.UpdateScheduleOutput$ = UpdateScheduleOutput$;
966
+ exports.ValidationException = ValidationException;
967
+ exports.ValidationException$ = ValidationException$;
899
968
  exports.paginateListScheduleGroups = paginateListScheduleGroups;
900
969
  exports.paginateListSchedules = paginateListSchedules;