@aws-sdk/client-scheduler 3.686.0 → 3.691.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.
@@ -71,7 +71,7 @@ export interface ListTagsForResourceOutput {
71
71
  * <p>The list of tags associated with the specified resource.</p>
72
72
  * @public
73
73
  */
74
- Tags?: Tag[];
74
+ Tags?: Tag[] | undefined;
75
75
  }
76
76
  /**
77
77
  * <p>The request references a resource which does not exist.</p>
@@ -151,7 +151,7 @@ export interface FlexibleTimeWindow {
151
151
  * <p>The maximum time window during which a schedule can be invoked.</p>
152
152
  * @public
153
153
  */
154
- MaximumWindowInMinutes?: number;
154
+ MaximumWindowInMinutes?: number | undefined;
155
155
  }
156
156
  /**
157
157
  * @public
@@ -174,7 +174,7 @@ export interface DeadLetterConfig {
174
174
  * <p>The Amazon Resource Name (ARN) of the SQS queue specified as the destination for the dead-letter queue.</p>
175
175
  * @public
176
176
  */
177
- Arn?: string;
177
+ Arn?: string | undefined;
178
178
  }
179
179
  /**
180
180
  * <p>The details of a capacity provider strategy.</p>
@@ -191,13 +191,13 @@ export interface CapacityProviderStrategyItem {
191
191
  * base value, if defined, is satisfied.</p>
192
192
  * @public
193
193
  */
194
- weight?: number;
194
+ weight?: number | undefined;
195
195
  /**
196
196
  * <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.
197
197
  * If no value is specified, the default value of <code>0</code> is used.</p>
198
198
  * @public
199
199
  */
200
- base?: number;
200
+ base?: number | undefined;
201
201
  }
202
202
  /**
203
203
  * @public
@@ -227,12 +227,12 @@ export interface AwsVpcConfiguration {
227
227
  * If you do not specify a security group, the default security group for the VPC is used.</p>
228
228
  * @public
229
229
  */
230
- SecurityGroups?: string[];
230
+ SecurityGroups?: string[] | undefined;
231
231
  /**
232
232
  * <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>
233
233
  * @public
234
234
  */
235
- AssignPublicIp?: AssignPublicIp;
235
+ AssignPublicIp?: AssignPublicIp | undefined;
236
236
  }
237
237
  /**
238
238
  * <p>Specifies the network configuration for an ECS task.</p>
@@ -243,7 +243,7 @@ export interface NetworkConfiguration {
243
243
  * <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>
244
244
  * @public
245
245
  */
246
- awsvpcConfiguration?: AwsVpcConfiguration;
246
+ awsvpcConfiguration?: AwsVpcConfiguration | undefined;
247
247
  }
248
248
  /**
249
249
  * @public
@@ -266,13 +266,13 @@ export interface PlacementConstraint {
266
266
  * <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>
267
267
  * @public
268
268
  */
269
- type?: PlacementConstraintType;
269
+ type?: PlacementConstraintType | undefined;
270
270
  /**
271
271
  * <p>A cluster query language expression to apply to the constraint. You cannot specify an expression if the constraint type is <code>distinctInstance</code>.
272
272
  * 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>
273
273
  * @public
274
274
  */
275
- expression?: string;
275
+ expression?: string | undefined;
276
276
  }
277
277
  /**
278
278
  * @public
@@ -298,14 +298,14 @@ export interface PlacementStrategy {
298
298
  * 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>
299
299
  * @public
300
300
  */
301
- type?: PlacementStrategyType;
301
+ type?: PlacementStrategyType | undefined;
302
302
  /**
303
303
  * <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),
304
304
  * 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
305
305
  * <code>cpu</code> and <code>memory</code>. For the random placement strategy, this field is not used.</p>
306
306
  * @public
307
307
  */
308
- field?: string;
308
+ field?: string | undefined;
309
309
  }
310
310
  /**
311
311
  * @public
@@ -334,55 +334,55 @@ export interface EcsParameters {
334
334
  * <p>The number of tasks to create based on <code>TaskDefinition</code>. The default is <code>1</code>.</p>
335
335
  * @public
336
336
  */
337
- TaskCount?: number;
337
+ TaskCount?: number | undefined;
338
338
  /**
339
339
  * <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.
340
340
  * The <code>FARGATE</code> value is supported only in the Regions where Fargate with Amazon ECS is supported.
341
341
  * 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>
342
342
  * @public
343
343
  */
344
- LaunchType?: LaunchType;
344
+ LaunchType?: LaunchType | undefined;
345
345
  /**
346
346
  * <p>This structure specifies the network configuration for an ECS task.</p>
347
347
  * @public
348
348
  */
349
- NetworkConfiguration?: NetworkConfiguration;
349
+ NetworkConfiguration?: NetworkConfiguration | undefined;
350
350
  /**
351
351
  * <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>
352
352
  * @public
353
353
  */
354
- PlatformVersion?: string;
354
+ PlatformVersion?: string | undefined;
355
355
  /**
356
356
  * <p>Specifies an ECS task group for the task. The maximum length is 255 characters.</p>
357
357
  * @public
358
358
  */
359
- Group?: string;
359
+ Group?: string | undefined;
360
360
  /**
361
361
  * <p>The capacity provider strategy to use for the task.</p>
362
362
  * @public
363
363
  */
364
- CapacityProviderStrategy?: CapacityProviderStrategyItem[];
364
+ CapacityProviderStrategy?: CapacityProviderStrategyItem[] | undefined;
365
365
  /**
366
366
  * <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>
367
367
  * in the <i>Amazon ECS Developer Guide</i>.</p>
368
368
  * @public
369
369
  */
370
- EnableECSManagedTags?: boolean;
370
+ EnableECSManagedTags?: boolean | undefined;
371
371
  /**
372
372
  * <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>
373
373
  * @public
374
374
  */
