@aws-sdk/client-scheduler 3.299.0 → 3.300.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.
@@ -26,6 +26,98 @@ export interface CreateScheduleCommandOutput extends CreateScheduleOutput, __Met
26
26
  * import { SchedulerClient, CreateScheduleCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
27
27
  * // const { SchedulerClient, CreateScheduleCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
28
28
  * const client = new SchedulerClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * GroupName: "STRING_VALUE",
32
+ * ScheduleExpression: "STRING_VALUE", // required
33
+ * StartDate: new Date("TIMESTAMP"),
34
+ * EndDate: new Date("TIMESTAMP"),
35
+ * Description: "STRING_VALUE",
36
+ * ScheduleExpressionTimezone: "STRING_VALUE",
37
+ * State: "STRING_VALUE",
38
+ * KmsKeyArn: "STRING_VALUE",
39
+ * Target: {
40
+ * Arn: "STRING_VALUE", // required
41
+ * RoleArn: "STRING_VALUE", // required
42
+ * DeadLetterConfig: {
43
+ * Arn: "STRING_VALUE",
44
+ * },
45
+ * RetryPolicy: {
46
+ * MaximumEventAgeInSeconds: Number("int"),
47
+ * MaximumRetryAttempts: Number("int"),
48
+ * },
49
+ * Input: "STRING_VALUE",
50
+ * EcsParameters: {
51
+ * TaskDefinitionArn: "STRING_VALUE", // required
52
+ * TaskCount: Number("int"),
53
+ * LaunchType: "STRING_VALUE",
54
+ * NetworkConfiguration: {
55
+ * awsvpcConfiguration: {
56
+ * Subnets: [ // required
57
+ * "STRING_VALUE",
58
+ * ],
59
+ * SecurityGroups: [
60
+ * "STRING_VALUE",
61
+ * ],
62
+ * AssignPublicIp: "STRING_VALUE",
63
+ * },
64
+ * },
65
+ * PlatformVersion: "STRING_VALUE",
66
+ * Group: "STRING_VALUE",
67
+ * CapacityProviderStrategy: [
68
+ * {
69
+ * capacityProvider: "STRING_VALUE", // required
70
+ * weight: Number("int"),
71
+ * base: Number("int"),
72
+ * },
73
+ * ],
74
+ * EnableECSManagedTags: true || false,
75
+ * EnableExecuteCommand: true || false,
76
+ * PlacementConstraints: [
77
+ * {
78
+ * type: "STRING_VALUE",
79
+ * expression: "STRING_VALUE",
80
+ * },
81
+ * ],
82
+ * PlacementStrategy: [
83
+ * {
84
+ * type: "STRING_VALUE",
85
+ * field: "STRING_VALUE",
86
+ * },
87
+ * ],
88
+ * PropagateTags: "STRING_VALUE",
89
+ * ReferenceId: "STRING_VALUE",
90
+ * Tags: [
91
+ * {
92
+ * "<keys>": "STRING_VALUE",
93
+ * },
94
+ * ],
95
+ * },
96
+ * EventBridgeParameters: {
97
+ * DetailType: "STRING_VALUE", // required
98
+ * Source: "STRING_VALUE", // required
99
+ * },
100
+ * KinesisParameters: {
101
+ * PartitionKey: "STRING_VALUE", // required
102
+ * },
103
+ * SageMakerPipelineParameters: {
104
+ * PipelineParameterList: [
105
+ * {
106
+ * Name: "STRING_VALUE", // required
107
+ * Value: "STRING_VALUE", // required
108
+ * },
109
+ * ],
110
+ * },
111
+ * SqsParameters: {
112
+ * MessageGroupId: "STRING_VALUE",
113
+ * },
114
+ * },
115
+ * FlexibleTimeWindow: {
116
+ * Mode: "STRING_VALUE", // required
117
+ * MaximumWindowInMinutes: Number("int"),
118
+ * },
119
+ * ClientToken: "STRING_VALUE",
120
+ * };
29
121
  * const command = new CreateScheduleCommand(input);
30
122
  * const response = await client.send(command);
