@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,1148 @@
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
+ /**
8
+ * <p>Unexpected error encountered while processing the request.</p>
9
+ */
10
+ export declare class InternalServerException extends __BaseException {
11
+ readonly name: "InternalServerException";
12
+ readonly $fault: "server";
13
+ Message: string | undefined;
14
+ /**
15
+ * @internal
16
+ */
17
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
18
+ }
19
+ export interface ListTagsForResourceInput {
20
+ /**
21
+ * <p>The ARN of the EventBridge Scheduler resource for which you want to view tags.</p>
22
+ */
23
+ ResourceArn: string | undefined;
24
+ }
25
+ /**
26
+ * <p>Tag to associate with a schedule group.</p>
27
+ */
28
+ export interface Tag {
29
+ /**
30
+ * <p>The key for the tag.</p>
31
+ */
32
+ Key: string | undefined;
33
+ /**
34
+ * <p>The value for the tag.</p>
35
+ */
36
+ Value: string | undefined;
37
+ }
38
+ export interface ListTagsForResourceOutput {
39
+ /**
40
+ * <p>The list of tags associated with the specified resource.</p>
41
+ */
42
+ Tags?: Tag[];
43
+ }
44
+ /**
45
+ * <p>The request references a resource which does not exist.</p>
46
+ */
47
+ export declare class ResourceNotFoundException extends __BaseException {
48
+ readonly name: "ResourceNotFoundException";
49
+ readonly $fault: "client";
50
+ Message: string | undefined;
51
+ /**
52
+ * @internal
53
+ */
54
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
55
+ }
56
+ /**
57
+ * <p>The request was denied due to request throttling.</p>
58
+ */
59
+ export declare class ThrottlingException extends __BaseException {
60
+ readonly name: "ThrottlingException";
61
+ readonly $fault: "client";
62
+ Message: string | undefined;
63
+ /**
64
+ * @internal
65
+ */
66
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
67
+ }
68
+ /**
69
+ * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
70
+ */
71
+ export declare class ValidationException extends __BaseException {
72
+ readonly name: "ValidationException";
73
+ readonly $fault: "client";
74
+ Message: string | undefined;
75
+ /**
76
+ * @internal
77
+ */
78
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
79
+ }
80
+ /**
81
+ * <p>Updating or deleting the resource can cause an inconsistent state.</p>
82
+ */
83
+ export declare class ConflictException extends __BaseException {
84
+ readonly name: "ConflictException";
85
+ readonly $fault: "client";
86
+ Message: string | undefined;
87
+ /**
88
+ * @internal
89
+ */
90
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
91
+ }
92
+ export declare enum FlexibleTimeWindowMode {
93
+ FLEXIBLE = "FLEXIBLE",
94
+ OFF = "OFF"
95
+ }
96
+ /**
97
+ * <p>Allows you to configure a time window during which EventBridge Scheduler invokes the schedule.</p>
98
+ */
99
+ export interface FlexibleTimeWindow {
100
+ /**
101
+ * <p>Determines whether the schedule is invoked within a flexible time window.</p>
102
+ */
103
+ Mode: FlexibleTimeWindowMode | string | undefined;
104
+ /**
105
+ * <p>The maximum time window during which a schedule can be invoked.</p>
106
+ */
107
+ MaximumWindowInMinutes?: number;
108
+ }
109
+ export declare enum ScheduleState {
110
+ DISABLED = "DISABLED",
111
+ ENABLED = "ENABLED"
112
+ }
113
+ /**
114
+ * <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
+ */
116
+ export interface DeadLetterConfig {
117
+ /**
118
+ * <p>The Amazon Resource Name (ARN) of the SQS queue specified as the destination for the dead-letter queue.</p>
119
+ */
120
+ Arn?: string;
121
+ }
122
+ /**
123
+ * <p>The details of a capacity provider strategy.</p>
124
+ */
125
+ export interface CapacityProviderStrategyItem {
126
+ /**
127
+ * <p>The short name of the capacity provider.</p>
128
+ */
129
+ capacityProvider: string | undefined;
130
+ /**
131
+ * <p>The weight value designates the relative percentage of the total number of tasks launched that should use the specified capacity provider. The weight value is taken into consideration after the
132
+ * base value, if defined, is satisfied.</p>
133
+ */
134
+ weight?: number;
135
+ /**
136
+ * <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.
137
+ * If no value is specified, the default value of <code>0</code> is used.</p>
138
+ */
139
+ base?: number;
140
+ }
141
+ export declare enum LaunchType {
142
+ EC2 = "EC2",
143
+ EXTERNAL = "EXTERNAL",
144
+ FARGATE = "FARGATE"
145
+ }
146
+ /**
147
+ * <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
+ */
149
+ export interface AwsVpcConfiguration {
150
+ /**
151
+ * <p>Specifies the subnets associated with the task. These subnets must all be in the same VPC. You can specify as many as 16 subnets.</p>
152
+ */
153
+ Subnets: string[] | undefined;
154
+ /**
155
+ * <p>Specifies the security groups associated with the task. These security groups must all be in the same VPC. You can specify as many as five security groups.
156
+ * If you do not specify a security group, the default security group for the VPC is used.</p>
157
+ */
158
+ SecurityGroups?: string[];
159
+ /**
160
+ * <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>
161
+ */
162
+ AssignPublicIp?: AssignPublicIp | string;
163
+ }
164
+ /**
165
+ * <p>Specifies the network configuration for an ECS task.</p>
166
+ */
167
+ export interface NetworkConfiguration {
168
+ /**
169
+ * <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>
170
+ */
171
+ awsvpcConfiguration?: AwsVpcConfiguration;
172
+ }
173
+ export declare enum PlacementConstraintType {
174
+ DISTINCT_INSTANCE = "distinctInstance",
175
+ MEMBER_OF = "memberOf"
176
+ }
177
+ /**
178
+ * <p>An object representing a constraint on task placement.</p>
179
+ */
180
+ export interface PlacementConstraint {
181
+ /**
182
+ * <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>
183
+ */
184
+ type?: PlacementConstraintType | string;
185
+ /**
186
+ * <p>A cluster query language expression to apply to the constraint. You cannot specify an expression if the constraint type is <code>distinctInstance</code>.
187
+ * 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>
188
+ */
189
+ expression?: string;
190
+ }
191
+ export declare enum PlacementStrategyType {
192
+ BINPACK = "binpack",
193
+ RANDOM = "random",
194
+ SPREAD = "spread"
195
+ }
196
+ /**
197
+ * <p>The task placement strategy for a task or service.</p>
198
+ */
199
+ export interface PlacementStrategy {
200
+ /**
201
+ * <p>The type of placement strategy. The random placement strategy randomly places tasks on available candidates. The spread placement strategy spreads placement across available candidates
202
+ * evenly based on the field parameter. The binpack strategy places tasks on available candidates that have the least available amount of the resource that is specified with the field parameter.
203
+ * 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>
204
+ */
205
+ type?: PlacementStrategyType | string;
206
+ /**
207
+ * <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),
208
+ * 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
209
+ * <code>cpu</code> and <code>memory</code>. For the random placement strategy, this field is not used.</p>
210
+ */
211
+ field?: string;
212
+ }
213
+ export declare enum PropagateTags {
214
+ TASK_DEFINITION = "TASK_DEFINITION"
215
+ }
216
+ /**
217
+ * <p>The templated target type for the Amazon ECS <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_RunTask.html">
218
+ * <code>RunTask</code>
219
+ * </a> API operation.</p>
220
+ */
221
+ export interface EcsParameters {
222
+ /**
223
+ * <p>The Amazon Resource Name (ARN) of the task definition to use if the event target is an Amazon ECS task.</p>
224
+ */
225
+ TaskDefinitionArn: string | undefined;
226
+ /**
227
+ * <p>The number of tasks to create based on <code>TaskDefinition</code>. The default is <code>1</code>.</p>
228
+ */
229
+ TaskCount?: number;
230
+ /**
231
+ * <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.
232
+ * The <code>FARGATE</code> value is supported only in the Regions where Fargate with Amazon ECS is supported.
233
+ * 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>
234
+ */
235
+ LaunchType?: LaunchType | string;
236
+ /**
237
+ * <p>This structure specifies the network configuration for an ECS task.</p>
238
+ */
239
+ NetworkConfiguration?: NetworkConfiguration;
240
+ /**
241
+ * <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>
242
+ */
243
+ PlatformVersion?: string;
244
+ /**
245
+ * <p>Specifies an ECS task group for the task. The maximum length is 255 characters.</p>
246
+ */
247
+ Group?: string;
248
+ /**
249
+ * <p>The capacity provider strategy to use for the task.</p>
250
+ */
251
+ CapacityProviderStrategy?: CapacityProviderStrategyItem[];
252
+ /**
253
+ * <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>
254
+ * in the <i>Amazon ECS Developer Guide</i>.</p>
255
+ */
256
+ EnableECSManagedTags?: boolean;
257
+ /**
258
+ * <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>
259
+ */
260
+ EnableExecuteCommand?: boolean;
261
+ /**
262
+ * <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>
263
+ */
264
+ PlacementConstraints?: PlacementConstraint[];
265
+ /**
266
+ * <p>The task placement strategy for a task or service.</p>
267
+ */
268
+ PlacementStrategy?: PlacementStrategy[];
269
+ /**
270
+ * <p>Specifies whether to propagate the tags from the task definition to the task. If no value is specified, the tags are not propagated.
271
+ * 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">
272
+ * <code>TagResource</code>
273
+ * </a>
274
+ * API action.
275
+ * </p>
276
+ */
277
+ PropagateTags?: PropagateTags | string;
278
+ /**
279
+ * <p>The reference ID to use for the task.</p>
280
+ */
281
+ ReferenceId?: string;
282
+ /**
283
+ * <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.
284
+ * For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_RunTask.html">
285
+ * <code>RunTask</code>
286
+ * </a> in the <i>Amazon ECS API Reference</i>.</p>
287
+ */
288
+ Tags?: Record<string, string>[];
289
+ }
290
+ /**
291
+ * <p>The templated target type for the EventBridge <a href="https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_PutEvents.html">
292
+ * <code>PutEvents</code>
293
+ * </a> API operation.</p>
294
+ */
295
+ export interface EventBridgeParameters {
296
+ /**
297
+ * <p>A free-form string, with a maximum of 128 characters, used to decide what fields to expect in the event detail.</p>
298
+ */
299
+ DetailType: string | undefined;
300
+ /**
301
+ * <p>The source of the event.</p>
302
+ */
303
+ Source: string | undefined;
304
+ }
305
+ /**
306
+ * <p>The templated target type for the Amazon Kinesis <a href="kinesis/latest/APIReference/API_PutRecord.html">
307
+ * <code>PutRecord</code>
308
+ * </a> API operation.</p>
309
+ */
310
+ export interface KinesisParameters {
311
+ /**
312
+ * <p>Specifies the shard to which EventBridge Scheduler sends the event. For more information, see <a href="https://docs.aws.amazon.com/streams/latest/dev/key-concepts.html">Amazon Kinesis Data Streams terminology and concepts</a> in the
313
+ * <i>Amazon Kinesis Streams Developer Guide</i>.</p>
314
+ */
315
+ PartitionKey: string | undefined;
316
+ }
317
+ /**
318
+ * <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
+ */
320
+ export interface RetryPolicy {
321
+ /**
322
+ * <p>The maximum amount of time, in seconds, to continue to make retry attempts.</p>
323
+ */
324
+ MaximumEventAgeInSeconds?: number;
325
+ /**
326
+ * <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
327
+ * until the duration of the <code>MaximumEventAgeInSeconds</code> is reached.</p>
328
+ */
329
+ MaximumRetryAttempts?: number;
330
+ }
331
+ /**
332
+ * <p>The name and value pair of a parameter to use to start execution of a SageMaker Model Building Pipeline.</p>
333
+ */
334
+ export interface SageMakerPipelineParameter {
335
+ /**
336
+ * <p>Name of parameter to start execution of a SageMaker Model Building Pipeline.</p>
337
+ */
338
+ Name: string | undefined;
339
+ /**
340
+ * <p>Value of parameter to start execution of a SageMaker Model Building Pipeline.</p>
341
+ */
342
+ Value: string | undefined;
343
+ }
344
+ /**
345
+ * <p>The templated target type for the Amazon SageMaker <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_StartPipelineExecution.html">
346
+ * <code>StartPipelineExecution</code>
347
+ * </a> API operation.</p>
348
+ */
349
+ export interface SageMakerPipelineParameters {
350
+ /**
351
+ * <p>List of parameter names and values to use when executing the SageMaker Model Building Pipeline.</p>
352
+ */
353
+ PipelineParameterList?: SageMakerPipelineParameter[];
354
+ }
355
+ /**
356
+ * <p>The templated target type for the Amazon SQS <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_SendMessage.html">
357
+ * <code>SendMessage</code>
358
+ * </a> API operation.
359
+ * Contains the message group ID to use when the target is a FIFO queue. If you specify an Amazon SQS FIFO queue as a target, the queue must have content-based deduplication enabled.
360
+ * For more information, see <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/using-messagededuplicationid-property.html">Using the Amazon SQS message deduplication ID</a> in the
361
+ * <i>Amazon SQS Developer Guide</i>.
362
+ * </p>
363
+ */
364
+ export interface SqsParameters {
365
+ /**
366
+ * <p>The FIFO message group ID to use as the target.</p>
367
+ */
368
+ MessageGroupId?: string;
369
+ }
370
+ /**
371
+ * <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
+ * 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
+ */
374
+ export interface Target {
375
+ /**
376
+ * <p>The Amazon Resource Name (ARN) of the target.</p>
377
+ */
378
+ Arn: string | undefined;
379
+ /**
380
+ * <p>The Amazon Resource Name (ARN) of the IAM role that EventBridge Scheduler will use for this target when the schedule is invoked.</p>
381
+ */
382
+ RoleArn: string | undefined;
383
+ /**
384
+ * <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>
385
+ */
386
+ DeadLetterConfig?: DeadLetterConfig;
387
+ /**
388
+ * <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>
389
+ */
390
+ RetryPolicy?: RetryPolicy;
391
+ /**
392
+ * <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,
393
+ * 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
394
+ * delivers a default notification to the target.</p>
395
+ */
396
+ Input?: string;
397
+ /**
398
+ * <p>The templated target type for the Amazon ECS <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_RunTask.html">
399
+ * <code>RunTask</code>
400
+ * </a> API operation.</p>
401
+ */
402
+ EcsParameters?: EcsParameters;
403
+ /**
404
+ * <p>The templated target type for the EventBridge <a href="https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_PutEvents.html">
405
+ * <code>PutEvents</code>
406
+ * </a> API operation.</p>
407
+ */
408
+ EventBridgeParameters?: EventBridgeParameters;
409
+ /**
410
+ * <p>The templated target type for the Amazon Kinesis <a href="kinesis/latest/APIReference/API_PutRecord.html">
411
+ * <code>PutRecord</code>
412
+ * </a> API operation.</p>
413
+ */
414
+ KinesisParameters?: KinesisParameters;
415
+ /**
416
+ * <p>The templated target type for the Amazon SageMaker <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_StartPipelineExecution.html">
417
+ * <code>StartPipelineExecution</code>
418
+ * </a> API operation.</p>
419
+ */
420
+ SageMakerPipelineParameters?: SageMakerPipelineParameters;
421
+ /**
422
+ * <p>The templated target type for the Amazon SQS <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_SendMessage.html">
423
+ * <code>SendMessage</code>
424
+ * </a> API operation.
425
+ * Contains the message group ID to use when the target is a FIFO queue. If you specify an Amazon SQS FIFO queue as a target, the queue must have content-based deduplication enabled.
426
+ * For more information, see <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/using-messagededuplicationid-property.html">Using the Amazon SQS message deduplication ID</a> in the
427
+ * <i>Amazon SQS Developer Guide</i>.</p>
428
+ */
429
+ SqsParameters?: SqsParameters;
430
+ }
431
+ export interface CreateScheduleInput {
432
+ /**
433
+ * <p>The name of the schedule that you are creating.</p>
434
+ */
435
+ Name: string | undefined;
436
+ /**
437
+ * <p>The name of the schedule group to associate with this schedule. If you omit this, the default schedule group is used.</p>
438
+ */
439
+ GroupName?: string;
440
+ /**
441
+ * <p>
442
+ * The expression that defines when the schedule runs. The following formats are supported.
443
+ * </p>
444
+ * <ul>
445
+ * <li>
446
+ * <p>
447
+ * <code>at</code> expression - <code>at(yyyy-mm-ddThh:mm:ss)</code>
448
+ * </p>
449
+ * </li>
450
+ * <li>
451
+ * <p>
452
+ * <code>rate</code> expression - <code>rate(unit value)</code>
453
+ * </p>
454
+ * </li>
455
+ * <li>
456
+ * <p>
457
+ * <code>cron</code> expression - <code>cron(fields)</code>
458
+ * </p>
459
+ * </li>
460
+ * </ul>
461
+ * <p>
462
+ * You can use <code>at</code> expressions to create one-time schedules that invoke a target once, at the time and in the time zone, that you specify.
463
+ * You can use <code>rate</code> and <code>cron</code> expressions to create recurring schedules. Rate-based schedules are useful when you want to invoke a target
464
+ * at regular intervals, such as every 15 minutes or every five days. Cron-based schedules are useful when you want to invoke a target periodically at a specific time,
465
+ * such as at 8:00 am (UTC+0) every 1st day of the month.
466
+ * </p>
467
+ * <p>
468
+ * A <code>cron</code> expression consists of six fields separated by white spaces: <code>(minutes hours day_of_month month day_of_week year)</code>.
469
+ * </p>
470
+ * <p>
471
+ * A <code>rate</code> expression consists of a <i>value</i> as a positive integer, and a <i>unit</i> with the following options:
472
+ * <code>minute</code> | <code>minutes</code> | <code>hour</code> | <code>hours</code> | <code>day</code> | <code>days</code>
473
+ * </p>
474
+ * <p>
475
+ * For more information and examples, see <a href="https://docs.aws.amazon.com/scheduler/latest/UserGuide/schedule-types.html">Schedule types on EventBridge Scheduler</a> in the <i>EventBridge Scheduler User Guide</i>.
476
+ * </p>
477
+ */
478
+ ScheduleExpression: string | undefined;
479
+ /**
480
+ * <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.
481
+ * EventBridge Scheduler ignores <code>StartDate</code> for one-time schedules.</p>
482
+ */
483
+ StartDate?: Date;
484
+ /**
485
+ * <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.
486
+ * EventBridge Scheduler ignores <code>EndDate</code> for one-time schedules.</p>
487
+ */
488
+ EndDate?: Date;
489
+ /**
490
+ * <p>The description you specify for the schedule.</p>
491
+ */
492
+ Description?: string;
493
+ /**
494
+ * <p>The timezone in which the scheduling expression is evaluated.</p>
495
+ */
496
+ ScheduleExpressionTimezone?: string;
497
+ /**
498
+ * <p>Specifies whether the schedule is enabled or disabled.</p>
499
+ */
500
+ State?: ScheduleState | string;
501
+ /**
502
+ * <p>The Amazon Resource Name (ARN) for the customer managed KMS key that EventBridge Scheduler will use to encrypt and decrypt your data.</p>
503
+ */
504
+ KmsKeyArn?: string;
505
+ /**
506
+ * <p>The schedule's target.</p>
507
+ */
508
+ Target: Target | undefined;
509
+ /**
510
+ * <p>Allows you to configure a time window during which EventBridge Scheduler invokes the schedule.</p>
511
+ */
512
+ FlexibleTimeWindow: FlexibleTimeWindow | undefined;
513
+ /**
514
+ * <p>
515
+ * Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token,
516
+ * EventBridge Scheduler uses a randomly generated token for the request to ensure idempotency.
517
+ * </p>
518
+ */
519
+ ClientToken?: string;
520
+ }
521
+ export interface CreateScheduleOutput {
522
+ /**
523
+ * <p>The Amazon Resource Name (ARN) of the schedule.</p>
524
+ */
525
+ ScheduleArn: string | undefined;
526
+ }
527
+ /**
528
+ * <p>The request exceeds a service quota.</p>
529
+ */
530
+ export declare class ServiceQuotaExceededException extends __BaseException {
531
+ readonly name: "ServiceQuotaExceededException";
532
+ readonly $fault: "client";
533
+ Message: string | undefined;
534
+ /**
535
+ * @internal
536
+ */
537
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
538
+ }
539
+ export interface DeleteScheduleInput {
540
+ /**
541
+ * <p>The name of the schedule to delete.</p>
542
+ */
543
+ Name: string | undefined;
544
+ /**
545
+ * <p>The name of the schedule group associated with this schedule. If you omit this, the default schedule group is used.</p>
546
+ */
547
+ GroupName?: string;
548
+ /**
549
+ * <p>
550
+ * Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token,
551
+ * EventBridge Scheduler uses a randomly generated token for the request to ensure idempotency.
552
+ * </p>
553
+ */
554
+ ClientToken?: string;
555
+ }
556
+ export interface DeleteScheduleOutput {
557
+ }
558
+ export interface GetScheduleInput {
559
+ /**
560
+ * <p>The name of the schedule to retrieve.</p>
561
+ */
562
+ Name: string | undefined;
563
+ /**
564
+ * <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>
565
+ */
566
+ GroupName?: string;
567
+ }
568
+ export interface GetScheduleOutput {
569
+ /**
570
+ * <p>The Amazon Resource Name (ARN) of the schedule.</p>
571
+ */
572
+ Arn?: string;
573
+ /**
574
+ * <p>The name of the schedule group associated with this schedule.</p>
575
+ */
576
+ GroupName?: string;
577
+ /**
578
+ * <p>The name of the schedule.</p>
579
+ */
580
+ Name?: string;
581
+ /**
582
+ * <p>
583
+ * The expression that defines when the schedule runs. The following formats are supported.
584
+ * </p>
585
+ * <ul>
586
+ * <li>
587
+ * <p>
588
+ * <code>at</code> expression - <code>at(yyyy-mm-ddThh:mm:ss)</code>
589
+ * </p>
590
+ * </li>
591
+ * <li>
592
+ * <p>
593
+ * <code>rate</code> expression - <code>rate(unit value)</code>
594
+ * </p>
595
+ * </li>
596
+ * <li>
597
+ * <p>
598
+ * <code>cron</code> expression - <code>cron(fields)</code>
599
+ * </p>
600
+ * </li>
601
+ * </ul>
602
+ * <p>
603
+ * You can use <code>at</code> expressions to create one-time schedules that invoke a target once, at the time and in the time zone, that you specify.
604
+ * You can use <code>rate</code> and <code>cron</code> expressions to create recurring schedules. Rate-based schedules are useful when you want to invoke a target
605
+ * at regular intervals, such as every 15 minutes or every five days. Cron-based schedules are useful when you want to invoke a target periodically at a specific time,
606
+ * such as at 8:00 am (UTC+0) every 1st day of the month.
607
+ * </p>
608
+ * <p>
609
+ * A <code>cron</code> expression consists of six fields separated by white spaces: <code>(minutes hours day_of_month month day_of_week year)</code>.
610
+ * </p>
611
+ * <p>
612
+ * A <code>rate</code> expression consists of a <i>value</i> as a positive integer, and a <i>unit</i> with the following options:
613
+ * <code>minute</code> | <code>minutes</code> | <code>hour</code> | <code>hours</code> | <code>day</code> | <code>days</code>
614
+ * </p>
615
+ * <p>
616
+ * For more information and examples, see <a href="https://docs.aws.amazon.com/scheduler/latest/UserGuide/schedule-types.html">Schedule types on EventBridge Scheduler</a> in the <i>EventBridge Scheduler User Guide</i>.
617
+ * </p>
618
+ */
619
+ ScheduleExpression?: string;
620
+ /**
621
+ * <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.
622
+ * EventBridge Scheduler ignores <code>StartDate</code> for one-time schedules.</p>
623
+ */
624
+ StartDate?: Date;
625
+ /**
626
+ * <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.
627
+ * EventBridge Scheduler ignores <code>EndDate</code> for one-time schedules.</p>
628
+ */
629
+ EndDate?: Date;
630
+ /**
631
+ * <p>The description of the schedule.</p>
632
+ */
633
+ Description?: string;
634
+ /**
635
+ * <p>The timezone in which the scheduling expression is evaluated.</p>
636
+ */
637
+ ScheduleExpressionTimezone?: string;
638
+ /**
639
+ * <p>Specifies whether the schedule is enabled or disabled.</p>
640
+ */
641
+ State?: ScheduleState | string;
642
+ /**
643
+ * <p>The time at which the schedule was created.</p>
644
+ */
645
+ CreationDate?: Date;
646
+ /**
647
+ * <p>The time at which the schedule was last modified.</p>
648
+ */
649
+ LastModificationDate?: Date;
650
+ /**
651
+ * <p>The ARN for a customer managed KMS Key that is be used to encrypt and decrypt your data.</p>
652
+ */
653
+ KmsKeyArn?: string;
654
+ /**
655
+ * <p>The schedule target.</p>
656
+ */
657
+ Target?: Target;
658
+ /**
659
+ * <p>Allows you to configure a time window during which EventBridge Scheduler invokes the schedule.</p>
660
+ */
661
+ FlexibleTimeWindow?: FlexibleTimeWindow;
662
+ }
663
+ export interface ListSchedulesInput {
664
+ /**
665
+ * <p>If specified, only lists the schedules whose associated schedule group matches the given filter.</p>
666
+ */
667
+ GroupName?: string;
668
+ /**
669
+ * <p>Schedule name prefix to return the filtered list of resources.</p>
670
+ */
671
+ NamePrefix?: string;
672
+ /**
673
+ * <p>If specified, only lists the schedules whose current state matches the given filter.</p>
674
+ */
675
+ State?: ScheduleState | string;
676
+ /**
677
+ * <p>The token returned by a previous call to retrieve the next set of results.</p>
678
+ */
679
+ NextToken?: string;
680
+ /**
681
+ * <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>
682
+ */
683
+ MaxResults?: number;
684
+ }
685
+ /**
686
+ * <p>The details of a target.</p>
687
+ */
688
+ export interface TargetSummary {
689
+ /**
690
+ * <p>The Amazon Resource Name (ARN) of the target.</p>
691
+ */
692
+ Arn: string | undefined;
693
+ }
694
+ /**
695
+ * <p>The details of a schedule.</p>
696
+ */
697
+ export interface ScheduleSummary {
698
+ /**
699
+ * <p>The Amazon Resource Name (ARN) of the schedule.</p>
700
+ */
701
+ Arn?: string;
702
+ /**
703
+ * <p>The name of the schedule.</p>
704
+ */
705
+ Name?: string;
706
+ /**
707
+ * <p>The name of the schedule group associated with this schedule.</p>
708
+ */
709
+ GroupName?: string;
710
+ /**
711
+ * <p>Specifies whether the schedule is enabled or disabled.</p>
712
+ */
713
+ State?: ScheduleState | string;
714
+ /**
715
+ * <p>The time at which the schedule was created.</p>
716
+ */
717
+ CreationDate?: Date;
718
+ /**
719
+ * <p>The time at which the schedule was last modified.</p>
720
+ */
721
+ LastModificationDate?: Date;
722
+ /**
723
+ * <p>The schedule's target details.</p>
724
+ */
725
+ Target?: TargetSummary;
726
+ }
727
+ export interface ListSchedulesOutput {
728
+ /**
729
+ * <p>Indicates whether there are additional results to retrieve. If the value is null, there are no more results.</p>
730
+ */
731
+ NextToken?: string;
732
+ /**
733
+ * <p>The schedules that match the specified criteria.</p>
734
+ */
735
+ Schedules: ScheduleSummary[] | undefined;
736
+ }
737
+ export interface UpdateScheduleInput {
738
+ /**
739
+ * <p>The name of the schedule that you are updating.</p>
740
+ */
741
+ Name: string | undefined;
742
+ /**
743
+ * <p>The name of the schedule group with which the schedule is associated. You must provide this value in order for EventBridge Scheduler to find the schedule you want to update.
744
+ * If you omit this value, EventBridge Scheduler assumes the group is associated to the default group.</p>
745
+ */
746
+ GroupName?: string;
747
+ /**
748
+ * <p>
749
+ * The expression that defines when the schedule runs. The following formats are supported.
750
+ * </p>
751
+ * <ul>
752
+ * <li>
753
+ * <p>
754
+ * <code>at</code> expression - <code>at(yyyy-mm-ddThh:mm:ss)</code>
755
+ * </p>
756
+ * </li>
757
+ * <li>
758
+ * <p>
759
+ * <code>rate</code> expression - <code>rate(unit value)</code>
760
+ * </p>
761
+ * </li>
762
+ * <li>
763
+ * <p>
764
+ * <code>cron</code> expression - <code>cron(fields)</code>
765
+ * </p>
766
+ * </li>
767
+ * </ul>
768
+ * <p>
769
+ * You can use <code>at</code> expressions to create one-time schedules that invoke a target once, at the time and in the time zone, that you specify.
770
+ * You can use <code>rate</code> and <code>cron</code> expressions to create recurring schedules. Rate-based schedules are useful when you want to invoke a target
771
+ * at regular intervals, such as every 15 minutes or every five days. Cron-based schedules are useful when you want to invoke a target periodically at a specific time,
772
+ * such as at 8:00 am (UTC+0) every 1st day of the month.
773
+ * </p>
774
+ * <p>
775
+ * A <code>cron</code> expression consists of six fields separated by white spaces: <code>(minutes hours day_of_month month day_of_week year)</code>.
776
+ * </p>
777
+ * <p>
778
+ * A <code>rate</code> expression consists of a <i>value</i> as a positive integer, and a <i>unit</i> with the following options:
779
+ * <code>minute</code> | <code>minutes</code> | <code>hour</code> | <code>hours</code> | <code>day</code> | <code>days</code>
780
+ * </p>
781
+ * <p>
782
+ * For more information and examples, see <a href="https://docs.aws.amazon.com/scheduler/latest/UserGuide/schedule-types.html">Schedule types on EventBridge Scheduler</a> in the <i>EventBridge Scheduler User Guide</i>.
783
+ * </p>
784
+ */
785
+ ScheduleExpression: string | undefined;
786
+ /**
787
+ * <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.
788
+ * EventBridge Scheduler ignores <code>StartDate</code> for one-time schedules.</p>
789
+ */
790
+ StartDate?: Date;
791
+ /**
792
+ * <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.
793
+ * EventBridge Scheduler ignores <code>EndDate</code> for one-time schedules.</p>
794
+ */
795
+ EndDate?: Date;
796
+ /**
797
+ * <p>The description you specify for the schedule.</p>
798
+ */
799
+ Description?: string;
800
+ /**
801
+ * <p>The timezone in which the scheduling expression is evaluated.</p>
802
+ */
803
+ ScheduleExpressionTimezone?: string;
804
+ /**
805
+ * <p>Specifies whether the schedule is enabled or disabled.</p>
806
+ */
807
+ State?: ScheduleState | string;
808
+ /**
809
+ * <p>The ARN for the customer managed KMS key that that you want EventBridge Scheduler to use to encrypt and decrypt your data.</p>
810
+ */
811
+ KmsKeyArn?: string;
812
+ /**
813
+ * <p>The schedule target. You can use this operation to change the target that your schedule invokes.</p>
814
+ */
815
+ Target: Target | undefined;
816
+ /**
817
+ * <p>Allows you to configure a time window during which EventBridge Scheduler invokes the schedule.</p>
818
+ */
819
+ FlexibleTimeWindow: FlexibleTimeWindow | undefined;
820
+ /**
821
+ * <p>
822
+ * Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token,
823
+ * EventBridge Scheduler uses a randomly generated token for the request to ensure idempotency.
824
+ * </p>
825
+ */
826
+ ClientToken?: string;
827
+ }
828
+ export interface UpdateScheduleOutput {
829
+ /**
830
+ * <p>The Amazon Resource Name (ARN) of the schedule that you updated.</p>
831
+ */
832
+ ScheduleArn: string | undefined;
833
+ }
834
+ export interface CreateScheduleGroupInput {
835
+ /**
836
+ * <p>The name of the schedule group that you are creating.</p>
837
+ */
838
+ Name: string | undefined;
839
+ /**
840
+ * <p>The list of tags to associate with the schedule group.</p>
841
+ */
842
+ Tags?: Tag[];
843
+ /**
844
+ * <p>
845
+ * Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token,
846
+ * EventBridge Scheduler uses a randomly generated token for the request to ensure idempotency.
847
+ * </p>
848
+ */
849
+ ClientToken?: string;
850
+ }
851
+ export interface CreateScheduleGroupOutput {
852
+ /**
853
+ * <p>The Amazon Resource Name (ARN) of the schedule group.</p>
854
+ */
855
+ ScheduleGroupArn: string | undefined;
856
+ }
857
+ export interface DeleteScheduleGroupInput {
858
+ /**
859
+ * <p>The name of the schedule group to delete.</p>
860
+ */
861
+ Name: string | undefined;
862
+ /**
863
+ * <p>
864
+ * Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token,
865
+ * EventBridge Scheduler uses a randomly generated token for the request to ensure idempotency.
866
+ * </p>
867
+ */
868
+ ClientToken?: string;
869
+ }
870
+ export interface DeleteScheduleGroupOutput {
871
+ }
872
+ export interface GetScheduleGroupInput {
873
+ /**
874
+ * <p>The name of the schedule group to retrieve.</p>
875
+ */
876
+ Name: string | undefined;
877
+ }
878
+ export declare enum ScheduleGroupState {
879
+ ACTIVE = "ACTIVE",
880
+ DELETING = "DELETING"
881
+ }
882
+ export interface GetScheduleGroupOutput {
883
+ /**
884
+ * <p>The Amazon Resource Name (ARN) of the schedule group.</p>
885
+ */
886
+ Arn?: string;
887
+ /**
888
+ * <p>The name of the schedule group.</p>
889
+ */
890
+ Name?: string;
891
+ /**
892
+ * <p>Specifies the state of the schedule group.</p>
893
+ */
894
+ State?: ScheduleGroupState | string;
895
+ /**
896
+ * <p>The time at which the schedule group was created.</p>
897
+ */
898
+ CreationDate?: Date;
899
+ /**
900
+ * <p>The time at which the schedule group was last modified.</p>
901
+ */
902
+ LastModificationDate?: Date;
903
+ }
904
+ export interface ListScheduleGroupsInput {
905
+ /**
906
+ * <p>The name prefix that you can use to return a filtered list of your schedule groups.</p>
907
+ */
908
+ NamePrefix?: string;
909
+ /**
910
+ * <p>The token returned by a previous call to retrieve the next set of results.</p>
911
+ */
912
+ NextToken?: string;
913
+ /**
914
+ * <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>
915
+ */
916
+ MaxResults?: number;
917
+ }
918
+ /**
919
+ * <p>The details of a schedule group.</p>
920
+ */
921
+ export interface ScheduleGroupSummary {
922
+ /**
923
+ * <p>The Amazon Resource Name (ARN) of the schedule group.</p>
924
+ */
925
+ Arn?: string;
926
+ /**
927
+ * <p>The name of the schedule group.</p>
928
+ */
929
+ Name?: string;
930
+ /**
931
+ * <p>Specifies the state of the schedule group.</p>
932
+ */
933
+ State?: ScheduleGroupState | string;
934
+ /**
935
+ * <p>The time at which the schedule group was created.</p>
936
+ */
937
+ CreationDate?: Date;
938
+ /**
939
+ * <p>The time at which the schedule group was last modified.</p>
940
+ */
941
+ LastModificationDate?: Date;
942
+ }
943
+ export interface ListScheduleGroupsOutput {
944
+ /**
945
+ * <p>Indicates whether there are additional results to retrieve. If the value is null, there are no more results.</p>
946
+ */
947
+ NextToken?: string;
948
+ /**
949
+ * <p>The schedule groups that match the specified criteria.</p>
950
+ */
951
+ ScheduleGroups: ScheduleGroupSummary[] | undefined;
952
+ }
953
+ export interface TagResourceInput {
954
+ /**
955
+ * <p>The Amazon Resource Name (ARN) of the schedule group that you are adding tags to.</p>
956
+ */
957
+ ResourceArn: string | undefined;
958
+ /**
959
+ * <p>The list of tags to associate with the schedule group.</p>
960
+ */
961
+ Tags: Tag[] | undefined;
962
+ }
963
+ export interface TagResourceOutput {
964
+ }
965
+ export interface UntagResourceInput {
966
+ /**
967
+ * <p>The Amazon Resource Name (ARN) of the schedule group from which you are removing tags.</p>
968
+ */
969
+ ResourceArn: string | undefined;
970
+ /**
971
+ * <p>The list of tag keys to remove from the resource.</p>
972
+ */
973
+ TagKeys: string[] | undefined;
974
+ }
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
+ /**
1038
+ * @internal
1039
+ */
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;