375
- EnableExecuteCommand?: boolean;
375
+ EnableExecuteCommand?: boolean | undefined;
376
376
  /**
377
377
  * <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>
378
378
  * @public
379
379
  */
380
- PlacementConstraints?: PlacementConstraint[];
380
+ PlacementConstraints?: PlacementConstraint[] | undefined;
381
381
  /**
382
382
  * <p>The task placement strategy for a task or service.</p>
383
383
  * @public
384
384
  */
385
- PlacementStrategy?: PlacementStrategy[];
385
+ PlacementStrategy?: PlacementStrategy[] | undefined;
386
386
  /**
387
387
  * <p>Specifies whether to propagate the tags from the task definition to the task. If no value is specified, the tags are not propagated.
388
388
  * 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">
@@ -392,12 +392,12 @@ export interface EcsParameters {
392
392
  * </p>
393
393
  * @public
394
394
  */
395
- PropagateTags?: PropagateTags;
395
+ PropagateTags?: PropagateTags | undefined;
396
396
  /**
397
397
  * <p>The reference ID to use for the task.</p>
398
398
  * @public
399
399
  */
400
- ReferenceId?: string;
400
+ ReferenceId?: string | undefined;
401
401
  /**
402
402
  * <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.
403
403
  * For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_RunTask.html">
@@ -405,7 +405,7 @@ export interface EcsParameters {
405
405
  * </a> in the <i>Amazon ECS API Reference</i>.</p>
406
406
  * @public
407
407
  */
408
- Tags?: Record<string, string>[];
408
+ Tags?: Record<string, string>[] | undefined;
409
409
  }
410
410
  /**
411
411
  * <p>The templated target type for the EventBridge <a href="https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_PutEvents.html">
@@ -448,13 +448,13 @@ export interface RetryPolicy {
448
448
  * <p>The maximum amount of time, in seconds, to continue to make retry attempts.</p>
449
449
  * @public
450
450
  */
451
- MaximumEventAgeInSeconds?: number;
451
+ MaximumEventAgeInSeconds?: number | undefined;
452
452
  /**
453
453
  * <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
454
454
  * until the duration of the <code>MaximumEventAgeInSeconds</code> is reached.</p>
455
455
  * @public
456
456
  */
457
- MaximumRetryAttempts?: number;
457
+ MaximumRetryAttempts?: number | undefined;
458
458
  }
459
459
  /**
460
460
  * <p>The name and value pair of a parameter to use to start execution of a SageMaker Model Building Pipeline.</p>
@@ -483,7 +483,7 @@ export interface SageMakerPipelineParameters {
483
483
  * <p>List of parameter names and values to use when executing the SageMaker Model Building Pipeline.</p>
484
484
  * @public
485
485
  */
486
- PipelineParameterList?: SageMakerPipelineParameter[];
486
+ PipelineParameterList?: SageMakerPipelineParameter[] | undefined;
487
487
  }
488
488
  /**
489
489
  * <p>The templated target type for the Amazon SQS <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_SendMessage.html">
@@ -500,7 +500,7 @@ export interface SqsParameters {
500
500
  * <p>The FIFO message group ID to use as the target.</p>
501
501
  * @public
502
502
  */
503
- MessageGroupId?: string;
503
+ MessageGroupId?: string | undefined;
504
504
  }
505
505
  /**
506
506
  * <p>The schedule's target. EventBridge Scheduler supports templated target that invoke common API operations, as well as universal targets that you can customize to
@@ -522,47 +522,47 @@ export interface Target {
522
522
  * <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>
523
523
  * @public
524
524
  */
525
- DeadLetterConfig?: DeadLetterConfig;
525
+ DeadLetterConfig?: DeadLetterConfig | undefined;
526
526
  /**
527
527
  * <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>
528
528
  * @public
529
529
  */
530
- RetryPolicy?: RetryPolicy;
530
+ RetryPolicy?: RetryPolicy | undefined;
531
531
  /**
532
532
  * <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,
533
533
  * 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
534
534
  * delivers a default notification to the target.</p>
535
535
  * @public
536
536
  */
537
- Input?: string;
537
+ Input?: string | undefined;
538
538
  /**
539
539
  * <p>The templated target type for the Amazon ECS <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_RunTask.html">
540
540
  * <code>RunTask</code>
541
541
  * </a> API operation.</p>
542
542
  * @public
543
543
  */
544
- EcsParameters?: EcsParameters;
544
+ EcsParameters?: EcsParameters | undefined;
545
545
  /**
546
546
  * <p>The templated target type for the EventBridge <a href="https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_PutEvents.html">
547
547
  * <code>PutEvents</code>
548
548
  * </a> API operation.</p>
549
549
  * @public
550
550
  */
551
- EventBridgeParameters?: EventBridgeParameters;
551
+ EventBridgeParameters?: EventBridgeParameters | undefined;
552
552
  /**
553
553
  * <p>The templated target type for the Amazon Kinesis <a href="kinesis/latest/APIReference/API_PutRecord.html">
554
554
  * <code>PutRecord</code>
555
555
  * </a> API operation.</p>
556
556
  * @public
557
557
  */
558
- KinesisParameters?: KinesisParameters;
558
+ KinesisParameters?: KinesisParameters | undefined;
559
559
  /**
560
560
  * <p>The templated target type for the Amazon SageMaker <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_StartPipelineExecution.html">
561
561
  * <code>StartPipelineExecution</code>
562
562
  * </a> API operation.</p>
563
563
  * @public
564
564
  */