31
123
  * ```
@@ -26,6 +26,16 @@ export interface CreateScheduleGroupCommandOutput extends CreateScheduleGroupOut
26
26
  * import { SchedulerClient, CreateScheduleGroupCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
27
27
  * // const { SchedulerClient, CreateScheduleGroupCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
28
28
  * const client = new SchedulerClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * Tags: [
32
+ * {
33
+ * Key: "STRING_VALUE", // required
34
+ * Value: "STRING_VALUE", // required
35
+ * },
36
+ * ],
37
+ * ClientToken: "STRING_VALUE",
38
+ * };
29
39
  * const command = new CreateScheduleGroupCommand(input);
30
40
  * const response = await client.send(command);
31
41
  * ```
@@ -26,6 +26,11 @@ export interface DeleteScheduleCommandOutput extends DeleteScheduleOutput, __Met
26
26
  * import { SchedulerClient, DeleteScheduleCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
27
27
  * // const { SchedulerClient, DeleteScheduleCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
28
28
  * const client = new SchedulerClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * GroupName: "STRING_VALUE",
32
+ * ClientToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new DeleteScheduleCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -34,6 +34,10 @@ export interface DeleteScheduleGroupCommandOutput extends DeleteScheduleGroupOut
34
34
  * import { SchedulerClient, DeleteScheduleGroupCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
35
35
  * // const { SchedulerClient, DeleteScheduleGroupCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
36
36
  * const client = new SchedulerClient(config);
37
+ * const input = {
38
+ * Name: "STRING_VALUE", // required
39
+ * ClientToken: "STRING_VALUE",
40
+ * };
37
41
  * const command = new DeleteScheduleGroupCommand(input);
38
42
  * const response = await client.send(command);
39
43
  * ```
@@ -26,6 +26,10 @@ export interface GetScheduleCommandOutput extends GetScheduleOutput, __MetadataB
26
26
  * import { SchedulerClient, GetScheduleCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
27
27
  * // const { SchedulerClient, GetScheduleCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
28
28
  * const client = new SchedulerClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * GroupName: "STRING_VALUE",
32
+ * };
29
33
  * const command = new GetScheduleCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface GetScheduleGroupCommandOutput extends GetScheduleGroupOutput, _
26
26
  * import { SchedulerClient, GetScheduleGroupCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
27
27
  * // const { SchedulerClient, GetScheduleGroupCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
28
28
  * const client = new SchedulerClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetScheduleGroupCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,11 @@ export interface ListScheduleGroupsCommandOutput extends ListScheduleGroupsOutpu
26
26
  * import { SchedulerClient, ListScheduleGroupsCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
27
27
  * // const { SchedulerClient, ListScheduleGroupsCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
28
28
  * const client = new SchedulerClient(config);
29
+ * const input = {
30
+ * NamePrefix: "STRING_VALUE",
31
+ * NextToken: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * };
29
34
  * const command = new ListScheduleGroupsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,13 @@ export interface ListSchedulesCommandOutput extends ListSchedulesOutput, __Metad
26
26
  * import { SchedulerClient, ListSchedulesCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
27
27
  * // const { SchedulerClient, ListSchedulesCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
28
28
  * const client = new SchedulerClient(config);
29
+ * const input = {
30
+ * GroupName: "STRING_VALUE",
31
+ * NamePrefix: "STRING_VALUE",
32
+ * State: "STRING_VALUE",
33
+ * NextToken: "STRING_VALUE",
34
+ * MaxResults: Number("int"),
35
+ * };
29
36
  * const command = new ListSchedulesCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
26
26
  * import { SchedulerClient, ListTagsForResourceCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
27
27
  * // const { SchedulerClient, ListTagsForResourceCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
28
28
  * const client = new SchedulerClient(config);
29
+ * const input = {
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ListTagsForResourceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,15 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
26
26
  * import { SchedulerClient, TagResourceCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
27
27
  * // const { SchedulerClient, TagResourceCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
28
28
  * const client = new SchedulerClient(config);
29
+ * const input = {
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * Tags: [ // required
32
+ * {
33
+ * Key: "STRING_VALUE", // required
34
+ * Value: "STRING_VALUE", // required
35
+ * },
36
+ * ],
37
+ * };
29
38
  * const command = new TagResourceCommand(input);
30
39
  * const response = await client.send(command);
31
40
  * ```
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
26
26
  * import { SchedulerClient, UntagResourceCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
27
27
  * // const { SchedulerClient, UntagResourceCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
28
28
  * const client = new SchedulerClient(config);
29
+ * const input = {
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * TagKeys: [ // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -34,6 +34,98 @@ export interface UpdateScheduleCommandOutput extends UpdateScheduleOutput, __Met
34
34
  * import { SchedulerClient, UpdateScheduleCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
35
35
  * // const { SchedulerClient, UpdateScheduleCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
36
36
  * const client = new SchedulerClient(config);
37
+ * const input = {
38
+ * Name: "STRING_VALUE", // required
39
+ * GroupName: "STRING_VALUE",
40
+ * ScheduleExpression: "STRING_VALUE", // required
41
+ * StartDate: new Date("TIMESTAMP"),
42
+ * EndDate: new Date("TIMESTAMP"),
43
+ * Description: "STRING_VALUE",
44
+ * ScheduleExpressionTimezone: "STRING_VALUE",
45
+ * State: "STRING_VALUE",
46
+ * KmsKeyArn: "STRING_VALUE",
47
+ * Target: {
48
+ * Arn: "STRING_VALUE", // required
49
+ * RoleArn: "STRING_VALUE", // required
50
+ * DeadLetterConfig: {
51
+ * Arn: "STRING_VALUE",
52
+ * },
53
+ * RetryPolicy: {
54
+ * MaximumEventAgeInSeconds: Number("int"),
55
+ * MaximumRetryAttempts: Number("int"),
56
+ * },
57
+ * Input: "STRING_VALUE",
58
+ * EcsParameters: {
59
+ * TaskDefinitionArn: "STRING_VALUE", // required
60
+ * TaskCount: Number("int"),
61
+ * LaunchType: "STRING_VALUE",
62
+ * NetworkConfiguration: {
63
+ * awsvpcConfiguration: {
64
+ * Subnets: [ // required
65
+ * "STRING_VALUE",
66
+ * ],
67
+ * SecurityGroups: [
68
+ * "STRING_VALUE",
69
+ * ],
70
+ * AssignPublicIp: "STRING_VALUE",
71
+ * },
72
+ * },
73
+ * PlatformVersion: "STRING_VALUE",
74
+ * Group: "STRING_VALUE",
75
+ * CapacityProviderStrategy: [
76
+ * {
77
+ * capacityProvider: "STRING_VALUE", // required
78
+ * weight: Number("int"),
79
+ * base: Number("int"),
80
+ * },
81
+ * ],
82
+ * EnableECSManagedTags: true || false,
83
+ * EnableExecuteCommand: true || false,
84
+ * PlacementConstraints: [
85
+ * {
86
+ * type: "STRING_VALUE",
87
+ * expression: "STRING_VALUE",
88
+ * },
89
+ * ],
90
+ * PlacementStrategy: [
91
+ * {
92
+ * type: "STRING_VALUE",
93
+ * field: "STRING_VALUE",
94
+ * },
95
+ * ],
96
+ * PropagateTags: "STRING_VALUE",
97
+ * ReferenceId: "STRING_VALUE",
98
+ * Tags: [
99
+ * {
100
+ * "<keys>": "STRING_VALUE",
101
+ * },
102
+ * ],
103
+ * },
104
+ * EventBridgeParameters: {
105
+ * DetailType: "STRING_VALUE", // required
106
+ * Source: "STRING_VALUE", // required
107
+ * },
108
+ * KinesisParameters: {
109
+ * PartitionKey: "STRING_VALUE", // required
110
+ * },
111
+ * SageMakerPipelineParameters: {
112
+ * PipelineParameterList: [
113
+ * {
114
+ * Name: "STRING_VALUE", // required
115
+ * Value: "STRING_VALUE", // required
116
+ * },
117
+ * ],
118
+ * },
119
+ * SqsParameters: {
120
+ * MessageGroupId: "STRING_VALUE",
121
+ * },
122
+ * },
123
+ * FlexibleTimeWindow: {
124
+ * Mode: "STRING_VALUE", // required
125
+ * MaximumWindowInMinutes: Number("int"),
126
+ * },
127
+ * ClientToken: "STRING_VALUE",
128
+ * };
37
129
  * const command = new UpdateScheduleCommand(input);
38
130
  * const response = await client.send(command);
39
131
  * ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-scheduler",
3
3
  "description": "AWS SDK for JavaScript Scheduler Client for Node.js, Browser and React Native",
4
- "version": "3.299.0",
4
+ "version": "3.300.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.300.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.300.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0",
57
57
  "uuid": "^8.3.2"