@aws-sdk/client-scheduler 3.296.0 → 3.298.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 (47) hide show
  1. package/dist-cjs/commands/CreateScheduleCommand.js +2 -3
  2. package/dist-cjs/commands/CreateScheduleGroupCommand.js +2 -3
  3. package/dist-cjs/commands/DeleteScheduleCommand.js +2 -3
  4. package/dist-cjs/commands/DeleteScheduleGroupCommand.js +2 -3
  5. package/dist-cjs/commands/GetScheduleCommand.js +2 -3
  6. package/dist-cjs/commands/GetScheduleGroupCommand.js +2 -3
  7. package/dist-cjs/commands/ListScheduleGroupsCommand.js +2 -3
  8. package/dist-cjs/commands/ListSchedulesCommand.js +2 -3
  9. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
  10. package/dist-cjs/commands/TagResourceCommand.js +2 -3
  11. package/dist-cjs/commands/UntagResourceCommand.js +2 -3
  12. package/dist-cjs/commands/UpdateScheduleCommand.js +2 -3
  13. package/dist-cjs/models/models_0.js +1 -174
  14. package/dist-es/commands/CreateScheduleCommand.js +2 -3
  15. package/dist-es/commands/CreateScheduleGroupCommand.js +2 -3
  16. package/dist-es/commands/DeleteScheduleCommand.js +2 -3
  17. package/dist-es/commands/DeleteScheduleGroupCommand.js +2 -3
  18. package/dist-es/commands/GetScheduleCommand.js +2 -3
  19. package/dist-es/commands/GetScheduleGroupCommand.js +2 -3
  20. package/dist-es/commands/ListScheduleGroupsCommand.js +2 -3
  21. package/dist-es/commands/ListSchedulesCommand.js +2 -3
  22. package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
  23. package/dist-es/commands/TagResourceCommand.js +2 -3
  24. package/dist-es/commands/UntagResourceCommand.js +2 -3
  25. package/dist-es/commands/UpdateScheduleCommand.js +2 -3
  26. package/dist-es/models/models_0.js +0 -129
  27. package/dist-types/Scheduler.d.ts +13 -0
  28. package/dist-types/SchedulerClient.d.ts +24 -4
  29. package/dist-types/commands/CreateScheduleCommand.d.ts +16 -0
  30. package/dist-types/commands/CreateScheduleGroupCommand.d.ts +16 -0
  31. package/dist-types/commands/DeleteScheduleCommand.d.ts +16 -0
  32. package/dist-types/commands/DeleteScheduleGroupCommand.d.ts +16 -0
  33. package/dist-types/commands/GetScheduleCommand.d.ts +16 -0
  34. package/dist-types/commands/GetScheduleGroupCommand.d.ts +16 -0
  35. package/dist-types/commands/ListScheduleGroupsCommand.d.ts +16 -0
  36. package/dist-types/commands/ListSchedulesCommand.d.ts +16 -0
  37. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  38. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  39. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  40. package/dist-types/commands/UpdateScheduleCommand.d.ts +16 -0
  41. package/dist-types/models/SchedulerServiceException.d.ts +2 -0
  42. package/dist-types/models/models_0.d.ts +121 -172
  43. package/dist-types/pagination/Interfaces.d.ts +3 -0
  44. package/dist-types/pagination/ListScheduleGroupsPaginator.d.ts +3 -0
  45. package/dist-types/pagination/ListSchedulesPaginator.d.ts +3 -0
  46. package/dist-types/ts3.4/models/models_0.d.ts +0 -123
  47. package/package.json +4 -3
@@ -1,10 +1,14 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { SchedulerServiceException as __BaseException } from "./SchedulerServiceException";
3
+ /**
4
+ * @public
5
+ */
3
6
  export declare enum AssignPublicIp {
4
7
  DISABLED = "DISABLED",
5
8
  ENABLED = "ENABLED"
6
9
  }
7
10
  /**
11
+ * @public
8
12
  * <p>Unexpected error encountered while processing the request.</p>
9
13
  */