565
- SageMakerPipelineParameters?: SageMakerPipelineParameters;
565
+ SageMakerPipelineParameters?: SageMakerPipelineParameters | undefined;
566
566
  /**
567
567
  * <p>The templated target type for the Amazon SQS <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_SendMessage.html">
568
568
  * <code>SendMessage</code>
@@ -572,7 +572,7 @@ export interface Target {
572
572
  * <i>Amazon SQS Developer Guide</i>.</p>
573
573
  * @public
574
574
  */
575
- SqsParameters?: SqsParameters;
575
+ SqsParameters?: SqsParameters | undefined;
576
576
  }
577
577
  /**
578
578
  * @public
@@ -587,7 +587,7 @@ export interface CreateScheduleInput {
587
587
  * <p>The name of the schedule group to associate with this schedule. If you omit this, the default schedule group is used.</p>
588
588
  * @public
589
589
  */
590
- GroupName?: string;
590
+ GroupName?: string | undefined;
591
591
  /**
592
592
  * <p>
593
593
  * The expression that defines when the schedule runs. The following formats are supported.
@@ -633,33 +633,33 @@ export interface CreateScheduleInput {
633
633
  * EventBridge Scheduler ignores <code>StartDate</code> for one-time schedules.</p>
634
634
  * @public
635
635
  */
636
- StartDate?: Date;
636
+ StartDate?: Date | undefined;
637
637
  /**
638
638
  * <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.
639
639
  * EventBridge Scheduler ignores <code>EndDate</code> for one-time schedules.</p>
640
640
  * @public
641
641
  */
642
- EndDate?: Date;
642
+ EndDate?: Date | undefined;
643
643
  /**
644
644
  * <p>The description you specify for the schedule.</p>
645
645
  * @public
646
646
  */
647
- Description?: string;
647
+ Description?: string | undefined;
648
648
  /**
649
649
  * <p>The timezone in which the scheduling expression is evaluated.</p>
650
650
  * @public
651
651
  */
652
- ScheduleExpressionTimezone?: string;
652
+ ScheduleExpressionTimezone?: string | undefined;
653
653
  /**
654
654
  * <p>Specifies whether the schedule is enabled or disabled.</p>
655
655
  * @public
656
656
  */
657
- State?: ScheduleState;
657
+ State?: ScheduleState | undefined;
658
658
  /**
659
659
  * <p>The Amazon Resource Name (ARN) for the customer managed KMS key that EventBridge Scheduler will use to encrypt and decrypt your data.</p>
660
660
  * @public
661
661
  */
662
- KmsKeyArn?: string;
662
+ KmsKeyArn?: string | undefined;
663
663
  /**
664
664
  * <p>The schedule's target.</p>
665
665
  * @public
@@ -677,12 +677,12 @@ export interface CreateScheduleInput {
677
677
  * </p>
678
678
  * @public
679
679
  */
680
- ClientToken?: string;
680
+ ClientToken?: string | undefined;
681
681
  /**
682
682
  * <p>Specifies the action that EventBridge Scheduler applies to the schedule after the schedule completes invoking the target.</p>
683
683
  * @public
684
684
  */
685
- ActionAfterCompletion?: ActionAfterCompletion;
685
+ ActionAfterCompletion?: ActionAfterCompletion | undefined;
686
686
  }
687
687
  /**
688
688
  * @public
@@ -720,7 +720,7 @@ export interface DeleteScheduleInput {
720
720
  * <p>The name of the schedule group associated with this schedule. If you omit this, the default schedule group is used.</p>
721
721
  * @public
722
722
  */
723
- GroupName?: string;
723
+ GroupName?: string | undefined;
724
724
  /**
725
725
  * <p>
726
726
  * Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token,
@@ -728,7 +728,7 @@ export interface DeleteScheduleInput {
728
728
  * </p>
729
729
  * @public
730
730
  */
731
- ClientToken?: string;
731
+ ClientToken?: string | undefined;
732
732
  }
733
733
  /**
734
734
  * @public
@@ -748,7 +748,7 @@ export interface GetScheduleInput {
748
748
  * <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>
749
749
  * @public
750
750
  */
751
- GroupName?: string;
751
+ GroupName?: string | undefined;
752
752
  }
753
753
  /**
754
754
  * @public
@@ -758,17 +758,17 @@ export interface GetScheduleOutput {
758
758
  * <p>The Amazon Resource Name (ARN) of the schedule.</p>
759
759
  * @public
760
760
  */
761
- Arn?: string;
761
+ Arn?: string | undefined;
762
762
  /**
763
763
  * <p>The name of the schedule group associated with this schedule.</p>
764
764
  * @public
765
765
  */
766
- GroupName?: string;
766
+ GroupName?: string | undefined;
767
767
  /**
768
768
  * <p>The name of the schedule.</p>
769
769
  * @public
770
770
  */
771
- Name?: string;
771
+ Name?: string | undefined;
772
772
  /**
773
773
  * <p>
774
774
  * The expression that defines when the schedule runs. The following formats are supported.
@@ -808,64 +808,64 @@ export interface GetScheduleOutput {
808
808
  * </p>
809
809
  * @public
810
810
  */
811
- ScheduleExpression?: string;
811
+ ScheduleExpression?: string | undefined;
812
812
  /**
813
813
  * <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.
814
814
  * EventBridge Scheduler ignores <code>StartDate</code> for one-time schedules.</p>
815
815
  * @public
816
816
  */
817
- StartDate?: Date;
817
+ StartDate?: Date | undefined;
818
818
  /**
819
819
  * <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.
820
820
  * EventBridge Scheduler ignores <code>EndDate</code> for one-time schedules.</p>
821
821
  * @public
822
822
  */
823
- EndDate?: Date;
823
+ EndDate?: Date | undefined;
824
824
  /**
825
825
  * <p>The description of the schedule.</p>
826
826
  * @public
827
827
  */
