@aws-sdk/client-scheduler 3.208.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 (127) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +209 -0
  3. package/dist-cjs/Scheduler.js +187 -0
  4. package/dist-cjs/SchedulerClient.js +40 -0
  5. package/dist-cjs/commands/CreateScheduleCommand.js +46 -0
  6. package/dist-cjs/commands/CreateScheduleGroupCommand.js +46 -0
  7. package/dist-cjs/commands/DeleteScheduleCommand.js +46 -0
  8. package/dist-cjs/commands/DeleteScheduleGroupCommand.js +46 -0
  9. package/dist-cjs/commands/GetScheduleCommand.js +46 -0
  10. package/dist-cjs/commands/GetScheduleGroupCommand.js +46 -0
  11. package/dist-cjs/commands/ListScheduleGroupsCommand.js +46 -0
  12. package/dist-cjs/commands/ListSchedulesCommand.js +46 -0
  13. package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
  14. package/dist-cjs/commands/TagResourceCommand.js +46 -0
  15. package/dist-cjs/commands/UntagResourceCommand.js +46 -0
  16. package/dist-cjs/commands/UpdateScheduleCommand.js +46 -0
  17. package/dist-cjs/commands/index.js +15 -0
  18. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  19. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  20. package/dist-cjs/endpoint/ruleset.js +312 -0
  21. package/dist-cjs/index.js +11 -0
  22. package/dist-cjs/models/SchedulerServiceException.js +11 -0
  23. package/dist-cjs/models/index.js +4 -0
  24. package/dist-cjs/models/models_0.js +302 -0
  25. package/dist-cjs/pagination/Interfaces.js +2 -0
  26. package/dist-cjs/pagination/ListScheduleGroupsPaginator.js +36 -0
  27. package/dist-cjs/pagination/ListSchedulesPaginator.js +36 -0
  28. package/dist-cjs/pagination/index.js +6 -0
  29. package/dist-cjs/protocols/Aws_restJson1.js +1494 -0
  30. package/dist-cjs/runtimeConfig.browser.js +42 -0
  31. package/dist-cjs/runtimeConfig.js +50 -0
  32. package/dist-cjs/runtimeConfig.native.js +15 -0
  33. package/dist-cjs/runtimeConfig.shared.js +17 -0
  34. package/dist-es/Scheduler.js +183 -0
  35. package/dist-es/SchedulerClient.js +36 -0
  36. package/dist-es/commands/CreateScheduleCommand.js +42 -0
  37. package/dist-es/commands/CreateScheduleGroupCommand.js +42 -0
  38. package/dist-es/commands/DeleteScheduleCommand.js +42 -0
  39. package/dist-es/commands/DeleteScheduleGroupCommand.js +42 -0
  40. package/dist-es/commands/GetScheduleCommand.js +42 -0
  41. package/dist-es/commands/GetScheduleGroupCommand.js +42 -0
  42. package/dist-es/commands/ListScheduleGroupsCommand.js +42 -0
  43. package/dist-es/commands/ListSchedulesCommand.js +42 -0
  44. package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
  45. package/dist-es/commands/TagResourceCommand.js +42 -0
  46. package/dist-es/commands/UntagResourceCommand.js +42 -0
  47. package/dist-es/commands/UpdateScheduleCommand.js +42 -0
  48. package/dist-es/commands/index.js +12 -0
  49. package/dist-es/endpoint/EndpointParameters.js +8 -0
  50. package/dist-es/endpoint/endpointResolver.js +8 -0
  51. package/dist-es/endpoint/ruleset.js +309 -0
  52. package/dist-es/index.js +6 -0
  53. package/dist-es/models/SchedulerServiceException.js +7 -0
  54. package/dist-es/models/index.js +1 -0
  55. package/dist-es/models/models_0.js +249 -0
  56. package/dist-es/pagination/Interfaces.js +1 -0
  57. package/dist-es/pagination/ListScheduleGroupsPaginator.js +32 -0
  58. package/dist-es/pagination/ListSchedulesPaginator.js +32 -0
  59. package/dist-es/pagination/index.js +3 -0
  60. package/dist-es/protocols/Aws_restJson1.js +1467 -0
  61. package/dist-es/runtimeConfig.browser.js +37 -0
  62. package/dist-es/runtimeConfig.js +45 -0
  63. package/dist-es/runtimeConfig.native.js +11 -0
  64. package/dist-es/runtimeConfig.shared.js +13 -0
  65. package/dist-types/Scheduler.d.ts +111 -0
  66. package/dist-types/SchedulerClient.d.ts +157 -0
  67. package/dist-types/commands/CreateScheduleCommand.d.ts +37 -0
  68. package/dist-types/commands/CreateScheduleGroupCommand.d.ts +37 -0
  69. package/dist-types/commands/DeleteScheduleCommand.d.ts +37 -0
  70. package/dist-types/commands/DeleteScheduleGroupCommand.d.ts +45 -0
  71. package/dist-types/commands/GetScheduleCommand.d.ts +37 -0
  72. package/dist-types/commands/GetScheduleGroupCommand.d.ts +37 -0
  73. package/dist-types/commands/ListScheduleGroupsCommand.d.ts +37 -0
  74. package/dist-types/commands/ListSchedulesCommand.d.ts +37 -0
  75. package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
  76. package/dist-types/commands/TagResourceCommand.d.ts +37 -0
  77. package/dist-types/commands/UntagResourceCommand.d.ts +37 -0
  78. package/dist-types/commands/UpdateScheduleCommand.d.ts +45 -0
  79. package/dist-types/commands/index.d.ts +12 -0
  80. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  81. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  82. package/dist-types/endpoint/ruleset.d.ts +2 -0
  83. package/dist-types/index.d.ts +6 -0
  84. package/dist-types/models/SchedulerServiceException.d.ts +10 -0
  85. package/dist-types/models/index.d.ts +1 -0
  86. package/dist-types/models/models_0.d.ts +1148 -0
  87. package/dist-types/pagination/Interfaces.d.ts +6 -0
  88. package/dist-types/pagination/ListScheduleGroupsPaginator.d.ts +4 -0
  89. package/dist-types/pagination/ListSchedulesPaginator.d.ts +4 -0
  90. package/dist-types/pagination/index.d.ts +3 -0
  91. package/dist-types/protocols/Aws_restJson1.d.ts +38 -0
  92. package/dist-types/runtimeConfig.browser.d.ts +42 -0
  93. package/dist-types/runtimeConfig.d.ts +42 -0
  94. package/dist-types/runtimeConfig.native.d.ts +41 -0
  95. package/dist-types/runtimeConfig.shared.d.ts +17 -0
  96. package/dist-types/ts3.4/Scheduler.d.ts +208 -0
  97. package/dist-types/ts3.4/SchedulerClient.d.ts +183 -0
  98. package/dist-types/ts3.4/commands/CreateScheduleCommand.d.ts +34 -0
  99. package/dist-types/ts3.4/commands/CreateScheduleGroupCommand.d.ts +38 -0
  100. package/dist-types/ts3.4/commands/DeleteScheduleCommand.d.ts +34 -0
  101. package/dist-types/ts3.4/commands/DeleteScheduleGroupCommand.d.ts +38 -0
  102. package/dist-types/ts3.4/commands/GetScheduleCommand.d.ts +34 -0
  103. package/dist-types/ts3.4/commands/GetScheduleGroupCommand.d.ts +37 -0
  104. package/dist-types/ts3.4/commands/ListScheduleGroupsCommand.d.ts +38 -0
  105. package/dist-types/ts3.4/commands/ListSchedulesCommand.d.ts +34 -0
  106. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
  107. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
  108. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
  109. package/dist-types/ts3.4/commands/UpdateScheduleCommand.d.ts +34 -0
  110. package/dist-types/ts3.4/commands/index.d.ts +12 -0
  111. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
  112. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  113. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  114. package/dist-types/ts3.4/index.d.ts +6 -0
  115. package/dist-types/ts3.4/models/SchedulerServiceException.d.ts +7 -0
  116. package/dist-types/ts3.4/models/index.d.ts +1 -0
  117. package/dist-types/ts3.4/models/models_0.d.ts +423 -0
  118. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
  119. package/dist-types/ts3.4/pagination/ListScheduleGroupsPaginator.d.ts +11 -0
  120. package/dist-types/ts3.4/pagination/ListSchedulesPaginator.d.ts +11 -0
  121. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  122. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -0
  123. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +86 -0
  124. package/dist-types/ts3.4/runtimeConfig.d.ts +86 -0
  125. package/dist-types/ts3.4/runtimeConfig.native.d.ts +75 -0
  126. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +17 -0
  127. package/package.json +105 -0
