@aws-sdk/client-scheduler 3.381.0 → 3.382.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.
@@ -42,6 +42,7 @@ export declare class InternalServerException extends __BaseException {
42
42
  */
43
43
  export interface ListTagsForResourceInput {
44
44
  /**
45
+ * @public
45
46
  * <p>The ARN of the EventBridge Scheduler resource for which you want to view tags.</p>
46
47
  */
47
48
  ResourceArn: string | undefined;
@@ -52,10 +53,12 @@ export interface ListTagsForResourceInput {
52
53
  */
53
54
  export interface Tag {
54
55
  /**
56
+ * @public
55
57
  * <p>The key for the tag.</p>
56
58
  */
57
59
  Key: string | undefined;
58
60
  /**
61
+ * @public
59
62
  * <p>The value for the tag.</p>
60
63
  */
61
64
  Value: string | undefined;
@@ -65,6 +68,7 @@ export interface Tag {
65
68
  */
66
69
  export interface ListTagsForResourceOutput {
67
70
  /**
71
+ * @public
68
72
  * <p>The list of tags associated with the specified resource.</p>
69
73
  */
70
74
  Tags?: Tag[];
@@ -139,10 +143,12 @@ export type FlexibleTimeWindowMode = (typeof FlexibleTimeWindowMode)[keyof typeo
139
143
  */
140
144
  export interface FlexibleTimeWindow {
141
145
  /**
146
+ * @public
142
147
  * <p>Determines whether the schedule is invoked within a flexible time window.</p>
143
148
  */
144
149
  Mode: FlexibleTimeWindowMode | string | undefined;
145
150
  /**
151
+ * @public
146
152
  * <p>The maximum time window during which a schedule can be invoked.</p>
147
153
  */
148
154
  MaximumWindowInMinutes?: number;
@@ -165,6 +171,7 @@ export type ScheduleState = (typeof ScheduleState)[keyof typeof ScheduleState];
165
171
  */
166
172
  export interface DeadLetterConfig {
167
173
  /**
174
+ * @public
168
175
  * <p>The Amazon Resource Name (ARN) of the SQS queue specified as the destination for the dead-letter queue.</p>
169
176
  */
170
177
  Arn?: string;
@@ -175,15 +182,18 @@ export interface DeadLetterConfig {
175
182
  */
176
183
  export interface CapacityProviderStrategyItem {
177
184
  /**
185
+ * @public
178
186
  * <p>The short name of the capacity provider.</p>
179
187
  */
180
188
  capacityProvider: string | undefined;
181
189
  /**
190
+ * @public
182
191
  * <p>The weight value designates the relative percentage of the total number of tasks launched that should use the specified capacity provider. The weight value is taken into consideration after the
183
192
  * base value, if defined, is satisfied.</p>
184
193
  */
185
194
  weight?: number;
186
195
  /**
196
+ * @public
187
197
  * <p>The base value designates how many tasks, at a minimum, to run on the specified capacity provider. Only one capacity provider in a capacity provider strategy can have a base defined.
188
198
  * If no value is specified, the default value of <code>0</code> is used.</p>
189
199
  */
@@ -208,15 +218,18 @@ export type LaunchType = (typeof LaunchType)[keyof typeof LaunchType];
208
218
  */
209
219
  export interface AwsVpcConfiguration {
210
220
  /**
221
+ * @public
211
222
  * <p>Specifies the subnets associated with the task. These subnets must all be in the same VPC. You can specify as many as 16 subnets.</p>
212
223
  */
213
224
  Subnets: string[] | undefined;
214
225
  /**
226
+ * @public
215
227
  * <p>Specifies the security groups associated with the task. These security groups must all be in the same VPC. You can specify as many as five security groups.
216
228
  * If you do not specify a security group, the default security group for the VPC is used.</p>
217
229
  */
218
230
  SecurityGroups?: string[];
219
231
  /**
232
+ * @public
220
233
  * <p>Specifies whether the task's elastic network interface receives a public IP address. You can specify <code>ENABLED</code> only when <code>LaunchType</code> in <code>EcsParameters</code> is set to <code>FARGATE</code>.</p>
221
234
  */
222
235
  AssignPublicIp?: AssignPublicIp | string;
@@ -227,6 +240,7 @@ export interface AwsVpcConfiguration {
227
240
  */
228
241
  export interface NetworkConfiguration {
229
242
  /**
243
+ * @public
230
244
  * <p>Specifies the Amazon VPC subnets and security groups for the task, and whether a public IP address is to be used. This structure is relevant only for ECS tasks that use the awsvpc network mode.</p>
231
245
  */
232
246
  awsvpcConfiguration?: AwsVpcConfiguration;
@@ -249,10 +263,12 @@ export type PlacementConstraintType = (typeof PlacementConstraintType)[keyof typ
249
263
  */
250
264
  export interface PlacementConstraint {
251
265
  /**
266
+ * @public
252
267
  * <p>The type of constraint. Use <code>distinctInstance</code> to ensure that each task in a particular group is running on a different container instance. Use <code>memberOf</code> to restrict the selection to a group of valid candidates.</p>
253
268
  */
254
269
  type?: PlacementConstraintType | string;
255
270
  /**
271
+ * @public
256
272
  * <p>A cluster query language expression to apply to the constraint. You cannot specify an expression if the constraint type is <code>distinctInstance</code>.
257
273
  * For more information, see <a href="https://docs.aws.amazon.com/latest/developerguide/cluster-query-language.html">Cluster query language</a> in the <i>Amazon ECS Developer Guide</i>.</p>
258
274
  */
@@ -277,12 +293,14 @@ export type PlacementStrategyType = (typeof PlacementStrategyType)[keyof typeof
277
293
  */
278
294
  export interface PlacementStrategy {
279
295
  /**
296
+ * @public
280
297
  * <p>The type of placement strategy. The random placement strategy randomly places tasks on available candidates. The spread placement strategy spreads placement across available candidates
281
298
  * evenly based on the field parameter. The binpack strategy places tasks on available candidates that have the least available amount of the resource that is specified with the field parameter.
282
299
  * For example, if you binpack on memory, a task is placed on the instance with the least amount of remaining memory (but still enough to run the task).</p>
283
300
  */
284
301
  type?: PlacementStrategyType | string;
285
302
  /**
303
+ * @public
286
304
  * <p>The field to apply the placement strategy against. For the spread placement strategy, valid values are <code>instanceId</code> (or <code>instanceId</code>, which has the same effect),
287
305
  * or any platform or custom attribute that is applied to a container instance, such as <code>attribute:ecs.availability-zone</code>. For the binpack placement strategy, valid values are
288
306
  * <code>cpu</code> and <code>memory</code>. For the random placement strategy, this field is not used.</p>
@@ -308,53 +326,65 @@ export type PropagateTags = (typeof PropagateTags)[keyof typeof PropagateTags];
308
326
  */
309
327
  export interface EcsParameters {
310
328
  /**
329
+ * @public
311
330
  * <p>The Amazon Resource Name (ARN) of the task definition to use if the event target is an Amazon ECS task.</p>
312
331
  */
313
332
  TaskDefinitionArn: string | undefined;
314
333
  /**
334
+ * @public
315
335
  * <p>The number of tasks to create based on <code>TaskDefinition</code>. The default is <code>1</code>.</p>
316
336
  */
317
337
  TaskCount?: number;
318
338
  /**
339
+ * @public
319
340
  * <p>Specifies the launch type on which your task is running. The launch type that you specify here must match one of the launch type (compatibilities) of the target task.
320
341
  * The <code>FARGATE</code> value is supported only in the Regions where Fargate with Amazon ECS is supported.
321
342
  * For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/AWS_Fargate.html">AWS Fargate on Amazon ECS</a> in the <i>Amazon ECS Developer Guide</i>.</p>
322
343
  */
323
344
  LaunchType?: LaunchType | string;
324
345
  /**
346
+ * @public
325
347
  * <p>This structure specifies the network configuration for an ECS task.</p>
326
348
  */
327
349
  NetworkConfiguration?: NetworkConfiguration;
328
350
  /**
351
+ * @public
329
352
  * <p>Specifies the platform version for the task. Specify only the numeric portion of the platform version, such as <code>1.1.0</code>.</p>
330
353
  */
331
354
  PlatformVersion?: string;
332
355
  /**
356
+ * @public
333
357
  * <p>Specifies an ECS task group for the task. The maximum length is 255 characters.</p>
334
358
  */
335
359
  Group?: string;
336
360
  /**
361
+ * @public
337
362
  * <p>The capacity provider strategy to use for the task.</p>
338
363
  */
339
364
  CapacityProviderStrategy?: CapacityProviderStrategyItem[];
340
365
  /**
366
+ * @public
341
367
  * <p>Specifies whether to enable Amazon ECS managed tags for the task. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-using-tags.html">Tagging Your Amazon ECS Resources</a>
342
368
  * in the <i>Amazon ECS Developer Guide</i>.</p>
343
369
  */
344
370
  EnableECSManagedTags?: boolean;
345
371
  /**
372
+ * @public
346
373
  * <p>Whether or not to enable the execute command functionality for the containers in this task. If true, this enables execute command functionality on all containers in the task.</p>
347
374
  */
348
375
  EnableExecuteCommand?: boolean;
349
376
  /**
377
+ * @public
350
378
  * <p>An array of placement constraint objects to use for the task. You can specify up to 10 constraints per task (including constraints in the task definition and those specified at runtime).</p>
351
379
  */
352
380
  PlacementConstraints?: PlacementConstraint[];
353
381
  /**
382
+ * @public
354
383
  * <p>The task placement strategy for a task or service.</p>
355
384
  */
356
385
  PlacementStrategy?: PlacementStrategy[];
357
386
  /**
387
+ * @public
358
388
  * <p>Specifies whether to propagate the tags from the task definition to the task. If no value is specified, the tags are not propagated.
359
389
  * Tags can only be propagated to the task during task creation. To add tags to a task after task creation, use Amazon ECS's <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_TagResource.html">
360
390
  * <code>TagResource</code>
@@ -364,10 +394,12 @@ export interface EcsParameters {
364
394
  */
365
395
  PropagateTags?: PropagateTags | string;
366
396
  /**
397
+ * @public
367
398
  * <p>The reference ID to use for the task.</p>
368
399
  */
369
400
  ReferenceId?: string;
370
401
  /**
402
+ * @public
371
403
  * <p>The metadata that you apply to the task to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.
372
404
  * For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_RunTask.html">
373
405
  * <code>RunTask</code>
@@ -383,10 +415,12 @@ export interface EcsParameters {
383
415
  */
384
416
  export interface EventBridgeParameters {
385
417
  /**
418
+ * @public
386
419
  * <p>A free-form string, with a maximum of 128 characters, used to decide what fields to expect in the event detail.</p>
387
420
  */
388
421
  DetailType: string | undefined;
389
422
  /**
423
+ * @public
390
424
  * <p>The source of the event.</p>
391
425
  */
392
426
  Source: string | undefined;
@@ -399,6 +433,7 @@ export interface EventBridgeParameters {
399
433
  */
400
434
  export interface KinesisParameters {
401
435
  /**
436
+ * @public
402
437
  * <p>Specifies the shard to which EventBridge Scheduler sends the event. For more information, see <a href="https://docs.aws.amazon.com/streams/latest/dev/key-concepts.html">Amazon Kinesis Data Streams terminology and concepts</a> in the
403
438
  * <i>Amazon Kinesis Streams Developer Guide</i>.</p>
404
439
  */
@@ -410,10 +445,12 @@ export interface KinesisParameters {
410
445
  */
411
446
  export interface RetryPolicy {
412
447
  /**
448
+ * @public
413
449
  * <p>The maximum amount of time, in seconds, to continue to make retry attempts.</p>
414
450
  */
415
451
  MaximumEventAgeInSeconds?: number;
416
452
  /**
453
+ * @public
417
454
  * <p>The maximum number of retry attempts to make before the request fails. Retry attempts with exponential backoff continue until either the maximum number of attempts is made or
418
455
  * until the duration of the <code>MaximumEventAgeInSeconds</code> is reached.</p>
419
456
  */
@@ -425,10 +462,12 @@ export interface RetryPolicy {
425
462
  */
426
463
  export interface SageMakerPipelineParameter {
427
464
  /**
465
+ * @public
428
466
  * <p>Name of parameter to start execution of a SageMaker Model Building Pipeline.</p>
429
467
  */
430
468
  Name: string | undefined;
431
469
  /**
470
+ * @public
432
471
  * <p>Value of parameter to start execution of a SageMaker Model Building Pipeline.</p>
433
472
  */
434
473
  Value: string | undefined;
@@ -441,6 +480,7 @@ export interface SageMakerPipelineParameter {
441
480
  */
442
481
  export interface SageMakerPipelineParameters {
443
482
  /**
483
+ * @public
444
484
  * <p>List of parameter names and values to use when executing the SageMaker Model Building Pipeline.</p>
445
485
  */
446
486
  PipelineParameterList?: SageMakerPipelineParameter[];
@@ -457,6 +497,7 @@ export interface SageMakerPipelineParameters {
457
497
  */
458
498
  export interface SqsParameters {
459
499
  /**
500
+ * @public
460
501
  * <p>The FIFO message group ID to use as the target.</p>
461
502
  */
462
503
  MessageGroupId?: string;
@@ -468,52 +509,62 @@ export interface SqsParameters {
468
509
  */
469
510
  export interface Target {
470
511
  /**
512
+ * @public
471
513
  * <p>The Amazon Resource Name (ARN) of the target.</p>
472
514
  */
473
515
  Arn: string | undefined;
474
516
  /**
517
+ * @public
475
518
  * <p>The Amazon Resource Name (ARN) of the IAM role that EventBridge Scheduler will use for this target when the schedule is invoked.</p>
476
519
  */
477
520
  RoleArn: string | undefined;
478
521
  /**
522
+ * @public
479
523
  * <p>An object that contains information about an Amazon SQS queue that EventBridge Scheduler uses as a dead-letter queue for your schedule. If specified, EventBridge Scheduler delivers failed events that could not be successfully delivered to a target to the queue.</p>
480
524
  */
481
525
  DeadLetterConfig?: DeadLetterConfig;
482
526
  /**
527
+ * @public
483
528
  * <p>A <code>RetryPolicy</code> object that includes information about the retry policy settings, including the maximum age of an event, and the maximum number of times EventBridge Scheduler will try to deliver the event to a target.</p>
484
529
  */
485
530
  RetryPolicy?: RetryPolicy;
486
531
  /**
532
+ * @public
487
533
  * <p>The text, or well-formed JSON, passed to the target. If you are configuring a templated Lambda, AWS Step Functions, or Amazon EventBridge target,
488
534
  * the input must be a well-formed JSON. For all other target types, a JSON is not required. If you do not specify anything for this field, EventBridge Scheduler
489
535
  * delivers a default notification to the target.</p>
490
536
  */
491
537
  Input?: string;
492
538
  /**
539
+ * @public
493
540
  * <p>The templated target type for the Amazon ECS <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_RunTask.html">
494
541
  * <code>RunTask</code>
495
542
  * </a> API operation.</p>
496
543
  */
497
544
  EcsParameters?: EcsParameters;
498
545
  /**
546
+ * @public
499
547
  * <p>The templated target type for the EventBridge <a href="https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_PutEvents.html">
500
548
  * <code>PutEvents</code>
501
549
  * </a> API operation.</p>
502
550
  */
503
551
  EventBridgeParameters?: EventBridgeParameters;
504
552
  /**
553
+ * @public
505
554
  * <p>The templated target type for the Amazon Kinesis <a href="kinesis/latest/APIReference/API_PutRecord.html">
506
555
  * <code>PutRecord</code>
507
556
  * </a> API operation.</p>
508
557
  */
509
558
  KinesisParameters?: KinesisParameters;
510
559
  /**
560
+ * @public
511
561
  * <p>The templated target type for the Amazon SageMaker <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_StartPipelineExecution.html">
512
562
  * <code>StartPipelineExecution</code>
513
563
  * </a> API operation.</p>
514
564
  */
515
565
  SageMakerPipelineParameters?: SageMakerPipelineParameters;
516
566
  /**
567
+ * @public
517
568
  * <p>The templated target type for the Amazon SQS <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_SendMessage.html">
518
569
  * <code>SendMessage</code>
519
570
  * </a> API operation.
@@ -528,14 +579,17 @@ export interface Target {
528
579
  */
529
580
  export interface CreateScheduleInput {
530
581
  /**
582
+ * @public
531
583
  * <p>The name of the schedule that you are creating.</p>
532
584
  */
533
585
  Name: string | undefined;
534
586
  /**
587
+ * @public
535
588
  * <p>The name of the schedule group to associate with this schedule. If you omit this, the default schedule group is used.</p>
536
589
  */
537
590
  GroupName?: string;
538
591
  /**
592
+ * @public
539
593
  * <p>
540
594
  * The expression that defines when the schedule runs. The following formats are supported.
541
595
  * </p>
@@ -575,40 +629,49 @@ export interface CreateScheduleInput {
575
629
  */
576
630
  ScheduleExpression: string | undefined;
577
631
  /**
632
+ * @public
578
633
  * <p>The date, in UTC, after which the schedule can begin invoking its target. Depending on the schedule's recurrence expression, invocations might occur on, or after, the <code>StartDate</code> you specify.
579
634
  * EventBridge Scheduler ignores <code>StartDate</code> for one-time schedules.</p>
580
635
  */
581
636
  StartDate?: Date;
582
637
  /**
638
+ * @public
583
639
  * <p>The date, in UTC, before which the schedule can invoke its target. Depending on the schedule's recurrence expression, invocations might stop on, or before, the <code>EndDate</code> you specify.
584
640
  * EventBridge Scheduler ignores <code>EndDate</code> for one-time schedules.</p>
585
641
  */
586
642
  EndDate?: Date;
587
643
  /**
644
+ * @public
588
645
  * <p>The description you specify for the schedule.</p>
589
646
  */
590
647
  Description?: string;
591
648
  /**
649
+ * @public
592
650
  * <p>The timezone in which the scheduling expression is evaluated.</p>
593
651
  */
594
652
  ScheduleExpressionTimezone?: string;
595
653
  /**
654
+ * @public
596
655
  * <p>Specifies whether the schedule is enabled or disabled.</p>
597
656
  */
598
657
  State?: ScheduleState | string;
599
658
  /**
659
+ * @public
600
660
  * <p>The Amazon Resource Name (ARN) for the customer managed KMS key that EventBridge Scheduler will use to encrypt and decrypt your data.</p>
601
661
  */
602
662
  KmsKeyArn?: string;
603
663
  /**
664
+ * @public
604
665
  * <p>The schedule's target.</p>
605
666
  */
606
667
  Target: Target | undefined;
607
668
  /**
669
+ * @public
608
670
  * <p>Allows you to configure a time window during which EventBridge Scheduler invokes the schedule.</p>
609
671
  */
610
672
  FlexibleTimeWindow: FlexibleTimeWindow | undefined;
611
673
  /**
674
+ * @public
612
675
  * <p>
613
676
  * Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token,
614
677
  * EventBridge Scheduler uses a randomly generated token for the request to ensure idempotency.
@@ -616,6 +679,7 @@ export interface CreateScheduleInput {
616
679
  */
617
680
  ClientToken?: string;
618
681
  /**
682
+ * @public
619
683
  * <p>Specifies the action that EventBridge Scheduler applies to the schedule after the schedule completes invoking the target.</p>
620
684
  */
621
685
  ActionAfterCompletion?: ActionAfterCompletion | string;
@@ -625,6 +689,7 @@ export interface CreateScheduleInput {
625
689
  */
626
690
  export interface CreateScheduleOutput {
627
691
  /**
692
+ * @public
628
693
  * <p>The Amazon Resource Name (ARN) of the schedule.</p>
629
694
  */
630
695
  ScheduleArn: string | undefined;
@@ -647,14 +712,17 @@ export declare class ServiceQuotaExceededException extends __BaseException {
647
712
  */
648
713
  export interface DeleteScheduleInput {
649
714
  /**
715
+ * @public
650
716
  * <p>The name of the schedule to delete.</p>
651
717
  */
652
718
  Name: string | undefined;
653
719
  /**
720
+ * @public
654
721
  * <p>The name of the schedule group associated with this schedule. If you omit this, the default schedule group is used.</p>
655
722
  */
656
723
  GroupName?: string;
657
724
  /**
725
+ * @public
658
726
  * <p>
659
727
  * Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token,
660
728
  * EventBridge Scheduler uses a randomly generated token for the request to ensure idempotency.
@@ -672,10 +740,12 @@ export interface DeleteScheduleOutput {
672
740
  */
673
741
  export interface GetScheduleInput {
674
742
  /**
743
+ * @public
675
744
  * <p>The name of the schedule to retrieve.</p>
676
745
  */
677
746
  Name: string | undefined;
678
747
  /**
748
+ * @public
679
749
  * <p>The name of the schedule group associated with this schedule. If you omit this, EventBridge Scheduler assumes that the schedule is associated with the default group.</p>
680
750
  */
681
751
  GroupName?: string;
@@ -685,18 +755,22 @@ export interface GetScheduleInput {
685
755
  */
686
756
  export interface GetScheduleOutput {
687
757
  /**
758
+ * @public
688
759
  * <p>The Amazon Resource Name (ARN) of the schedule.</p>
689
760
  */
690
761
  Arn?: string;
691
762
  /**
763
+ * @public
692
764
  * <p>The name of the schedule group associated with this schedule.</p>
693
765
  */
694
766
  GroupName?: string;
695
767
  /**
768
+ * @public
696
769
  * <p>The name of the schedule.</p>
697
770
  */
698
771
  Name?: string;
699
772
  /**
773
+ * @public
700
774
  * <p>
701
775
  * The expression that defines when the schedule runs. The following formats are supported.
702
776
  * </p>
@@ -736,48 +810,59 @@ export interface GetScheduleOutput {
736
810
  */
737
811
  ScheduleExpression?: string;
738
812
  /**
813
+ * @public
739
814
  * <p>The date, in UTC, after which the schedule can begin invoking its target. Depending on the schedule's recurrence expression, invocations might occur on, or after, the <code>StartDate</code> you specify.
740
815
  * EventBridge Scheduler ignores <code>StartDate</code> for one-time schedules.</p>
741
816
  */
742
817
  StartDate?: Date;
743
818
  /**
819
+ * @public
744
820
  * <p>The date, in UTC, before which the schedule can invoke its target. Depending on the schedule's recurrence expression, invocations might stop on, or before, the <code>EndDate</code> you specify.
745
821
  * EventBridge Scheduler ignores <code>EndDate</code> for one-time schedules.</p>
746
822
  */
747
823
  EndDate?: Date;
748
824
  /**
825
+ * @public
749
826
  * <p>The description of the schedule.</p>
750
827
  */
751
828
  Description?: string;
752
829
  /**
830
+ * @public
753
831
  * <p>The timezone in which the scheduling expression is evaluated.</p>
754
832
  */
755
833
  ScheduleExpressionTimezone?: string;
756
834
  /**
835
+ * @public
757
836
  * <p>Specifies whether the schedule is enabled or disabled.</p>
758
837
  */
759
838
  State?: ScheduleState | string;
760
839
  /**
840
+ * @public
761
841
  * <p>The time at which the schedule was created.</p>
762
842
  */
763
843
  CreationDate?: Date;
764
844
  /**
845
+ * @public
765
846
  * <p>The time at which the schedule was last modified.</p>
766
847
  */
767
848
  LastModificationDate?: Date;
768
849
  /**
850
+ * @public
769
851
  * <p>The ARN for a customer managed KMS Key that is be used to encrypt and decrypt your data.</p>
770
852
  */
771
853
  KmsKeyArn?: string;
772
854
  /**
855
+ * @public
773
856
  * <p>The schedule target.</p>
774
857
  */
775
858
  Target?: Target;
776
859
  /**
860
+ * @public
777
861
  * <p>Allows you to configure a time window during which EventBridge Scheduler invokes the schedule.</p>
778
862
  */
779
863
  FlexibleTimeWindow?: FlexibleTimeWindow;
780
864
  /**
865
+ * @public
781
866
  * <p>Indicates the action that EventBridge Scheduler applies to the schedule after the schedule completes invoking the target.</p>
782
867
  */
783
868
  ActionAfterCompletion?: ActionAfterCompletion | string;
@@ -787,22 +872,27 @@ export interface GetScheduleOutput {
787
872
  */
788
873
  export interface ListSchedulesInput {
789
874
  /**
875
+ * @public
790
876
  * <p>If specified, only lists the schedules whose associated schedule group matches the given filter.</p>
791
877
  */
792
878
  GroupName?: string;
793
879
  /**
880
+ * @public
794
881
  * <p>Schedule name prefix to return the filtered list of resources.</p>
795
882
  */
796
883
  NamePrefix?: string;
797
884
  /**
885
+ * @public
798
886
  * <p>If specified, only lists the schedules whose current state matches the given filter.</p>
799
887
  */
800
888
  State?: ScheduleState | string;
801
889
  /**
890
+ * @public
802
891
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
803
892
  */
804
893
  NextToken?: string;
805
894
  /**
895
+ * @public
806
896
  * <p>If specified, limits the number of results returned by this operation. The operation also returns a <code>NextToken</code> which you can use in a subsequent operation to retrieve the next set of results.</p>
807
897
  */
808
898
  MaxResults?: number;
@@ -813,6 +903,7 @@ export interface ListSchedulesInput {
813
903
  */
814
904
  export interface TargetSummary {
815
905
  /**
906
+ * @public
816
907
  * <p>The Amazon Resource Name (ARN) of the target.</p>
817
908
  */
818
909
  Arn: string | undefined;
@@ -823,30 +914,37 @@ export interface TargetSummary {
823
914
  */
824
915
  export interface ScheduleSummary {
825
916
  /**
917
+ * @public
826
918
  * <p>The Amazon Resource Name (ARN) of the schedule.</p>
827
919
  */
828
920
  Arn?: string;
829
921
  /**
922
+ * @public
830
923
  * <p>The name of the schedule.</p>
831
924
  */
832
925
  Name?: string;
833
926
  /**
927
+ * @public
834
928
  * <p>The name of the schedule group associated with this schedule.</p>
835
929
  */
836
930
  GroupName?: string;
837
931
  /**
932
+ * @public
838
933
  * <p>Specifies whether the schedule is enabled or disabled.</p>
839
934
  */
840
935
  State?: ScheduleState | string;
841
936
  /**
937
+ * @public
842
938
  * <p>The time at which the schedule was created.</p>
843
939
  */
844
940
  CreationDate?: Date;
845
941
  /**
942
+ * @public
846
943
  * <p>The time at which the schedule was last modified.</p>
847
944
  */
848
945
  LastModificationDate?: Date;
849
946
  /**
947
+ * @public
850
948
  * <p>The schedule's target details.</p>
851
949
  */
852
950
  Target?: TargetSummary;
@@ -856,10 +954,12 @@ export interface ScheduleSummary {
856
954
  */
857
955
  export interface ListSchedulesOutput {
858
956
  /**
957
+ * @public
859
958
  * <p>Indicates whether there are additional results to retrieve. If the value is null, there are no more results.</p>
860
959
  */
861
960
  NextToken?: string;
862
961
  /**
962
+ * @public
863
963
  * <p>The schedules that match the specified criteria.</p>
864
964
  */
865
965
  Schedules: ScheduleSummary[] | undefined;
@@ -869,15 +969,18 @@ export interface ListSchedulesOutput {
869
969
  */
870
970
  export interface UpdateScheduleInput {
871
971
  /**
972
+ * @public
872
973
  * <p>The name of the schedule that you are updating.</p>
873
974
  */
874
975
  Name: string | undefined;
875
976
  /**
977
+ * @public
876
978
  * <p>The name of the schedule group with which the schedule is associated. You must provide this value in order for EventBridge Scheduler to find the schedule you want to update.
877
979
  * If you omit this value, EventBridge Scheduler assumes the group is associated to the default group.</p>
878
980
  */
879
981
  GroupName?: string;
880
982
  /**
983
+ * @public
881
984
  * <p>
882
985
  * The expression that defines when the schedule runs. The following formats are supported.
883
986
  * </p>
@@ -917,40 +1020,49 @@ export interface UpdateScheduleInput {
917
1020
  */
918
1021
  ScheduleExpression: string | undefined;
919
1022
  /**
1023
+ * @public
920
1024
  * <p>The date, in UTC, after which the schedule can begin invoking its target. Depending on the schedule's recurrence expression, invocations might occur on, or after, the <code>StartDate</code> you specify.
921
1025
  * EventBridge Scheduler ignores <code>StartDate</code> for one-time schedules.</p>
922
1026
  */
923
1027
  StartDate?: Date;
924
1028
  /**
1029
+ * @public
925
1030
  * <p>The date, in UTC, before which the schedule can invoke its target. Depending on the schedule's recurrence expression, invocations might stop on, or before, the <code>EndDate</code> you specify.
926
1031
  * EventBridge Scheduler ignores <code>EndDate</code> for one-time schedules.</p>
927
1032
  */
928
1033
  EndDate?: Date;
929
1034
  /**
1035
+ * @public
930
1036
  * <p>The description you specify for the schedule.</p>
931
1037
  */
932
1038
  Description?: string;
933
1039
  /**
1040
+ * @public
934
1041
  * <p>The timezone in which the scheduling expression is evaluated.</p>
935
1042
  */
936
1043
  ScheduleExpressionTimezone?: string;
937
1044
  /**
1045
+ * @public
938
1046
  * <p>Specifies whether the schedule is enabled or disabled.</p>
939
1047
  */
940
1048
  State?: ScheduleState | string;
941
1049
  /**
1050
+ * @public
942
1051
  * <p>The ARN for the customer managed KMS key that that you want EventBridge Scheduler to use to encrypt and decrypt your data.</p>
943
1052
  */
944
1053
  KmsKeyArn?: string;
945
1054
  /**
1055
+ * @public
946
1056
  * <p>The schedule target. You can use this operation to change the target that your schedule invokes.</p>
947
1057
  */
948
1058
  Target: Target | undefined;
949
1059
  /**
1060
+ * @public
950
1061
  * <p>Allows you to configure a time window during which EventBridge Scheduler invokes the schedule.</p>
951
1062
  */
952
1063
  FlexibleTimeWindow: FlexibleTimeWindow | undefined;
953
1064
  /**
1065
+ * @public
954
1066
  * <p>
955
1067
  * Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token,
956
1068
  * EventBridge Scheduler uses a randomly generated token for the request to ensure idempotency.
@@ -958,6 +1070,7 @@ export interface UpdateScheduleInput {
958
1070
  */
959
1071
  ClientToken?: string;
960
1072
  /**
1073
+ * @public
961
1074
  * <p>Specifies the action that EventBridge Scheduler applies to the schedule after the schedule completes invoking the target.</p>
962
1075
  */
963
1076
  ActionAfterCompletion?: ActionAfterCompletion | string;
@@ -967,6 +1080,7 @@ export interface UpdateScheduleInput {
967
1080
  */
968
1081
  export interface UpdateScheduleOutput {
969
1082
  /**
1083
+ * @public
970
1084
  * <p>The Amazon Resource Name (ARN) of the schedule that you updated.</p>
971
1085
  */
972
1086
  ScheduleArn: string | undefined;
@@ -976,14 +1090,17 @@ export interface UpdateScheduleOutput {
976
1090
  */
977
1091
  export interface CreateScheduleGroupInput {
978
1092
  /**
1093
+ * @public
979
1094
  * <p>The name of the schedule group that you are creating.</p>
980
1095
  */
981
1096
  Name: string | undefined;
982
1097
  /**
1098
+ * @public
983
1099
  * <p>The list of tags to associate with the schedule group.</p>
984
1100
  */
985
1101
  Tags?: Tag[];
986
1102
  /**
1103
+ * @public
987
1104
  * <p>
988
1105
  * Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token,
989
1106
  * EventBridge Scheduler uses a randomly generated token for the request to ensure idempotency.
@@ -996,6 +1113,7 @@ export interface CreateScheduleGroupInput {
996
1113
  */
997
1114
  export interface CreateScheduleGroupOutput {
998
1115
  /**
1116
+ * @public
999
1117
  * <p>The Amazon Resource Name (ARN) of the schedule group.</p>
1000
1118
  */
1001
1119
  ScheduleGroupArn: string | undefined;
@@ -1005,10 +1123,12 @@ export interface CreateScheduleGroupOutput {
1005
1123
  */
1006
1124
  export interface DeleteScheduleGroupInput {
1007
1125
  /**
1126
+ * @public
1008
1127
  * <p>The name of the schedule group to delete.</p>
1009
1128
  */
1010
1129
  Name: string | undefined;
1011
1130
  /**
1131
+ * @public
1012
1132
  * <p>
1013
1133
  * Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token,
1014
1134
  * EventBridge Scheduler uses a randomly generated token for the request to ensure idempotency.
@@ -1026,6 +1146,7 @@ export interface DeleteScheduleGroupOutput {
1026
1146
  */
1027
1147
  export interface GetScheduleGroupInput {
1028
1148
  /**
1149
+ * @public
1029
1150
  * <p>The name of the schedule group to retrieve.</p>
1030
1151
  */
1031
1152
  Name: string | undefined;
@@ -1047,22 +1168,27 @@ export type ScheduleGroupState = (typeof ScheduleGroupState)[keyof typeof Schedu
1047
1168
  */
1048
1169
  export interface GetScheduleGroupOutput {
1049
1170
  /**
1171
+ * @public
1050
1172
  * <p>The Amazon Resource Name (ARN) of the schedule group.</p>
1051
1173
  */
1052
1174
  Arn?: string;
1053
1175
  /**
1176
+ * @public
1054
1177
  * <p>The name of the schedule group.</p>
1055
1178
  */
1056
1179
  Name?: string;
1057
1180
  /**
1181
+ * @public
1058
1182
  * <p>Specifies the state of the schedule group.</p>
1059
1183
  */
1060
1184
  State?: ScheduleGroupState | string;
1061
1185
  /**
1186
+ * @public
1062
1187
  * <p>The time at which the schedule group was created.</p>
1063
1188
  */
1064
1189
  CreationDate?: Date;
1065
1190
  /**
1191
+ * @public
1066
1192
  * <p>The time at which the schedule group was last modified.</p>
1067
1193
  */
1068
1194
  LastModificationDate?: Date;
@@ -1072,14 +1198,17 @@ export interface GetScheduleGroupOutput {
1072
1198
  */
1073
1199
  export interface ListScheduleGroupsInput {
1074
1200
  /**
1201
+ * @public
1075
1202
  * <p>The name prefix that you can use to return a filtered list of your schedule groups.</p>
1076
1203
  */
1077
1204
  NamePrefix?: string;
1078
1205
  /**
1206
+ * @public
1079
1207
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
1080
1208
  */
1081
1209
  NextToken?: string;
1082
1210
  /**
1211
+ * @public
1083
1212
  * <p>If specified, limits the number of results returned by this operation. The operation also returns a <code>NextToken</code> which you can use in a subsequent operation to retrieve the next set of results.</p>
1084
1213
  */
1085
1214
  MaxResults?: number;
@@ -1090,22 +1219,27 @@ export interface ListScheduleGroupsInput {
1090
1219
  */
1091
1220
  export interface ScheduleGroupSummary {
1092
1221
  /**
1222
+ * @public
1093
1223
  * <p>The Amazon Resource Name (ARN) of the schedule group.</p>
1094
1224
  */
1095
1225
  Arn?: string;
1096
1226
  /**
1227
+ * @public
1097
1228
  * <p>The name of the schedule group.</p>
1098
1229
  */
1099
1230
  Name?: string;
1100
1231
  /**
1232
+ * @public
1101
1233
  * <p>Specifies the state of the schedule group.</p>
1102
1234
  */
1103
1235
  State?: ScheduleGroupState | string;
1104
1236
  /**
1237
+ * @public
1105
1238
  * <p>The time at which the schedule group was created.</p>
1106
1239
  */
1107
1240
  CreationDate?: Date;
1108
1241
  /**
1242
+ * @public
1109
1243
  * <p>The time at which the schedule group was last modified.</p>
1110
1244
  */
1111
1245
  LastModificationDate?: Date;
@@ -1115,10 +1249,12 @@ export interface ScheduleGroupSummary {
1115
1249
  */
1116
1250
  export interface ListScheduleGroupsOutput {
1117
1251
  /**
1252
+ * @public
1118
1253
  * <p>Indicates whether there are additional results to retrieve. If the value is null, there are no more results.</p>
1119
1254
  */
1120
1255
  NextToken?: string;
1121
1256
  /**
1257
+ * @public
1122
1258
  * <p>The schedule groups that match the specified criteria.</p>
1123
1259
  */
1124
1260
  ScheduleGroups: ScheduleGroupSummary[] | undefined;
@@ -1128,10 +1264,12 @@ export interface ListScheduleGroupsOutput {
1128
1264
  */
1129
1265
  export interface TagResourceInput {
1130
1266
  /**
1267
+ * @public
1131
1268
  * <p>The Amazon Resource Name (ARN) of the schedule group that you are adding tags to.</p>
1132
1269
  */
1133
1270
  ResourceArn: string | undefined;
1134
1271
  /**
1272
+ * @public
1135
1273
  * <p>The list of tags to associate with the schedule group.</p>
1136
1274
  */
1137
1275
  Tags: Tag[] | undefined;
@@ -1146,10 +1284,12 @@ export interface TagResourceOutput {
1146
1284
  */
1147
1285
  export interface UntagResourceInput {
1148
1286
  /**
1287
+ * @public
1149
1288
  * <p>The Amazon Resource Name (ARN) of the schedule group from which you are removing tags.</p>
1150
1289
  */
1151
1290
  ResourceArn: string | undefined;
1152
1291
  /**
1292
+ * @public
1153
1293
  * <p>The list of tag keys to remove from the resource.</p>
1154
1294
  */
1155
1295
  TagKeys: string[] | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-scheduler",
3
3
  "description": "AWS SDK for JavaScript Scheduler Client for Node.js, Browser and React Native",
4
- "version": "3.381.0",
4
+ "version": "3.382.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,15 +21,15 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.379.1",
25
- "@aws-sdk/credential-provider-node": "3.379.1",
24
+ "@aws-sdk/client-sts": "3.382.0",
25
+ "@aws-sdk/credential-provider-node": "3.382.0",
26
26
  "@aws-sdk/middleware-host-header": "3.379.1",
27
27
  "@aws-sdk/middleware-logger": "3.378.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.378.0",
29
29
  "@aws-sdk/middleware-signing": "3.379.1",
30
- "@aws-sdk/middleware-user-agent": "3.379.1",
30
+ "@aws-sdk/middleware-user-agent": "3.382.0",
31
31
  "@aws-sdk/types": "3.378.0",
32
- "@aws-sdk/util-endpoints": "3.378.0",
32
+ "@aws-sdk/util-endpoints": "3.382.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.378.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.378.0",
35
35
  "@smithy/config-resolver": "^2.0.1",