828
- Description?: string;
828
+ Description?: string | undefined;
829
829
  /**
830
830
  * <p>The timezone in which the scheduling expression is evaluated.</p>
831
831
  * @public
832
832
  */
833
- ScheduleExpressionTimezone?: string;
833
+ ScheduleExpressionTimezone?: string | undefined;
834
834
  /**
835
835
  * <p>Specifies whether the schedule is enabled or disabled.</p>
836
836
  * @public
837
837
  */
838
- State?: ScheduleState;
838
+ State?: ScheduleState | undefined;
839
839
  /**
840
840
  * <p>The time at which the schedule was created.</p>
841
841
  * @public
842
842
  */
843
- CreationDate?: Date;
843
+ CreationDate?: Date | undefined;
844
844
  /**
845
845
  * <p>The time at which the schedule was last modified.</p>
846
846
  * @public
847
847
  */
848
- LastModificationDate?: Date;
848
+ LastModificationDate?: Date | undefined;
849
849
  /**
850
850
  * <p>The ARN for a customer managed KMS Key that is be used to encrypt and decrypt your data.</p>
851
851
  * @public
852
852
  */
853
- KmsKeyArn?: string;
853
+ KmsKeyArn?: string | undefined;
854
854
  /**
855
855
  * <p>The schedule target.</p>
856
856
  * @public
857
857
  */
858
- Target?: Target;
858
+ Target?: Target | undefined;
859
859
  /**
860
860
  * <p>Allows you to configure a time window during which EventBridge Scheduler invokes the schedule.</p>
861
861
  * @public
862
862
  */
863
- FlexibleTimeWindow?: FlexibleTimeWindow;
863
+ FlexibleTimeWindow?: FlexibleTimeWindow | undefined;
864
864
  /**
865
865
  * <p>Indicates the action that EventBridge Scheduler applies to the schedule after the schedule completes invoking the target.</p>
866
866
  * @public
867
867
  */
868
- ActionAfterCompletion?: ActionAfterCompletion;
868
+ ActionAfterCompletion?: ActionAfterCompletion | undefined;
869
869
  }
870
870
  /**
871
871
  * @public
@@ -875,27 +875,27 @@ export interface ListSchedulesInput {
875
875
  * <p>If specified, only lists the schedules whose associated schedule group matches the given filter.</p>
876
876
  * @public
877
877
  */
878
- GroupName?: string;
878
+ GroupName?: string | undefined;
879
879
  /**
880
880
  * <p>Schedule name prefix to return the filtered list of resources.</p>
881
881
  * @public
882
882
  */
883
- NamePrefix?: string;
883
+ NamePrefix?: string | undefined;
884
884
  /**
885
885
  * <p>If specified, only lists the schedules whose current state matches the given filter.</p>
886
886
  * @public
887
887
  */
888
- State?: ScheduleState;
888
+ State?: ScheduleState | undefined;
889
889
  /**
890
890
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
891
891
  * @public
892
892
  */
893
- NextToken?: string;
893
+ NextToken?: string | undefined;
894
894
  /**
895
895
  * <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>
896
896
  * @public
897
897
  */
898
- MaxResults?: number;
898
+ MaxResults?: number | undefined;
899
899
  }
900
900
  /**
901
901
  * <p>The details of a target.</p>
@@ -917,37 +917,37 @@ export interface ScheduleSummary {
917
917
  * <p>The Amazon Resource Name (ARN) of the schedule.</p>
918
918
  * @public
919
919
  */
920
- Arn?: string;
920
+ Arn?: string | undefined;
921
921
  /**
922
922
  * <p>The name of the schedule.</p>
923
923
  * @public
924
924
  */
925
- Name?: string;
925
+ Name?: string | undefined;
926
926
  /**
927
927
  * <p>The name of the schedule group associated with this schedule.</p>
928
928
  * @public
929
929
  */
930
- GroupName?: string;
930
+ GroupName?: string | undefined;
931
931
  /**
932
932
  * <p>Specifies whether the schedule is enabled or disabled.</p>
933
933
  * @public
934
934
  */
935
- State?: ScheduleState;
935
+ State?: ScheduleState | undefined;
936
936
  /**
937
937
  * <p>The time at which the schedule was created.</p>
938
938
  * @public
939
939
  */
940
- CreationDate?: Date;
940
+ CreationDate?: Date | undefined;
941
941
  /**
942
942
  * <p>The time at which the schedule was last modified.</p>
943
943
  * @public
944
944
  */
945
- LastModificationDate?: Date;
945
+ LastModificationDate?: Date | undefined;
946
946
  /**
947
947
  * <p>The schedule's target details.</p>
948
948
  * @public
949
949
  */
950
- Target?: TargetSummary;
950
+ Target?: TargetSummary | undefined;
951
951
  }
952
952
  /**
953
953
  * @public
@@ -957,7 +957,7 @@ export interface ListSchedulesOutput {
957
957
  * <p>Indicates whether there are additional results to retrieve. If the value is null, there are no more results.</p>
958
958
  * @public
959
959
  */
960
- NextToken?: string;
960
+ NextToken?: string | undefined;
961
961
  /**
962
962
  * <p>The schedules that match the specified criteria.</p>
963
963
  * @public
@@ -978,7 +978,7 @@ export interface UpdateScheduleInput {
978
978
  * If you omit this value, EventBridge Scheduler assumes the group is associated to the default group.</p>
979
979
  * @public
980
980
  */
981
- GroupName?: string;
981
+ GroupName?: string | undefined;
982
982
  /**
983
983
  * <p>
984
984
  * The expression that defines when the schedule runs. The following formats are supported.
@@ -1024,33 +1024,33 @@ export interface UpdateScheduleInput {
1024
1024
  * EventBridge Scheduler ignores <code>StartDate</code> for one-time schedules.</p>
1025
1025
  * @public
1026
1026
  */