10
14
  export declare class InternalServerException extends __BaseException {
@@ -16,6 +20,9 @@ export declare class InternalServerException extends __BaseException {
16
20
  */
17
21
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
18
22
  }
23
+ /**
24
+ * @public
25
+ */
19
26
  export interface ListTagsForResourceInput {
20
27
  /**
21
28
  * <p>The ARN of the EventBridge Scheduler resource for which you want to view tags.</p>
@@ -23,6 +30,7 @@ export interface ListTagsForResourceInput {
23
30
  ResourceArn: string | undefined;
24
31
  }
25
32
  /**
33
+ * @public
26
34
  * <p>Tag to associate with a schedule group.</p>
27
35
  */
28
36
  export interface Tag {
@@ -35,6 +43,9 @@ export interface Tag {
35
43
  */
36
44
  Value: string | undefined;
37
45
  }
46
+ /**
47
+ * @public
48
+ */
38
49
  export interface ListTagsForResourceOutput {
39
50
  /**
40
51
  * <p>The list of tags associated with the specified resource.</p>
@@ -42,6 +53,7 @@ export interface ListTagsForResourceOutput {
42
53
  Tags?: Tag[];
43
54
  }
44
55
  /**
56
+ * @public
45
57
  * <p>The request references a resource which does not exist.</p>
46
58
  */
47
59
  export declare class ResourceNotFoundException extends __BaseException {
@@ -54,6 +66,7 @@ export declare class ResourceNotFoundException extends __BaseException {
54
66
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
55
67
  }
56
68
  /**
69
+ * @public
57
70
  * <p>The request was denied due to request throttling.</p>
58
71
  */
59
72
  export declare class ThrottlingException extends __BaseException {
@@ -66,6 +79,7 @@ export declare class ThrottlingException extends __BaseException {
66
79
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
67
80
  }
68
81
  /**
82
+ * @public
69
83
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
70
84
  */
71
85
  export declare class ValidationException extends __BaseException {
@@ -78,6 +92,7 @@ export declare class ValidationException extends __BaseException {
78
92
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
79
93
  }
80
94
  /**
95
+ * @public
81
96
  * <p>Updating or deleting the resource can cause an inconsistent state.</p>
82
97
  */
83
98
  export declare class ConflictException extends __BaseException {
@@ -89,11 +104,15 @@ export declare class ConflictException extends __BaseException {
89
104
  */
90
105
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
91
106
  }
107
+ /**
108
+ * @public
109
+ */
92
110
  export declare enum FlexibleTimeWindowMode {
93
111
  FLEXIBLE = "FLEXIBLE",
94
112
  OFF = "OFF"
95
113
  }
96
114
  /**
115
+ * @public
97
116
  * <p>Allows you to configure a time window during which EventBridge Scheduler invokes the schedule.</p>
98
117
  */
99
118
  export interface FlexibleTimeWindow {
@@ -106,11 +125,15 @@ export interface FlexibleTimeWindow {
106
125
  */
107
126
  MaximumWindowInMinutes?: number;
108
127
  }
128
+ /**
129
+ * @public
130
+ */
109
131
  export declare enum ScheduleState {
110
132
  DISABLED = "DISABLED",
111
133
  ENABLED = "ENABLED"
112
134
  }
113
135
  /**
136
+ * @public
114
137
  * <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>
115
138
  */
116
139
  export interface DeadLetterConfig {
@@ -120,6 +143,7 @@ export interface DeadLetterConfig {
120
143
  Arn?: string;
121
144
  }
122
145
  /**
146
+ * @public
123
147
  * <p>The details of a capacity provider strategy.</p>
124
148
  */
125
149
  export interface CapacityProviderStrategyItem {
@@ -138,12 +162,16 @@ export interface CapacityProviderStrategyItem {
138
162
  */
139
163
  base?: number;
140
164
  }
165
+ /**
166
+ * @public
167
+ */
141
168
  export declare enum LaunchType {
142
169
  EC2 = "EC2",
143
170
  EXTERNAL = "EXTERNAL",
144
171
  FARGATE = "FARGATE"
145
172
  }
146
173
  /**
174
+ * @public
147
175
  * <p>This structure specifies the 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>
148
176
  */
149
177
  export interface AwsVpcConfiguration {
@@ -162,6 +190,7 @@ export interface AwsVpcConfiguration {
162
190
  AssignPublicIp?: AssignPublicIp | string;
163
191
  }
164
192
  /**
193
+ * @public
165
194
  * <p>Specifies the network configuration for an ECS task.</p>
166
195
  */
167
196
  export interface NetworkConfiguration {
@@ -170,11 +199,15 @@ export interface NetworkConfiguration {
170
199
  */
171
200
  awsvpcConfiguration?: AwsVpcConfiguration;
172
201
  }
202
+ /**
203
+ * @public
204
+ */
173
205
  export declare enum PlacementConstraintType {
174
206
  DISTINCT_INSTANCE = "distinctInstance",
175
207
  MEMBER_OF = "memberOf"
176
208
  }
177
209
  /**
210
+ * @public
178
211
  * <p>An object representing a constraint on task placement.</p>
179
212
  */
180
213
  export interface PlacementConstraint {
@@ -188,12 +221,16 @@ export interface PlacementConstraint {
188
221
  */
189
222
  expression?: string;
190
223
  }
224
+ /**
225
+ * @public
226
+ */
191
227
  export declare enum PlacementStrategyType {
192
228
  BINPACK = "binpack",
193
229
  RANDOM = "random",
194
230
  SPREAD = "spread"
195
231
  }
196
232
  /**
233
+ * @public
197
234
  * <p>The task placement strategy for a task or service.</p>
198
235
  */
199
236
  export interface PlacementStrategy {
@@ -210,10 +247,14 @@ export interface PlacementStrategy {
210
247
  */
211
248
  field?: string;
212
249
  }
250
+ /**
251
+ * @public
252
+ */
213
253
  export declare enum PropagateTags {
214
254
  TASK_DEFINITION = "TASK_DEFINITION"
215
255
  }
216
256
  /**
257
+ * @public
217
258
  * <p>The templated target type for the Amazon ECS <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_RunTask.html">
218
259
  * <code>RunTask</code>
219
260
  * </a> API operation.</p>
@@ -288,6 +329,7 @@ export interface EcsParameters {
288
329
  Tags?: Record<string, string>[];
289
330
  }
290
331
  /**
332
+ * @public
291
333
  * <p>The templated target type for the EventBridge <a href="https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_PutEvents.html">
292
334
  * <code>PutEvents</code>
293
335
  * </a> API operation.</p>
@@ -303,6 +345,7 @@ export interface EventBridgeParameters {
303
345
  Source: string | undefined;
304
346
  }
305
347
  /**
348
+ * @public
306
349
  * <p>The templated target type for the Amazon Kinesis <a href="kinesis/latest/APIReference/API_PutRecord.html">
307
350
  * <code>PutRecord</code>
308
351
  * </a> API operation.</p>
@@ -315,6 +358,7 @@ export interface KinesisParameters {
315
358
  PartitionKey: string | undefined;
316
359
  }
317
360
  /**
361
+ * @public
318
362
  * <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>
319
363
  */
320
364
  export interface RetryPolicy {
@@ -329,6 +373,7 @@ export interface RetryPolicy {
329
373
  MaximumRetryAttempts?: number;
330
374
  }
331
375
  /**
376
+ * @public
332
377
  * <p>The name and value pair of a parameter to use to start execution of a SageMaker Model Building Pipeline.</p>
333
378
  */
334
379
  export interface SageMakerPipelineParameter {
@@ -342,6 +387,7 @@ export interface SageMakerPipelineParameter {
342
387
  Value: string | undefined;
343
388
  }
344
389
  /**
390
+ * @public
345
391
  * <p>The templated target type for the Amazon SageMaker <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_StartPipelineExecution.html">
346
392
  * <code>StartPipelineExecution</code>
347
393
  * </a> API operation.</p>
@@ -353,6 +399,7 @@ export interface SageMakerPipelineParameters {
353
399
  PipelineParameterList?: SageMakerPipelineParameter[];
354
400
  }
355
401
  /**
402
+ * @public
356
403
  * <p>The templated target type for the Amazon SQS <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_SendMessage.html">
357
404
  * <code>SendMessage</code>
358
405
  * </a> API operation.
@@ -368,6 +415,7 @@ export interface SqsParameters {
368
415
  MessageGroupId?: string;
369
416
  }
370
417
  /**
418
+ * @public
371
419
  * <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
372
420
  * invoke over 6,000 API operations across more than 270 services. You can only specify one templated or universal target for a schedule.</p>
373
421
  */
@@ -428,6 +476,9 @@ export interface Target {
428
476
  */
429
477
  SqsParameters?: SqsParameters;
430
478
  }
479
+ /**
480
+ * @public
481
+ */
431
482
  export interface CreateScheduleInput {
432
483
  /**
433
484
  * <p>The name of the schedule that you are creating.</p>
@@ -518,6 +569,9 @@ export interface CreateScheduleInput {
518
569
  */
519
570
  ClientToken?: string;
520
571
  }
572
+ /**
573
+ * @public
574
+ */
521
575
  export interface CreateScheduleOutput {
522
576
  /**
523
577
  * <p>The Amazon Resource Name (ARN) of the schedule.</p>
@@ -525,6 +579,7 @@ export interface CreateScheduleOutput {
525
579
  ScheduleArn: string | undefined;
526
580
  }
527
581
  /**
582
+ * @public
528
583
  * <p>The request exceeds a service quota.</p>
529
584
  */
530
585
  export declare class ServiceQuotaExceededException extends __BaseException {
@@ -536,6 +591,9 @@ export declare class ServiceQuotaExceededException extends __BaseException {
536
591
  */
537
592
  constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
538
593
  }
594
+ /**
595
+ * @public
596
+ */
539
597
  export interface DeleteScheduleInput {
540
598
  /**
541
599
  * <p>The name of the schedule to delete.</p>
@@ -553,8 +611,14 @@ export interface DeleteScheduleInput {
553
611
  */
554
612
  ClientToken?: string;
555
613
  }
614
+ /**
615
+ * @public
616
+ */
556
617
  export interface DeleteScheduleOutput {
557
618
  }
619
+ /**
620
+ * @public
621
+ */
558
622
  export interface GetScheduleInput {
559
623
  /**
560
624
  * <p>The name of the schedule to retrieve.</p>
@@ -565,6 +629,9 @@ export interface GetScheduleInput {
565
629
  */
566
630
  GroupName?: string;
567
631
  }
632
+ /**
633
+ * @public
634
+ */
568
635
  export interface GetScheduleOutput {
569
636
  /**
570
637
  * <p>The Amazon Resource Name (ARN) of the schedule.</p>
@@ -660,6 +727,9 @@ export interface GetScheduleOutput {
660
727
  */
661
728
  FlexibleTimeWindow?: FlexibleTimeWindow;
662
729
  }
730
+ /**
731
+ * @public
732
+ */
663
733
  export interface ListSchedulesInput {
664
734
  /**
665
735
  * <p>If specified, only lists the schedules whose associated schedule group matches the given filter.</p>
@@ -683,6 +753,7 @@ export interface ListSchedulesInput {
683
753
  MaxResults?: number;
684
754
  }
685
755
  /**
756
+ * @public
686
757
  * <p>The details of a target.</p>
687
758
  */
688
759
  export interface TargetSummary {
@@ -692,6 +763,7 @@ export interface TargetSummary {
692
763
  Arn: string | undefined;
693
764
  }
694
765
  /**
766
+ * @public
695
767
  * <p>The details of a schedule.</p>
696
768
  */
697
769
  export interface ScheduleSummary {
@@ -724,6 +796,9 @@ export interface ScheduleSummary {
724
796
  */
725
797
  Target?: TargetSummary;
726
798
  }
799
+ /**
800
+ * @public
801
+ */
727
802
  export interface ListSchedulesOutput {
728
803
  /**
729
804
  * <p>Indicates whether there are additional results to retrieve. If the value is null, there are no more results.</p>
@@ -734,6 +809,9 @@ export interface ListSchedulesOutput {
734
809
  */
735
810
  Schedules: ScheduleSummary[] | undefined;
736
811
  }
812
+ /**
813
+ * @public
814
+ */
737
815
  export interface UpdateScheduleInput {
738
816
  /**
739
817
  * <p>The name of the schedule that you are updating.</p>
@@ -825,12 +903,18 @@ export interface UpdateScheduleInput {
825
903
  */
826
904
  ClientToken?: string;
827
905
  }
906
+ /**
907
+ * @public
908
+ */
828
909
  export interface UpdateScheduleOutput {
829
910
  /**
830
911
  * <p>The Amazon Resource Name (ARN) of the schedule that you updated.</p>
831
912
  */
832
913
  ScheduleArn: string | undefined;
833
914
  }
915
+ /**
916
+ * @public
917
+ */
834
918
  export interface CreateScheduleGroupInput {
835
919
  /**
836
920
  * <p>The name of the schedule group that you are creating.</p>
@@ -848,12 +932,18 @@ export interface CreateScheduleGroupInput {
848
932
  */
849
933
  ClientToken?: string;
850
934
  }
935
+ /**
936
+ * @public
937
+ */
851
938
  export interface CreateScheduleGroupOutput {
852
939
  /**
853
940
  * <p>The Amazon Resource Name (ARN) of the schedule group.</p>
854
941
  */
855
942
  ScheduleGroupArn: string | undefined;
856
943
  }
944
+ /**
945
+ * @public
946
+ */
857
947
  export interface DeleteScheduleGroupInput {
858
948
  /**
859
949
  * <p>The name of the schedule group to delete.</p>
@@ -867,18 +957,30 @@ export interface DeleteScheduleGroupInput {
867
957
  */
868
958
  ClientToken?: string;
869
959
  }
960
+ /**
961
+ * @public
962
+ */
870
963
  export interface DeleteScheduleGroupOutput {
871
964
  }
965
+ /**
966
+ * @public
967
+ */
872
968
  export interface GetScheduleGroupInput {
873
969
  /**
874
970
  * <p>The name of the schedule group to retrieve.</p>
875
971
  */
876
972
  Name: string | undefined;
877
973
  }
974
+ /**
975
+ * @public
976
+ */
878
977
  export declare enum ScheduleGroupState {
879
978
  ACTIVE = "ACTIVE",
880
979
  DELETING = "DELETING"
881
980
  }
981
+ /**
982
+ * @public
983
+ */
882
984
  export interface GetScheduleGroupOutput {
883
985
  /**
884
986
  * <p>The Amazon Resource Name (ARN) of the schedule group.</p>
@@ -901,6 +1003,9 @@ export interface GetScheduleGroupOutput {
901
1003
  */
902
1004
  LastModificationDate?: Date;
903
1005
  }
1006
+ /**
1007
+ * @public
1008
+ */
904
1009
  export interface ListScheduleGroupsInput {
905
1010
  /**
906
1011
  * <p>The name prefix that you can use to return a filtered list of your schedule groups.</p>
@@ -916,6 +1021,7 @@ export interface ListScheduleGroupsInput {
916
1021
  MaxResults?: number;
917
1022
  }
918
1023
  /**
1024
+ * @public
919
1025
  * <p>The details of a schedule group.</p>
920
1026
  */
921
1027
  export interface ScheduleGroupSummary {
@@ -940,6 +1046,9 @@ export interface ScheduleGroupSummary {
940
1046
  */
941
1047
  LastModificationDate?: Date;
942
1048
  }
1049
+ /**
1050
+ * @public
1051
+ */
943
1052
  export interface ListScheduleGroupsOutput {
944
1053
  /**
945
1054
  * <p>Indicates whether there are additional results to retrieve. If the value is null, there are no more results.</p>
@@ -950,6 +1059,9 @@ export interface ListScheduleGroupsOutput {
950
1059
  */
951
1060
  ScheduleGroups: ScheduleGroupSummary[] | undefined;
952
1061
  }
1062
+ /**
1063
+ * @public
1064
+ */
953
1065
  export interface TagResourceInput {
954
1066
  /**
955
1067
  * <p>The Amazon Resource Name (ARN) of the schedule group that you are adding tags to.</p>
@@ -960,8 +1072,14 @@ export interface TagResourceInput {
960
1072
  */
961
1073
  Tags: Tag[] | undefined;
962
1074
  }
1075
+ /**
1076
+ * @public
1077
+ */
963
1078
  export interface TagResourceOutput {
964
1079
  }
1080
+ /**
1081
+ * @public
1082
+ */
965
1083
  export interface UntagResourceInput {
966
1084
  /**
967
1085
  * <p>The Amazon Resource Name (ARN) of the schedule group from which you are removing tags.</p>
@@ -972,177 +1090,8 @@ export interface UntagResourceInput {
972
1090
  */
973
1091
  TagKeys: string[] | undefined;
974
1092
  }
975
- export interface UntagResourceOutput {
976
- }
977
- /**
978
- * @internal
979
- */
980
- export declare const ListTagsForResourceInputFilterSensitiveLog: (obj: ListTagsForResourceInput) => any;
981
- /**
982
- * @internal
983
- */
984
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
985
- /**
986
- * @internal
987
- */
988
- export declare const ListTagsForResourceOutputFilterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
989
- /**
990
- * @internal
991
- */
992
- export declare const FlexibleTimeWindowFilterSensitiveLog: (obj: FlexibleTimeWindow) => any;
993
- /**
994
- * @internal
995
- */
996
- export declare const DeadLetterConfigFilterSensitiveLog: (obj: DeadLetterConfig) => any;
997
- /**
998
- * @internal
999
- */
1000
- export declare const CapacityProviderStrategyItemFilterSensitiveLog: (obj: CapacityProviderStrategyItem) => any;
1001
- /**
1002
- * @internal
1003
- */
1004
- export declare const AwsVpcConfigurationFilterSensitiveLog: (obj: AwsVpcConfiguration) => any;
1005
- /**
1006
- * @internal
1007
- */
1008
- export declare const NetworkConfigurationFilterSensitiveLog: (obj: NetworkConfiguration) => any;
1009
- /**
1010
- * @internal
1011
- */
1012
- export declare const PlacementConstraintFilterSensitiveLog: (obj: PlacementConstraint) => any;
1013
- /**
1014
- * @internal
1015
- */
1016
- export declare const PlacementStrategyFilterSensitiveLog: (obj: PlacementStrategy) => any;
1017
- /**
1018
- * @internal
1019
- */
1020
- export declare const EcsParametersFilterSensitiveLog: (obj: EcsParameters) => any;
1021
- /**
1022
- * @internal
1023
- */
1024
- export declare const EventBridgeParametersFilterSensitiveLog: (obj: EventBridgeParameters) => any;
1025
- /**
1026
- * @internal
1027
- */
1028
- export declare const KinesisParametersFilterSensitiveLog: (obj: KinesisParameters) => any;
1029
- /**
1030
- * @internal
1031
- */
1032
- export declare const RetryPolicyFilterSensitiveLog: (obj: RetryPolicy) => any;
1033
- /**
1034
- * @internal
1035
- */
1036
- export declare const SageMakerPipelineParameterFilterSensitiveLog: (obj: SageMakerPipelineParameter) => any;
1037
1093
  /**
1038
- * @internal
1094
+ * @public
1039
1095
  */
1040
- export declare const SageMakerPipelineParametersFilterSensitiveLog: (obj: SageMakerPipelineParameters) => any;
1041
- /**
1042
- * @internal
1043
- */
1044
- export declare const SqsParametersFilterSensitiveLog: (obj: SqsParameters) => any;
1045
- /**
1046
- * @internal
1047
- */
1048
- export declare const TargetFilterSensitiveLog: (obj: Target) => any;
1049
- /**
1050
- * @internal
1051
- */
1052
- export declare const CreateScheduleInputFilterSensitiveLog: (obj: CreateScheduleInput) => any;
1053
- /**
1054
- * @internal
1055
- */
1056
- export declare const CreateScheduleOutputFilterSensitiveLog: (obj: CreateScheduleOutput) => any;
1057
- /**
1058
- * @internal
1059
- */
1060
- export declare const DeleteScheduleInputFilterSensitiveLog: (obj: DeleteScheduleInput) => any;
1061
- /**
1062
- * @internal
1063
- */
1064
- export declare const DeleteScheduleOutputFilterSensitiveLog: (obj: DeleteScheduleOutput) => any;
1065
- /**
1066
- * @internal
1067
- */
1068
- export declare const GetScheduleInputFilterSensitiveLog: (obj: GetScheduleInput) => any;
1069
- /**
1070
- * @internal
1071
- */
1072
- export declare const GetScheduleOutputFilterSensitiveLog: (obj: GetScheduleOutput) => any;
1073
- /**
1074
- * @internal
1075
- */
1076
- export declare const ListSchedulesInputFilterSensitiveLog: (obj: ListSchedulesInput) => any;
1077
- /**
1078
- * @internal
1079
- */
1080
- export declare const TargetSummaryFilterSensitiveLog: (obj: TargetSummary) => any;
1081
- /**
1082
- * @internal
1083
- */
1084
- export declare const ScheduleSummaryFilterSensitiveLog: (obj: ScheduleSummary) => any;
1085
- /**
1086
- * @internal
1087
- */
1088
- export declare const ListSchedulesOutputFilterSensitiveLog: (obj: ListSchedulesOutput) => any;
1089
- /**
1090
- * @internal
1091
- */
1092
- export declare const UpdateScheduleInputFilterSensitiveLog: (obj: UpdateScheduleInput) => any;
1093
- /**
1094
- * @internal
1095
- */
1096
- export declare const UpdateScheduleOutputFilterSensitiveLog: (obj: UpdateScheduleOutput) => any;
1097
- /**
1098
- * @internal
1099
- */
1100
- export declare const CreateScheduleGroupInputFilterSensitiveLog: (obj: CreateScheduleGroupInput) => any;
1101
- /**
1102
- * @internal
1103
- */
1104
- export declare const CreateScheduleGroupOutputFilterSensitiveLog: (obj: CreateScheduleGroupOutput) => any;
1105
- /**
1106
- * @internal
1107
- */
1108
- export declare const DeleteScheduleGroupInputFilterSensitiveLog: (obj: DeleteScheduleGroupInput) => any;
1109
- /**
1110
- * @internal
1111
- */
1112
- export declare const DeleteScheduleGroupOutputFilterSensitiveLog: (obj: DeleteScheduleGroupOutput) => any;
1113
- /**
1114
- * @internal
1115
- */
1116
- export declare const GetScheduleGroupInputFilterSensitiveLog: (obj: GetScheduleGroupInput) => any;
1117
- /**
1118
- * @internal
1119
- */
1120
- export declare const GetScheduleGroupOutputFilterSensitiveLog: (obj: GetScheduleGroupOutput) => any;
1121
- /**
1122
- * @internal
1123
- */
1124
- export declare const ListScheduleGroupsInputFilterSensitiveLog: (obj: ListScheduleGroupsInput) => any;
1125
- /**
1126
- * @internal
1127
- */
1128
- export declare const ScheduleGroupSummaryFilterSensitiveLog: (obj: ScheduleGroupSummary) => any;
1129
- /**
1130
- * @internal
1131
- */
1132
- export declare const ListScheduleGroupsOutputFilterSensitiveLog: (obj: ListScheduleGroupsOutput) => any;
1133
- /**
1134
- * @internal
1135
- */
1136
- export declare const TagResourceInputFilterSensitiveLog: (obj: TagResourceInput) => any;
1137
- /**
1138
- * @internal
1139
- */
1140
- export declare const TagResourceOutputFilterSensitiveLog: (obj: TagResourceOutput) => any;
1141
- /**
1142
- * @internal
1143
- */
1144
- export declare const UntagResourceInputFilterSensitiveLog: (obj: UntagResourceInput) => any;
1145
- /**
1146
- * @internal
1147
- */
1148
- export declare const UntagResourceOutputFilterSensitiveLog: (obj: UntagResourceOutput) => any;
1096
+ export interface UntagResourceOutput {
1097
+ }
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { SchedulerClient } from "../SchedulerClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface SchedulerPaginationConfiguration extends PaginationConfiguration {
4
7
  client: SchedulerClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListScheduleGroupsCommandInput, ListScheduleGroupsCommandOutput } from "../commands/ListScheduleGroupsCommand";
3
3
  import { SchedulerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListScheduleGroups(config: SchedulerPaginationConfiguration, input: ListScheduleGroupsCommandInput, ...additionalArguments: any): Paginator<ListScheduleGroupsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListSchedulesCommandInput, ListSchedulesCommandOutput } from "../commands/ListSchedulesCommand";
3
3
  import { SchedulerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListSchedules(config: SchedulerPaginationConfiguration, input: ListSchedulesCommandInput, ...additionalArguments: any): Paginator<ListSchedulesCommandOutput>;