@@ -0,0 +1,423 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { SchedulerServiceException as __BaseException } from "./SchedulerServiceException";
3
+ export declare enum AssignPublicIp {
4
+ DISABLED = "DISABLED",
5
+ ENABLED = "ENABLED",
6
+ }
7
+ export declare class InternalServerException extends __BaseException {
8
+ readonly name: "InternalServerException";
9
+ readonly $fault: "server";
10
+ Message: string | undefined;
11
+ constructor(
12
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
13
+ );
14
+ }
15
+ export interface ListTagsForResourceInput {
16
+ ResourceArn: string | undefined;
17
+ }
18
+ export interface Tag {
19
+ Key: string | undefined;
20
+ Value: string | undefined;
21
+ }
22
+ export interface ListTagsForResourceOutput {
23
+ Tags?: Tag[];
24
+ }
25
+ export declare class ResourceNotFoundException extends __BaseException {
26
+ readonly name: "ResourceNotFoundException";
27
+ readonly $fault: "client";
28
+ Message: string | undefined;
29
+ constructor(
30
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
31
+ );
32
+ }
33
+ export declare class ThrottlingException extends __BaseException {
34
+ readonly name: "ThrottlingException";
35
+ readonly $fault: "client";
36
+ Message: string | undefined;
37
+ constructor(
38
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
39
+ );
40
+ }
41
+ export declare class ValidationException extends __BaseException {
42
+ readonly name: "ValidationException";
43
+ readonly $fault: "client";
44
+ Message: string | undefined;
45
+ constructor(
46
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
47
+ );
48
+ }
49
+ export declare class ConflictException extends __BaseException {
50
+ readonly name: "ConflictException";
51
+ readonly $fault: "client";
52
+ Message: string | undefined;
53
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
54
+ }
55
+ export declare enum FlexibleTimeWindowMode {
56
+ FLEXIBLE = "FLEXIBLE",
57
+ OFF = "OFF",
58
+ }
59
+ export interface FlexibleTimeWindow {
60
+ Mode: FlexibleTimeWindowMode | string | undefined;
61
+ MaximumWindowInMinutes?: number;
62
+ }
63
+ export declare enum ScheduleState {
64
+ DISABLED = "DISABLED",
65
+ ENABLED = "ENABLED",
66
+ }
67
+ export interface DeadLetterConfig {
68
+ Arn?: string;
69
+ }
70
+ export interface CapacityProviderStrategyItem {
71
+ capacityProvider: string | undefined;
72
+ weight?: number;
73
+ base?: number;
74
+ }
75
+ export declare enum LaunchType {
76
+ EC2 = "EC2",
77
+ EXTERNAL = "EXTERNAL",
78
+ FARGATE = "FARGATE",
79
+ }
80
+ export interface AwsVpcConfiguration {
81
+ Subnets: string[] | undefined;
82
+ SecurityGroups?: string[];
83
+ AssignPublicIp?: AssignPublicIp | string;
84
+ }
85
+ export interface NetworkConfiguration {
86
+ awsvpcConfiguration?: AwsVpcConfiguration;
87
+ }
88
+ export declare enum PlacementConstraintType {
89
+ DISTINCT_INSTANCE = "distinctInstance",
90
+ MEMBER_OF = "memberOf",
91
+ }
92
+ export interface PlacementConstraint {
93
+ type?: PlacementConstraintType | string;
94
+ expression?: string;
95
+ }
96
+ export declare enum PlacementStrategyType {
97
+ BINPACK = "binpack",
98
+ RANDOM = "random",
99
+ SPREAD = "spread",
100
+ }
101
+ export interface PlacementStrategy {
102
+ type?: PlacementStrategyType | string;
103
+ field?: string;
104
+ }
105
+ export declare enum PropagateTags {
106
+ TASK_DEFINITION = "TASK_DEFINITION",
107
+ }
108
+ export interface EcsParameters {
109
+ TaskDefinitionArn: string | undefined;
110
+ TaskCount?: number;
111
+ LaunchType?: LaunchType | string;
112
+ NetworkConfiguration?: NetworkConfiguration;
113
+ PlatformVersion?: string;
114
+ Group?: string;
115
+ CapacityProviderStrategy?: CapacityProviderStrategyItem[];
116
+ EnableECSManagedTags?: boolean;
117
+ EnableExecuteCommand?: boolean;
118
+ PlacementConstraints?: PlacementConstraint[];
119
+ PlacementStrategy?: PlacementStrategy[];
120
+ PropagateTags?: PropagateTags | string;
121
+ ReferenceId?: string;
122
+ Tags?: Record<string, string>[];
123
+ }
124
+ export interface EventBridgeParameters {
125
+ DetailType: string | undefined;
126
+ Source: string | undefined;
127
+ }
128
+ export interface KinesisParameters {
129
+ PartitionKey: string | undefined;
130
+ }
131
+ export interface RetryPolicy {
132
+ MaximumEventAgeInSeconds?: number;
133
+ MaximumRetryAttempts?: number;
134
+ }
135
+ export interface SageMakerPipelineParameter {
136
+ Name: string | undefined;
137
+ Value: string | undefined;
138
+ }
139
+ export interface SageMakerPipelineParameters {
140
+ PipelineParameterList?: SageMakerPipelineParameter[];
141
+ }
142
+ export interface SqsParameters {
143
+ MessageGroupId?: string;
144
+ }
145
+ export interface Target {
146
+ Arn: string | undefined;
147
+ RoleArn: string | undefined;
148
+ DeadLetterConfig?: DeadLetterConfig;
149
+ RetryPolicy?: RetryPolicy;
150
+ Input?: string;
151
+ EcsParameters?: EcsParameters;
152
+ EventBridgeParameters?: EventBridgeParameters;
153
+ KinesisParameters?: KinesisParameters;
154
+ SageMakerPipelineParameters?: SageMakerPipelineParameters;
155
+ SqsParameters?: SqsParameters;
156
+ }
157
+ export interface CreateScheduleInput {
158
+ Name: string | undefined;
159
+ GroupName?: string;
160
+ ScheduleExpression: string | undefined;
161
+ StartDate?: Date;
162
+ EndDate?: Date;
163
+ Description?: string;
164
+ ScheduleExpressionTimezone?: string;
165
+ State?: ScheduleState | string;
166
+ KmsKeyArn?: string;
167
+ Target: Target | undefined;
168
+ FlexibleTimeWindow: FlexibleTimeWindow | undefined;
169
+ ClientToken?: string;
170
+ }
171
+ export interface CreateScheduleOutput {
172
+ ScheduleArn: string | undefined;
173
+ }
174
+ export declare class ServiceQuotaExceededException extends __BaseException {
175
+ readonly name: "ServiceQuotaExceededException";
176
+ readonly $fault: "client";
177
+ Message: string | undefined;
178
+ constructor(
179
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
180
+ );
181
+ }
182
+ export interface DeleteScheduleInput {
183
+ Name: string | undefined;
184
+ GroupName?: string;
185
+ ClientToken?: string;
186
+ }
187
+ export interface DeleteScheduleOutput {}
188
+ export interface GetScheduleInput {
189
+ Name: string | undefined;
190
+ GroupName?: string;
191
+ }
192
+ export interface GetScheduleOutput {
193
+ Arn?: string;
194
+ GroupName?: string;
195
+ Name?: string;
196
+ ScheduleExpression?: string;
197
+ StartDate?: Date;
198
+ EndDate?: Date;
199
+ Description?: string;
200
+ ScheduleExpressionTimezone?: string;
201
+ State?: ScheduleState | string;
202
+ CreationDate?: Date;
203
+ LastModificationDate?: Date;
204
+ KmsKeyArn?: string;
205
+ Target?: Target;
206
+ FlexibleTimeWindow?: FlexibleTimeWindow;
207
+ }
208
+ export interface ListSchedulesInput {
209
+ GroupName?: string;
210
+ NamePrefix?: string;
211
+ State?: ScheduleState | string;
212
+ NextToken?: string;
213
+ MaxResults?: number;
214
+ }
215
+ export interface TargetSummary {
216
+ Arn: string | undefined;
217
+ }
218
+ export interface ScheduleSummary {
219
+ Arn?: string;
220
+ Name?: string;
221
+ GroupName?: string;
222
+ State?: ScheduleState | string;
223
+ CreationDate?: Date;
224
+ LastModificationDate?: Date;
225
+ Target?: TargetSummary;
226
+ }
227
+ export interface ListSchedulesOutput {
228
+ NextToken?: string;
229
+ Schedules: ScheduleSummary[] | undefined;
230
+ }
231
+ export interface UpdateScheduleInput {
232
+ Name: string | undefined;
233
+ GroupName?: string;
234
+ ScheduleExpression: string | undefined;
235
+ StartDate?: Date;
236
+ EndDate?: Date;
237
+ Description?: string;
238
+ ScheduleExpressionTimezone?: string;
239
+ State?: ScheduleState | string;
240
+ KmsKeyArn?: string;
241
+ Target: Target | undefined;
242
+ FlexibleTimeWindow: FlexibleTimeWindow | undefined;
243
+ ClientToken?: string;
244
+ }
245
+ export interface UpdateScheduleOutput {
246
+ ScheduleArn: string | undefined;
247
+ }
248
+ export interface CreateScheduleGroupInput {
249
+ Name: string | undefined;
250
+ Tags?: Tag[];
251
+ ClientToken?: string;
252
+ }
253
+ export interface CreateScheduleGroupOutput {
254
+ ScheduleGroupArn: string | undefined;
255
+ }
256
+ export interface DeleteScheduleGroupInput {
257
+ Name: string | undefined;
258
+ ClientToken?: string;
259
+ }
260
+ export interface DeleteScheduleGroupOutput {}
261
+ export interface GetScheduleGroupInput {
262
+ Name: string | undefined;
263
+ }
264
+ export declare enum ScheduleGroupState {
265
+ ACTIVE = "ACTIVE",
266
+ DELETING = "DELETING",
267
+ }
268
+ export interface GetScheduleGroupOutput {
269
+ Arn?: string;
270
+ Name?: string;
271
+ State?: ScheduleGroupState | string;
272
+ CreationDate?: Date;
273
+ LastModificationDate?: Date;
274
+ }
275
+ export interface ListScheduleGroupsInput {
276
+ NamePrefix?: string;
277
+ NextToken?: string;
278
+ MaxResults?: number;
279
+ }
280
+ export interface ScheduleGroupSummary {
281
+ Arn?: string;
282
+ Name?: string;
283
+ State?: ScheduleGroupState | string;
284
+ CreationDate?: Date;
285
+ LastModificationDate?: Date;
286
+ }
287
+ export interface ListScheduleGroupsOutput {
288
+ NextToken?: string;
289
+ ScheduleGroups: ScheduleGroupSummary[] | undefined;
290
+ }
291
+ export interface TagResourceInput {
292
+ ResourceArn: string | undefined;
293
+ Tags: Tag[] | undefined;
294
+ }
295
+ export interface TagResourceOutput {}
296
+ export interface UntagResourceInput {
297
+ ResourceArn: string | undefined;
298
+ TagKeys: string[] | undefined;
299
+ }
300
+ export interface UntagResourceOutput {}
301
+ export declare const ListTagsForResourceInputFilterSensitiveLog: (
302
+ obj: ListTagsForResourceInput
303
+ ) => any;
304
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
305
+ export declare const ListTagsForResourceOutputFilterSensitiveLog: (
306
+ obj: ListTagsForResourceOutput
307
+ ) => any;
308
+ export declare const FlexibleTimeWindowFilterSensitiveLog: (
309
+ obj: FlexibleTimeWindow
310
+ ) => any;
311
+ export declare const DeadLetterConfigFilterSensitiveLog: (
312
+ obj: DeadLetterConfig
313
+ ) => any;
314
+ export declare const CapacityProviderStrategyItemFilterSensitiveLog: (
315
+ obj: CapacityProviderStrategyItem
316
+ ) => any;
317
+ export declare const AwsVpcConfigurationFilterSensitiveLog: (
318
+ obj: AwsVpcConfiguration
319
+ ) => any;
320
+ export declare const NetworkConfigurationFilterSensitiveLog: (
321
+ obj: NetworkConfiguration
322
+ ) => any;
323
+ export declare const PlacementConstraintFilterSensitiveLog: (
324
+ obj: PlacementConstraint
325
+ ) => any;
326
+ export declare const PlacementStrategyFilterSensitiveLog: (
327
+ obj: PlacementStrategy
328
+ ) => any;
329
+ export declare const EcsParametersFilterSensitiveLog: (
330
+ obj: EcsParameters
331
+ ) => any;
332
+ export declare const EventBridgeParametersFilterSensitiveLog: (
333
+ obj: EventBridgeParameters
334
+ ) => any;
335
+ export declare const KinesisParametersFilterSensitiveLog: (
336
+ obj: KinesisParameters
337
+ ) => any;
338
+ export declare const RetryPolicyFilterSensitiveLog: (obj: RetryPolicy) => any;
339
+ export declare const SageMakerPipelineParameterFilterSensitiveLog: (
340
+ obj: SageMakerPipelineParameter
341
+ ) => any;
342
+ export declare const SageMakerPipelineParametersFilterSensitiveLog: (
343
+ obj: SageMakerPipelineParameters
344
+ ) => any;
345
+ export declare const SqsParametersFilterSensitiveLog: (
346
+ obj: SqsParameters
347
+ ) => any;
348
+ export declare const TargetFilterSensitiveLog: (obj: Target) => any;
349
+ export declare const CreateScheduleInputFilterSensitiveLog: (
350
+ obj: CreateScheduleInput
351
+ ) => any;
352
+ export declare const CreateScheduleOutputFilterSensitiveLog: (
353
+ obj: CreateScheduleOutput
354
+ ) => any;
355
+ export declare const DeleteScheduleInputFilterSensitiveLog: (
356
+ obj: DeleteScheduleInput
357
+ ) => any;
358
+ export declare const DeleteScheduleOutputFilterSensitiveLog: (
359
+ obj: DeleteScheduleOutput
360
+ ) => any;
361
+ export declare const GetScheduleInputFilterSensitiveLog: (
362
+ obj: GetScheduleInput
363
+ ) => any;
364
+ export declare const GetScheduleOutputFilterSensitiveLog: (
365
+ obj: GetScheduleOutput
366
+ ) => any;
367
+ export declare const ListSchedulesInputFilterSensitiveLog: (
368
+ obj: ListSchedulesInput
369
+ ) => any;
370
+ export declare const TargetSummaryFilterSensitiveLog: (
371
+ obj: TargetSummary
372
+ ) => any;
373
+ export declare const ScheduleSummaryFilterSensitiveLog: (
374
+ obj: ScheduleSummary
375
+ ) => any;
376
+ export declare const ListSchedulesOutputFilterSensitiveLog: (
377
+ obj: ListSchedulesOutput
378
+ ) => any;
379
+ export declare const UpdateScheduleInputFilterSensitiveLog: (
380
+ obj: UpdateScheduleInput
381
+ ) => any;
382
+ export declare const UpdateScheduleOutputFilterSensitiveLog: (
383
+ obj: UpdateScheduleOutput
384
+ ) => any;
385
+ export declare const CreateScheduleGroupInputFilterSensitiveLog: (
386
+ obj: CreateScheduleGroupInput
387
+ ) => any;
388
+ export declare const CreateScheduleGroupOutputFilterSensitiveLog: (
389
+ obj: CreateScheduleGroupOutput
390
+ ) => any;
391
+ export declare const DeleteScheduleGroupInputFilterSensitiveLog: (
392
+ obj: DeleteScheduleGroupInput
393
+ ) => any;
394
+ export declare const DeleteScheduleGroupOutputFilterSensitiveLog: (
395
+ obj: DeleteScheduleGroupOutput
396
+ ) => any;
397
+ export declare const GetScheduleGroupInputFilterSensitiveLog: (
398
+ obj: GetScheduleGroupInput
399
+ ) => any;
400
+ export declare const GetScheduleGroupOutputFilterSensitiveLog: (
401
+ obj: GetScheduleGroupOutput
402
+ ) => any;
403
+ export declare const ListScheduleGroupsInputFilterSensitiveLog: (
404
+ obj: ListScheduleGroupsInput
405
+ ) => any;
406
+ export declare const ScheduleGroupSummaryFilterSensitiveLog: (
407
+ obj: ScheduleGroupSummary
408
+ ) => any;
409
+ export declare const ListScheduleGroupsOutputFilterSensitiveLog: (
410
+ obj: ListScheduleGroupsOutput
411
+ ) => any;
412
+ export declare const TagResourceInputFilterSensitiveLog: (
413
+ obj: TagResourceInput
414
+ ) => any;
415
+ export declare const TagResourceOutputFilterSensitiveLog: (
416
+ obj: TagResourceOutput
417
+ ) => any;
418
+ export declare const UntagResourceInputFilterSensitiveLog: (
419
+ obj: UntagResourceInput
420
+ ) => any;
421
+ export declare const UntagResourceOutputFilterSensitiveLog: (
422
+ obj: UntagResourceOutput
423
+ ) => any;
@@ -0,0 +1,7 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { Scheduler } from "../Scheduler";
3
+ import { SchedulerClient } from "../SchedulerClient";
4
+ export interface SchedulerPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: Scheduler | SchedulerClient;
7
+ }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListScheduleGroupsCommandInput,
4
+ ListScheduleGroupsCommandOutput,
5
+ } from "../commands/ListScheduleGroupsCommand";
6
+ import { SchedulerPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListScheduleGroups(
8
+ config: SchedulerPaginationConfiguration,
9
+ input: ListScheduleGroupsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListScheduleGroupsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListSchedulesCommandInput,
4
+ ListSchedulesCommandOutput,
5
+ } from "../commands/ListSchedulesCommand";
6
+ import { SchedulerPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListSchedules(
8
+ config: SchedulerPaginationConfiguration,
9
+ input: ListSchedulesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListSchedulesCommandOutput>;
@@ -0,0 +1,3 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListScheduleGroupsPaginator";
3
+ export * from "./ListSchedulesPaginator";
@@ -0,0 +1,149 @@
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ CreateScheduleCommandInput,
8
+ CreateScheduleCommandOutput,
9
+ } from "../commands/CreateScheduleCommand";
10
+ import {
11
+ CreateScheduleGroupCommandInput,
12
+ CreateScheduleGroupCommandOutput,
13
+ } from "../commands/CreateScheduleGroupCommand";
14
+ import {
15
+ DeleteScheduleCommandInput,
16
+ DeleteScheduleCommandOutput,
17
+ } from "../commands/DeleteScheduleCommand";
18
+ import {
19
+ DeleteScheduleGroupCommandInput,
20
+ DeleteScheduleGroupCommandOutput,
21
+ } from "../commands/DeleteScheduleGroupCommand";
22
+ import {
23
+ GetScheduleCommandInput,
24
+ GetScheduleCommandOutput,
25
+ } from "../commands/GetScheduleCommand";
26
+ import {
27
+ GetScheduleGroupCommandInput,
28
+ GetScheduleGroupCommandOutput,
29
+ } from "../commands/GetScheduleGroupCommand";
30
+ import {
31
+ ListScheduleGroupsCommandInput,
32
+ ListScheduleGroupsCommandOutput,
33
+ } from "../commands/ListScheduleGroupsCommand";
34
+ import {
35
+ ListSchedulesCommandInput,
36
+ ListSchedulesCommandOutput,
37
+ } from "../commands/ListSchedulesCommand";
38
+ import {
39
+ ListTagsForResourceCommandInput,
40
+ ListTagsForResourceCommandOutput,
41
+ } from "../commands/ListTagsForResourceCommand";
42
+ import {
43
+ TagResourceCommandInput,
44
+ TagResourceCommandOutput,
45
+ } from "../commands/TagResourceCommand";
46
+ import {
47
+ UntagResourceCommandInput,
48
+ UntagResourceCommandOutput,
49
+ } from "../commands/UntagResourceCommand";
50
+ import {
51
+ UpdateScheduleCommandInput,
52
+ UpdateScheduleCommandOutput,
53
+ } from "../commands/UpdateScheduleCommand";
54
+ export declare const serializeAws_restJson1CreateScheduleCommand: (
55
+ input: CreateScheduleCommandInput,
56
+ context: __SerdeContext
57
+ ) => Promise<__HttpRequest>;
58
+ export declare const serializeAws_restJson1CreateScheduleGroupCommand: (
59
+ input: CreateScheduleGroupCommandInput,
60
+ context: __SerdeContext
61
+ ) => Promise<__HttpRequest>;
62
+ export declare const serializeAws_restJson1DeleteScheduleCommand: (
63
+ input: DeleteScheduleCommandInput,
64
+ context: __SerdeContext
65
+ ) => Promise<__HttpRequest>;
66
+ export declare const serializeAws_restJson1DeleteScheduleGroupCommand: (
67
+ input: DeleteScheduleGroupCommandInput,
68
+ context: __SerdeContext
69
+ ) => Promise<__HttpRequest>;
70
+ export declare const serializeAws_restJson1GetScheduleCommand: (
71
+ input: GetScheduleCommandInput,
72
+ context: __SerdeContext
73
+ ) => Promise<__HttpRequest>;
74
+ export declare const serializeAws_restJson1GetScheduleGroupCommand: (
75
+ input: GetScheduleGroupCommandInput,
76
+ context: __SerdeContext
77
+ ) => Promise<__HttpRequest>;
78
+ export declare const serializeAws_restJson1ListScheduleGroupsCommand: (
79
+ input: ListScheduleGroupsCommandInput,
80
+ context: __SerdeContext
81
+ ) => Promise<__HttpRequest>;
82
+ export declare const serializeAws_restJson1ListSchedulesCommand: (
83
+ input: ListSchedulesCommandInput,
84
+ context: __SerdeContext
85
+ ) => Promise<__HttpRequest>;
86
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
87
+ input: ListTagsForResourceCommandInput,
88
+ context: __SerdeContext
89
+ ) => Promise<__HttpRequest>;
90
+ export declare const serializeAws_restJson1TagResourceCommand: (
91
+ input: TagResourceCommandInput,
92
+ context: __SerdeContext
93
+ ) => Promise<__HttpRequest>;
94
+ export declare const serializeAws_restJson1UntagResourceCommand: (
95
+ input: UntagResourceCommandInput,
96
+ context: __SerdeContext
97
+ ) => Promise<__HttpRequest>;
98
+ export declare const serializeAws_restJson1UpdateScheduleCommand: (
99
+ input: UpdateScheduleCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const deserializeAws_restJson1CreateScheduleCommand: (
103
+ output: __HttpResponse,
104
+ context: __SerdeContext
105
+ ) => Promise<CreateScheduleCommandOutput>;
106
+ export declare const deserializeAws_restJson1CreateScheduleGroupCommand: (
107
+ output: __HttpResponse,
108
+ context: __SerdeContext
109
+ ) => Promise<CreateScheduleGroupCommandOutput>;
110
+ export declare const deserializeAws_restJson1DeleteScheduleCommand: (
111
+ output: __HttpResponse,
112
+ context: __SerdeContext
113
+ ) => Promise<DeleteScheduleCommandOutput>;
114
+ export declare const deserializeAws_restJson1DeleteScheduleGroupCommand: (
115
+ output: __HttpResponse,
116
+ context: __SerdeContext
117
+ ) => Promise<DeleteScheduleGroupCommandOutput>;
118
+ export declare const deserializeAws_restJson1GetScheduleCommand: (
119
+ output: __HttpResponse,
120
+ context: __SerdeContext
121
+ ) => Promise<GetScheduleCommandOutput>;
122
+ export declare const deserializeAws_restJson1GetScheduleGroupCommand: (
123
+ output: __HttpResponse,
124
+ context: __SerdeContext
125
+ ) => Promise<GetScheduleGroupCommandOutput>;
126
+ export declare const deserializeAws_restJson1ListScheduleGroupsCommand: (
127
+ output: __HttpResponse,
128
+ context: __SerdeContext
129
+ ) => Promise<ListScheduleGroupsCommandOutput>;
130
+ export declare const deserializeAws_restJson1ListSchedulesCommand: (
131
+ output: __HttpResponse,
132
+ context: __SerdeContext
133
+ ) => Promise<ListSchedulesCommandOutput>;
134
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
135
+ output: __HttpResponse,
136
+ context: __SerdeContext
137
+ ) => Promise<ListTagsForResourceCommandOutput>;
138
+ export declare const deserializeAws_restJson1TagResourceCommand: (
139
+ output: __HttpResponse,
140
+ context: __SerdeContext
141
+ ) => Promise<TagResourceCommandOutput>;
142
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
143
+ output: __HttpResponse,
144
+ context: __SerdeContext
145
+ ) => Promise<UntagResourceCommandOutput>;
146
+ export declare const deserializeAws_restJson1UpdateScheduleCommand: (
147
+ output: __HttpResponse,
148
+ context: __SerdeContext
149
+ ) => Promise<UpdateScheduleCommandOutput>;
@@ -0,0 +1,86 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { SchedulerClientConfig } from "./SchedulerClient";
3
+ export declare const getRuntimeConfig: (config: SchedulerClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@aws-sdk/types").Provider<
6
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
9
+ credentialDefaultProvider: (
10
+ input: any
11
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
12
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
13
+ import("@aws-sdk/types").UserAgent
14
+ >;
15
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
16
+ region: string | import("@aws-sdk/types").Provider<any>;
17
+ requestHandler:
18
+ | (import("@aws-sdk/types").RequestHandler<
19
+ any,
20
+ any,
21
+ import("@aws-sdk/types").HttpHandlerOptions
22
+ > &
23
+ import("@aws-sdk/protocol-http").HttpHandler)
24
+ | RequestHandler;
25
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
26
+ sha256: import("@aws-sdk/types").HashConstructor;
27
+ streamCollector: import("@aws-sdk/types").StreamCollector;
28
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
29
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
30
+ utf8Decoder: import("@aws-sdk/types").Decoder;
31
+ utf8Encoder: import("@aws-sdk/types").Encoder;
32
+ apiVersion: string;
33
+ urlParser: import("@aws-sdk/types").UrlParser;
34
+ base64Decoder: import("@aws-sdk/types").Decoder;
35
+ base64Encoder: import("@aws-sdk/types").Encoder;
36
+ disableHostPrefix: boolean;
37
+ logger: import("@aws-sdk/types").Logger;
38
+ serviceId: string;
39
+ endpoint?:
40
+ | ((
41
+ | string
42
+ | import("@aws-sdk/types").Endpoint
43
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
44
+ | import("@aws-sdk/types").EndpointV2
45
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
46
+ ) &
47
+ (
48
+ | string
49
+ | import("@aws-sdk/types").Provider<string>
50
+ | import("@aws-sdk/types").Endpoint
51
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
52
+ | import("@aws-sdk/types").EndpointV2
53
+ | import("@aws-sdk/types").Provider<
54
+ import("@aws-sdk/types").EndpointV2
55
+ >
56
+ ))
57
+ | undefined;
58
+ endpointProvider: (
59
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
60
+ context?: {
61
+ logger?: import("@aws-sdk/types").Logger | undefined;
62
+ }
63
+ ) => import("@aws-sdk/types").EndpointV2;
64
+ tls?: boolean | undefined;
65
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
66
+ credentials?:
67
+ | import("@aws-sdk/types").Credentials
68
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
69
+ | undefined;
70
+ signer?:
71
+ | import("@aws-sdk/types").RequestSigner
72
+ | ((
73
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
74
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
75
+ | undefined;
76
+ signingEscapePath?: boolean | undefined;
77
+ systemClockOffset?: number | undefined;
78
+ signingRegion?: string | undefined;
79
+ signerConstructor?:
80
+ | (new (
81
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
82
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
83
+ ) => import("@aws-sdk/types").RequestSigner)
84
+ | undefined;
85
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
86
+ };