1027
- StartDate?: Date;
1027
+ StartDate?: Date | undefined;
1028
1028
  /**
1029
1029
  * <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.
1030
1030
  * EventBridge Scheduler ignores <code>EndDate</code> for one-time schedules.</p>
1031
1031
  * @public
1032
1032
  */
1033
- EndDate?: Date;
1033
+ EndDate?: Date | undefined;
1034
1034
  /**
1035
1035
  * <p>The description you specify for the schedule.</p>
1036
1036
  * @public
1037
1037
  */
1038
- Description?: string;
1038
+ Description?: string | undefined;
1039
1039
  /**
1040
1040
  * <p>The timezone in which the scheduling expression is evaluated.</p>
1041
1041
  * @public
1042
1042
  */
1043
- ScheduleExpressionTimezone?: string;
1043
+ ScheduleExpressionTimezone?: string | undefined;
1044
1044
  /**
1045
1045
  * <p>Specifies whether the schedule is enabled or disabled.</p>
1046
1046
  * @public
1047
1047
  */
1048
- State?: ScheduleState;
1048
+ State?: ScheduleState | undefined;
1049
1049
  /**
1050
1050
  * <p>The ARN for the customer managed KMS key that that you want EventBridge Scheduler to use to encrypt and decrypt your data.</p>
1051
1051
  * @public
1052
1052
  */
1053
- KmsKeyArn?: string;
1053
+ KmsKeyArn?: string | undefined;
1054
1054
  /**
1055
1055
  * <p>The schedule target. You can use this operation to change the target that your schedule invokes.</p>
1056
1056
  * @public
@@ -1068,12 +1068,12 @@ export interface UpdateScheduleInput {
1068
1068
  * </p>
1069
1069
  * @public
1070
1070
  */
1071
- ClientToken?: string;
1071
+ ClientToken?: string | undefined;
1072
1072
  /**
1073
1073
  * <p>Specifies the action that EventBridge Scheduler applies to the schedule after the schedule completes invoking the target.</p>
1074
1074
  * @public
1075
1075
  */
1076
- ActionAfterCompletion?: ActionAfterCompletion;
1076
+ ActionAfterCompletion?: ActionAfterCompletion | undefined;
1077
1077
  }
1078
1078
  /**
1079
1079
  * @public
@@ -1098,7 +1098,7 @@ export interface CreateScheduleGroupInput {
1098
1098
  * <p>The list of tags to associate with the schedule group.</p>
1099
1099
  * @public
1100
1100
  */
1101
- Tags?: Tag[];
1101
+ Tags?: Tag[] | undefined;
1102
1102
  /**
1103
1103
  * <p>
1104
1104
  * Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token,
@@ -1106,7 +1106,7 @@ export interface CreateScheduleGroupInput {
1106
1106
  * </p>
1107
1107
  * @public
1108
1108
  */
1109
- ClientToken?: string;
1109
+ ClientToken?: string | undefined;
1110
1110
  }
1111
1111
  /**
1112
1112
  * @public
@@ -1134,7 +1134,7 @@ export interface DeleteScheduleGroupInput {
1134
1134
  * </p>
1135
1135
  * @public
1136
1136
  */
1137
- ClientToken?: string;
1137
+ ClientToken?: string | undefined;
1138
1138
  }
1139
1139
  /**
1140
1140
  * @public
@@ -1171,27 +1171,27 @@ export interface GetScheduleGroupOutput {
1171
1171
  * <p>The Amazon Resource Name (ARN) of the schedule group.</p>
1172
1172
  * @public
1173
1173
  */
1174
- Arn?: string;
1174
+ Arn?: string | undefined;
1175
1175
  /**
1176
1176
  * <p>The name of the schedule group.</p>
1177
1177
  * @public
1178
1178
  */
1179
- Name?: string;
1179
+ Name?: string | undefined;
1180
1180
  /**
1181
1181
  * <p>Specifies the state of the schedule group.</p>
1182
1182
  * @public
1183
1183
  */
1184
- State?: ScheduleGroupState;
1184
+ State?: ScheduleGroupState | undefined;
1185
1185
  /**
1186
1186
  * <p>The time at which the schedule group was created.</p>
1187
1187
  * @public
1188
1188
  */
1189
- CreationDate?: Date;
1189
+ CreationDate?: Date | undefined;
1190
1190
  /**
1191
1191
  * <p>The time at which the schedule group was last modified.</p>
1192
1192
  * @public
1193
1193
  */
1194
- LastModificationDate?: Date;
1194
+ LastModificationDate?: Date | undefined;
1195
1195
  }
1196
1196
  /**
1197
1197
  * @public
@@ -1201,17 +1201,17 @@ export interface ListScheduleGroupsInput {
1201
1201
  * <p>The name prefix that you can use to return a filtered list of your schedule groups.</p>
1202
1202
  * @public
1203
1203
  */
1204
- NamePrefix?: string;
1204
+ NamePrefix?: string | undefined;
1205
1205
  /**
1206
1206
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
1207
1207
  * @public
1208
1208
  */
1209
- NextToken?: string;
1209
+ NextToken?: string | undefined;
1210
1210
  /**
1211
1211
  * <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>
1212
1212
  * @public
1213
1213
  */
1214
- MaxResults?: number;
1214
+ MaxResults?: number | undefined;
1215
1215
  }
1216
1216
  /**
1217
1217
  * <p>The details of a schedule group.</p>
@@ -1222,27 +1222,27 @@ export interface ScheduleGroupSummary {
1222
1222
  * <p>The Amazon Resource Name (ARN) of the schedule group.</p>
1223
1223
  * @public
1224
1224
  */
1225
- Arn?: string;
1225
+ Arn?: string | undefined;
1226
1226
  /**
1227
1227
  * <p>The name of the schedule group.</p>
1228
1228
  * @public
1229
1229
  */
1230
- Name?: string;
1230
+ Name?: string | undefined;
1231
1231
  /**
1232
1232
  * <p>Specifies the state of the schedule group.</p>
1233
1233
  * @public
1234
1234
  */
1235
- State?: ScheduleGroupState;
1235
+ State?: ScheduleGroupState | undefined;
1236
1236
  /**
1237
1237
  * <p>The time at which the schedule group was created.</p>
1238
1238
  * @public
1239
1239
  */
1240
- CreationDate?: Date;
1240
+ CreationDate?: Date | undefined;
1241
1241
  /**
1242
1242
  * <p>The time at which the schedule group was last modified.</p>
1243
1243
  * @public
1244
1244
  */
1245
- LastModificationDate?: Date;
1245
+ LastModificationDate?: Date | undefined;
1246
1246
  }
1247
1247
  /**
1248
1248
  * @public
@@ -1252,7 +1252,7 @@ export interface ListScheduleGroupsOutput {
1252
1252
  * <p>Indicates whether there are additional results to retrieve. If the value is null, there are no more results.</p>
1253
1253
  * @public
1254
1254
  */
1255
- NextToken?: string;
1255
+ NextToken?: string | undefined;
1256
1256
  /**
1257
1257
  * <p>The schedule groups that match the specified criteria.</p>
1258
1258
  * @public
@@ -28,7 +28,7 @@ export interface Tag {
28
28
  Value: string | undefined;
29
29
  }
30
30
  export interface ListTagsForResourceOutput {
31
- Tags?: Tag[];
31
+ Tags?: Tag[] | undefined;
32
32
  }
33
33
  export declare class ResourceNotFoundException extends __BaseException {
34
34
  readonly name: "ResourceNotFoundException";
@@ -68,7 +68,7 @@ export type FlexibleTimeWindowMode =
68
68
  (typeof FlexibleTimeWindowMode)[keyof typeof FlexibleTimeWindowMode];
69
69
  export interface FlexibleTimeWindow {
70
70
  Mode: FlexibleTimeWindowMode | undefined;
71
- MaximumWindowInMinutes?: number;
71
+ MaximumWindowInMinutes?: number | undefined;
72
72
  }
73
73
  export declare const ScheduleState: {
74
74
  readonly DISABLED: "DISABLED";
@@ -76,12 +76,12 @@ export declare const ScheduleState: {
76
76
  };
77
77
  export type ScheduleState = (typeof ScheduleState)[keyof typeof ScheduleState];
78
78
  export interface DeadLetterConfig {
79
- Arn?: string;
79
+ Arn?: string | undefined;
80
80
  }
81
81
  export interface CapacityProviderStrategyItem {
82
82
  capacityProvider: string | undefined;
83
- weight?: number;
84
- base?: number;
83
+ weight?: number | undefined;
84
+ base?: number | undefined;
85
85
  }
86
86
  export declare const LaunchType: {
87
87
  readonly EC2: "EC2";
@@ -91,11 +91,11 @@ export declare const LaunchType: {
91
91
  export type LaunchType = (typeof LaunchType)[keyof typeof LaunchType];
92
92
  export interface AwsVpcConfiguration {
93
93
  Subnets: string[] | undefined;
94
- SecurityGroups?: string[];
95
- AssignPublicIp?: AssignPublicIp;
94
+ SecurityGroups?: string[] | undefined;
95
+ AssignPublicIp?: AssignPublicIp | undefined;
96
96
  }
97
97
  export interface NetworkConfiguration {
98
- awsvpcConfiguration?: AwsVpcConfiguration;
98
+ awsvpcConfiguration?: AwsVpcConfiguration | undefined;
99
99
  }
100
100
  export declare const PlacementConstraintType: {
101
101
  readonly DISTINCT_INSTANCE: "distinctInstance";
@@ -104,8 +104,8 @@ export declare const PlacementConstraintType: {
104
104
  export type PlacementConstraintType =
105
105
  (typeof PlacementConstraintType)[keyof typeof PlacementConstraintType];
106
106
  export interface PlacementConstraint {
107
- type?: PlacementConstraintType;
108
- expression?: string;
107
+ type?: PlacementConstraintType | undefined;
108
+ expression?: string | undefined;
109
109
  }
110
110
  export declare const PlacementStrategyType: {
111
111
  readonly BINPACK: "binpack";
@@ -115,8 +115,8 @@ export declare const PlacementStrategyType: {
115
115
  export type PlacementStrategyType =
116
116
  (typeof PlacementStrategyType)[keyof typeof PlacementStrategyType];
117
117
  export interface PlacementStrategy {
118
- type?: PlacementStrategyType;
119
- field?: string;
118
+ type?: PlacementStrategyType | undefined;
119
+ field?: string | undefined;
120
120
  }
121
121
  export declare const PropagateTags: {
122
122
  readonly TASK_DEFINITION: "TASK_DEFINITION";
@@ -124,19 +124,19 @@ export declare const PropagateTags: {
124
124
  export type PropagateTags = (typeof PropagateTags)[keyof typeof PropagateTags];
125
125
  export interface EcsParameters {
126
126
  TaskDefinitionArn: string | undefined;
127
- TaskCount?: number;
128
- LaunchType?: LaunchType;
129
- NetworkConfiguration?: NetworkConfiguration;
130
- PlatformVersion?: string;
131
- Group?: string;
132
- CapacityProviderStrategy?: CapacityProviderStrategyItem[];
133
- EnableECSManagedTags?: boolean;
134
- EnableExecuteCommand?: boolean;
135
- PlacementConstraints?: PlacementConstraint[];
136
- PlacementStrategy?: PlacementStrategy[];
137
- PropagateTags?: PropagateTags;
138
- ReferenceId?: string;
139
- Tags?: Record<string, string>[];
127
+ TaskCount?: number | undefined;
128
+ LaunchType?: LaunchType | undefined;
129
+ NetworkConfiguration?: NetworkConfiguration | undefined;
130
+ PlatformVersion?: string | undefined;
131
+ Group?: string | undefined;
132
+ CapacityProviderStrategy?: CapacityProviderStrategyItem[] | undefined;
133
+ EnableECSManagedTags?: boolean | undefined;
134
+ EnableExecuteCommand?: boolean | undefined;
135
+ PlacementConstraints?: PlacementConstraint[] | undefined;
136
+ PlacementStrategy?: PlacementStrategy[] | undefined;
137
+ PropagateTags?: PropagateTags | undefined;
138
+ ReferenceId?: string | undefined;
139
+ Tags?: Record<string, string>[] | undefined;
140
140
  }
141
141
  export interface EventBridgeParameters {
142
142
  DetailType: string | undefined;
@@ -146,45 +146,45 @@ export interface KinesisParameters {
146
146
  PartitionKey: string | undefined;
147
147
  }
148
148
  export interface RetryPolicy {
149
- MaximumEventAgeInSeconds?: number;
150
- MaximumRetryAttempts?: number;
149
+ MaximumEventAgeInSeconds?: number | undefined;
150
+ MaximumRetryAttempts?: number | undefined;
151
151
  }
152
152
  export interface SageMakerPipelineParameter {
153
153
  Name: string | undefined;
154
154
  Value: string | undefined;
155
155
  }
156
156
  export interface SageMakerPipelineParameters {
157
- PipelineParameterList?: SageMakerPipelineParameter[];
157
+ PipelineParameterList?: SageMakerPipelineParameter[] | undefined;
158
158
  }
159
159
  export interface SqsParameters {
160
- MessageGroupId?: string;
160
+ MessageGroupId?: string | undefined;
161
161
  }
162
162
  export interface Target {
163
163
  Arn: string | undefined;
164
164
  RoleArn: string | undefined;
165
- DeadLetterConfig?: DeadLetterConfig;
166
- RetryPolicy?: RetryPolicy;
167
- Input?: string;
168
- EcsParameters?: EcsParameters;
169
- EventBridgeParameters?: EventBridgeParameters;
170
- KinesisParameters?: KinesisParameters;
171
- SageMakerPipelineParameters?: SageMakerPipelineParameters;
172
- SqsParameters?: SqsParameters;
165
+ DeadLetterConfig?: DeadLetterConfig | undefined;
166
+ RetryPolicy?: RetryPolicy | undefined;
167
+ Input?: string | undefined;
168
+ EcsParameters?: EcsParameters | undefined;
169
+ EventBridgeParameters?: EventBridgeParameters | undefined;
170
+ KinesisParameters?: KinesisParameters | undefined;
171
+ SageMakerPipelineParameters?: SageMakerPipelineParameters | undefined;
172
+ SqsParameters?: SqsParameters | undefined;
173
173
  }
174
174
  export interface CreateScheduleInput {
175
175
  Name: string | undefined;
176
- GroupName?: string;
176
+ GroupName?: string | undefined;
177
177
  ScheduleExpression: string | undefined;
178
- StartDate?: Date;
179
- EndDate?: Date;
180
- Description?: string;
181
- ScheduleExpressionTimezone?: string;
182
- State?: ScheduleState;
183
- KmsKeyArn?: string;
178
+ StartDate?: Date | undefined;
179
+ EndDate?: Date | undefined;
180
+ Description?: string | undefined;
181
+ ScheduleExpressionTimezone?: string | undefined;
182
+ State?: ScheduleState | undefined;
183
+ KmsKeyArn?: string | undefined;
184
184
  Target: Target | undefined;
185
185
  FlexibleTimeWindow: FlexibleTimeWindow | undefined;
186
- ClientToken?: string;
187
- ActionAfterCompletion?: ActionAfterCompletion;
186
+ ClientToken?: string | undefined;
187
+ ActionAfterCompletion?: ActionAfterCompletion | undefined;
188
188
  }
189
189
  export interface CreateScheduleOutput {
190
190
  ScheduleArn: string | undefined;
@@ -199,83 +199,83 @@ export declare class ServiceQuotaExceededException extends __BaseException {
199
199
  }
200
200
  export interface DeleteScheduleInput {
201
201
  Name: string | undefined;
202
- GroupName?: string;
203
- ClientToken?: string;
202
+ GroupName?: string | undefined;
203
+ ClientToken?: string | undefined;
204
204
  }
205
205
  export interface DeleteScheduleOutput {}
206
206
  export interface GetScheduleInput {
207
207
  Name: string | undefined;
208
- GroupName?: string;
208
+ GroupName?: string | undefined;
209
209
  }
210
210
  export interface GetScheduleOutput {
211
- Arn?: string;
212
- GroupName?: string;
213
- Name?: string;
214
- ScheduleExpression?: string;
215
- StartDate?: Date;
216
- EndDate?: Date;
217
- Description?: string;
218
- ScheduleExpressionTimezone?: string;
219
- State?: ScheduleState;
220
- CreationDate?: Date;
221
- LastModificationDate?: Date;
222
- KmsKeyArn?: string;
223
- Target?: Target;
224
- FlexibleTimeWindow?: FlexibleTimeWindow;
225
- ActionAfterCompletion?: ActionAfterCompletion;
211
+ Arn?: string | undefined;
212
+ GroupName?: string | undefined;
213
+ Name?: string | undefined;
214
+ ScheduleExpression?: string | undefined;
215
+ StartDate?: Date | undefined;
216
+ EndDate?: Date | undefined;
217
+ Description?: string | undefined;
218
+ ScheduleExpressionTimezone?: string | undefined;
219
+ State?: ScheduleState | undefined;
220
+ CreationDate?: Date | undefined;
221
+ LastModificationDate?: Date | undefined;
222
+ KmsKeyArn?: string | undefined;
223
+ Target?: Target | undefined;
224
+ FlexibleTimeWindow?: FlexibleTimeWindow | undefined;
225
+ ActionAfterCompletion?: ActionAfterCompletion | undefined;
226
226
  }
227
227
  export interface ListSchedulesInput {
228
- GroupName?: string;
229
- NamePrefix?: string;
230
- State?: ScheduleState;
231
- NextToken?: string;
232
- MaxResults?: number;
228
+ GroupName?: string | undefined;
229
+ NamePrefix?: string | undefined;
230
+ State?: ScheduleState | undefined;
231
+ NextToken?: string | undefined;
232
+ MaxResults?: number | undefined;
233
233
  }
234
234
  export interface TargetSummary {
235
235
  Arn: string | undefined;
236
236
  }
237
237
  export interface ScheduleSummary {
238
- Arn?: string;
239
- Name?: string;
240
- GroupName?: string;
241
- State?: ScheduleState;
242
- CreationDate?: Date;
243
- LastModificationDate?: Date;
244
- Target?: TargetSummary;
238
+ Arn?: string | undefined;
239
+ Name?: string | undefined;
240
+ GroupName?: string | undefined;
241
+ State?: ScheduleState | undefined;
242
+ CreationDate?: Date | undefined;
243
+ LastModificationDate?: Date | undefined;
244
+ Target?: TargetSummary | undefined;
245
245
  }
246
246
  export interface ListSchedulesOutput {
247
- NextToken?: string;
247
+ NextToken?: string | undefined;
248
248
  Schedules: ScheduleSummary[] | undefined;
249
249
  }
250
250
  export interface UpdateScheduleInput {
251
251
  Name: string | undefined;
252
- GroupName?: string;
252
+ GroupName?: string | undefined;
253
253
  ScheduleExpression: string | undefined;
254
- StartDate?: Date;
255
- EndDate?: Date;
256
- Description?: string;
257
- ScheduleExpressionTimezone?: string;
258
- State?: ScheduleState;
259
- KmsKeyArn?: string;
254
+ StartDate?: Date | undefined;
255
+ EndDate?: Date | undefined;
256
+ Description?: string | undefined;
257
+ ScheduleExpressionTimezone?: string | undefined;
258
+ State?: ScheduleState | undefined;
259
+ KmsKeyArn?: string | undefined;
260
260
  Target: Target | undefined;
261
261
  FlexibleTimeWindow: FlexibleTimeWindow | undefined;
262
- ClientToken?: string;
263
- ActionAfterCompletion?: ActionAfterCompletion;
262
+ ClientToken?: string | undefined;
263
+ ActionAfterCompletion?: ActionAfterCompletion | undefined;
264
264
  }
265
265
  export interface UpdateScheduleOutput {
266
266
  ScheduleArn: string | undefined;
267
267
  }
268
268
  export interface CreateScheduleGroupInput {
269
269
  Name: string | undefined;
270
- Tags?: Tag[];
271
- ClientToken?: string;
270
+ Tags?: Tag[] | undefined;
271
+ ClientToken?: string | undefined;
272
272
  }
273
273
  export interface CreateScheduleGroupOutput {
274
274
  ScheduleGroupArn: string | undefined;
275
275
  }
276
276
  export interface DeleteScheduleGroupInput {
277
277
  Name: string | undefined;
278
- ClientToken?: string;
278
+ ClientToken?: string | undefined;
279
279
  }
280
280
  export interface DeleteScheduleGroupOutput {}
281
281
  export interface GetScheduleGroupInput {
@@ -288,26 +288,26 @@ export declare const ScheduleGroupState: {
288
288
  export type ScheduleGroupState =
289
289
  (typeof ScheduleGroupState)[keyof typeof ScheduleGroupState];
290
290
  export interface GetScheduleGroupOutput {
291
- Arn?: string;
292
- Name?: string;
293
- State?: ScheduleGroupState;
294
- CreationDate?: Date;
295
- LastModificationDate?: Date;
291
+ Arn?: string | undefined;
292
+ Name?: string | undefined;
293
+ State?: ScheduleGroupState | undefined;
294
+ CreationDate?: Date | undefined;
295
+ LastModificationDate?: Date | undefined;
296
296
  }
297
297
  export interface ListScheduleGroupsInput {
298
- NamePrefix?: string;
299
- NextToken?: string;
300
- MaxResults?: number;
298
+ NamePrefix?: string | undefined;
299
+ NextToken?: string | undefined;
300
+ MaxResults?: number | undefined;
301
301
  }
302
302
  export interface ScheduleGroupSummary {
303
- Arn?: string;
304
- Name?: string;
305
- State?: ScheduleGroupState;
306
- CreationDate?: Date;
307
- LastModificationDate?: Date;
303
+ Arn?: string | undefined;
304
+ Name?: string | undefined;
305
+ State?: ScheduleGroupState | undefined;
306
+ CreationDate?: Date | undefined;
307
+ LastModificationDate?: Date | undefined;
308
308
  }
309
309
  export interface ListScheduleGroupsOutput {
310
- NextToken?: string;
310
+ NextToken?: string | undefined;
311
311
  ScheduleGroups: ScheduleGroupSummary[] | undefined;
312
312
  }
313
313
  export interface TagResourceInput {
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.686.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-scheduler",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.686.0",
24
- "@aws-sdk/client-sts": "3.686.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.686.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.686.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.686.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",