@aws-sdk/client-cloudwatch-events 3.301.0 → 3.306.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.
- package/dist-cjs/models/models_0.js +78 -92
- package/dist-es/models/models_0.js +78 -92
- package/dist-types/models/models_0.d.ts +148 -78
- package/dist-types/ts3.4/models/models_0.d.ts +101 -78
- package/package.json +34 -34
|
@@ -67,44 +67,39 @@ class ResourceNotFoundException extends CloudWatchEventsServiceException_1.Cloud
|
|
|
67
67
|
}
|
|
68
68
|
}
|
|
69
69
|
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
ReplayState["COMPLETED"] = "COMPLETED";
|
|
104
|
-
ReplayState["FAILED"] = "FAILED";
|
|
105
|
-
ReplayState["RUNNING"] = "RUNNING";
|
|
106
|
-
ReplayState["STARTING"] = "STARTING";
|
|
107
|
-
})(ReplayState = exports.ReplayState || (exports.ReplayState = {}));
|
|
70
|
+
exports.ApiDestinationState = {
|
|
71
|
+
ACTIVE: "ACTIVE",
|
|
72
|
+
INACTIVE: "INACTIVE",
|
|
73
|
+
};
|
|
74
|
+
exports.ApiDestinationHttpMethod = {
|
|
75
|
+
DELETE: "DELETE",
|
|
76
|
+
GET: "GET",
|
|
77
|
+
HEAD: "HEAD",
|
|
78
|
+
OPTIONS: "OPTIONS",
|
|
79
|
+
PATCH: "PATCH",
|
|
80
|
+
POST: "POST",
|
|
81
|
+
PUT: "PUT",
|
|
82
|
+
};
|
|
83
|
+
exports.ArchiveState = {
|
|
84
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
85
|
+
CREATING: "CREATING",
|
|
86
|
+
DISABLED: "DISABLED",
|
|
87
|
+
ENABLED: "ENABLED",
|
|
88
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
89
|
+
UPDATING: "UPDATING",
|
|
90
|
+
};
|
|
91
|
+
exports.AssignPublicIp = {
|
|
92
|
+
DISABLED: "DISABLED",
|
|
93
|
+
ENABLED: "ENABLED",
|
|
94
|
+
};
|
|
95
|
+
exports.ReplayState = {
|
|
96
|
+
CANCELLED: "CANCELLED",
|
|
97
|
+
CANCELLING: "CANCELLING",
|
|
98
|
+
COMPLETED: "COMPLETED",
|
|
99
|
+
FAILED: "FAILED",
|
|
100
|
+
RUNNING: "RUNNING",
|
|
101
|
+
STARTING: "STARTING",
|
|
102
|
+
};
|
|
108
103
|
class IllegalStatusException extends CloudWatchEventsServiceException_1.CloudWatchEventsServiceException {
|
|
109
104
|
constructor(opts) {
|
|
110
105
|
super({
|
|
@@ -157,28 +152,25 @@ class InvalidEventPatternException extends CloudWatchEventsServiceException_1.Cl
|
|
|
157
152
|
}
|
|
158
153
|
}
|
|
159
154
|
exports.InvalidEventPatternException = InvalidEventPatternException;
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
ConnectionState["DELETING"] = "DELETING";
|
|
180
|
-
ConnectionState["UPDATING"] = "UPDATING";
|
|
181
|
-
})(ConnectionState = exports.ConnectionState || (exports.ConnectionState = {}));
|
|
155
|
+
exports.ConnectionAuthorizationType = {
|
|
156
|
+
API_KEY: "API_KEY",
|
|
157
|
+
BASIC: "BASIC",
|
|
158
|
+
OAUTH_CLIENT_CREDENTIALS: "OAUTH_CLIENT_CREDENTIALS",
|
|
159
|
+
};
|
|
160
|
+
exports.ConnectionOAuthHttpMethod = {
|
|
161
|
+
GET: "GET",
|
|
162
|
+
POST: "POST",
|
|
163
|
+
PUT: "PUT",
|
|
164
|
+
};
|
|
165
|
+
exports.ConnectionState = {
|
|
166
|
+
AUTHORIZED: "AUTHORIZED",
|
|
167
|
+
AUTHORIZING: "AUTHORIZING",
|
|
168
|
+
CREATING: "CREATING",
|
|
169
|
+
DEAUTHORIZED: "DEAUTHORIZED",
|
|
170
|
+
DEAUTHORIZING: "DEAUTHORIZING",
|
|
171
|
+
DELETING: "DELETING",
|
|
172
|
+
UPDATING: "UPDATING",
|
|
173
|
+
};
|
|
182
174
|
class ManagedRuleException extends CloudWatchEventsServiceException_1.CloudWatchEventsServiceException {
|
|
183
175
|
constructor(opts) {
|
|
184
176
|
super({
|
|
@@ -192,38 +184,32 @@ class ManagedRuleException extends CloudWatchEventsServiceException_1.CloudWatch
|
|
|
192
184
|
}
|
|
193
185
|
}
|
|
194
186
|
exports.ManagedRuleException = ManagedRuleException;
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
PlacementStrategyType["SPREAD"] = "spread";
|
|
222
|
-
})(PlacementStrategyType = exports.PlacementStrategyType || (exports.PlacementStrategyType = {}));
|
|
223
|
-
var PropagateTags;
|
|
224
|
-
(function (PropagateTags) {
|
|
225
|
-
PropagateTags["TASK_DEFINITION"] = "TASK_DEFINITION";
|
|
226
|
-
})(PropagateTags = exports.PropagateTags || (exports.PropagateTags = {}));
|
|
187
|
+
exports.EventSourceState = {
|
|
188
|
+
ACTIVE: "ACTIVE",
|
|
189
|
+
DELETED: "DELETED",
|
|
190
|
+
PENDING: "PENDING",
|
|
191
|
+
};
|
|
192
|
+
exports.RuleState = {
|
|
193
|
+
DISABLED: "DISABLED",
|
|
194
|
+
ENABLED: "ENABLED",
|
|
195
|
+
};
|
|
196
|
+
exports.LaunchType = {
|
|
197
|
+
EC2: "EC2",
|
|
198
|
+
EXTERNAL: "EXTERNAL",
|
|
199
|
+
FARGATE: "FARGATE",
|
|
200
|
+
};
|
|
201
|
+
exports.PlacementConstraintType = {
|
|
202
|
+
DISTINCT_INSTANCE: "distinctInstance",
|
|
203
|
+
MEMBER_OF: "memberOf",
|
|
204
|
+
};
|
|
205
|
+
exports.PlacementStrategyType = {
|
|
206
|
+
BINPACK: "binpack",
|
|
207
|
+
RANDOM: "random",
|
|
208
|
+
SPREAD: "spread",
|
|
209
|
+
};
|
|
210
|
+
exports.PropagateTags = {
|
|
211
|
+
TASK_DEFINITION: "TASK_DEFINITION",
|
|
212
|
+
};
|
|
227
213
|
class PolicyLengthExceededException extends CloudWatchEventsServiceException_1.CloudWatchEventsServiceException {
|
|
228
214
|
constructor(opts) {
|
|
229
215
|
super({
|
|
@@ -59,44 +59,39 @@ export class ResourceNotFoundException extends __BaseException {
|
|
|
59
59
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
60
60
|
}
|
|
61
61
|
}
|
|
62
|
-
export
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
ReplayState["COMPLETED"] = "COMPLETED";
|
|
96
|
-
ReplayState["FAILED"] = "FAILED";
|
|
97
|
-
ReplayState["RUNNING"] = "RUNNING";
|
|
98
|
-
ReplayState["STARTING"] = "STARTING";
|
|
99
|
-
})(ReplayState || (ReplayState = {}));
|
|
62
|
+
export const ApiDestinationState = {
|
|
63
|
+
ACTIVE: "ACTIVE",
|
|
64
|
+
INACTIVE: "INACTIVE",
|
|
65
|
+
};
|
|
66
|
+
export const ApiDestinationHttpMethod = {
|
|
67
|
+
DELETE: "DELETE",
|
|
68
|
+
GET: "GET",
|
|
69
|
+
HEAD: "HEAD",
|
|
70
|
+
OPTIONS: "OPTIONS",
|
|
71
|
+
PATCH: "PATCH",
|
|
72
|
+
POST: "POST",
|
|
73
|
+
PUT: "PUT",
|
|
74
|
+
};
|
|
75
|
+
export const ArchiveState = {
|
|
76
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
77
|
+
CREATING: "CREATING",
|
|
78
|
+
DISABLED: "DISABLED",
|
|
79
|
+
ENABLED: "ENABLED",
|
|
80
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
81
|
+
UPDATING: "UPDATING",
|
|
82
|
+
};
|
|
83
|
+
export const AssignPublicIp = {
|
|
84
|
+
DISABLED: "DISABLED",
|
|
85
|
+
ENABLED: "ENABLED",
|
|
86
|
+
};
|
|
87
|
+
export const ReplayState = {
|
|
88
|
+
CANCELLED: "CANCELLED",
|
|
89
|
+
CANCELLING: "CANCELLING",
|
|
90
|
+
COMPLETED: "COMPLETED",
|
|
91
|
+
FAILED: "FAILED",
|
|
92
|
+
RUNNING: "RUNNING",
|
|
93
|
+
STARTING: "STARTING",
|
|
94
|
+
};
|
|
100
95
|
export class IllegalStatusException extends __BaseException {
|
|
101
96
|
constructor(opts) {
|
|
102
97
|
super({
|
|
@@ -145,28 +140,25 @@ export class InvalidEventPatternException extends __BaseException {
|
|
|
145
140
|
Object.setPrototypeOf(this, InvalidEventPatternException.prototype);
|
|
146
141
|
}
|
|
147
142
|
}
|
|
148
|
-
export
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
ConnectionState["DELETING"] = "DELETING";
|
|
168
|
-
ConnectionState["UPDATING"] = "UPDATING";
|
|
169
|
-
})(ConnectionState || (ConnectionState = {}));
|
|
143
|
+
export const ConnectionAuthorizationType = {
|
|
144
|
+
API_KEY: "API_KEY",
|
|
145
|
+
BASIC: "BASIC",
|
|
146
|
+
OAUTH_CLIENT_CREDENTIALS: "OAUTH_CLIENT_CREDENTIALS",
|
|
147
|
+
};
|
|
148
|
+
export const ConnectionOAuthHttpMethod = {
|
|
149
|
+
GET: "GET",
|
|
150
|
+
POST: "POST",
|
|
151
|
+
PUT: "PUT",
|
|
152
|
+
};
|
|
153
|
+
export const ConnectionState = {
|
|
154
|
+
AUTHORIZED: "AUTHORIZED",
|
|
155
|
+
AUTHORIZING: "AUTHORIZING",
|
|
156
|
+
CREATING: "CREATING",
|
|
157
|
+
DEAUTHORIZED: "DEAUTHORIZED",
|
|
158
|
+
DEAUTHORIZING: "DEAUTHORIZING",
|
|
159
|
+
DELETING: "DELETING",
|
|
160
|
+
UPDATING: "UPDATING",
|
|
161
|
+
};
|
|
170
162
|
export class ManagedRuleException extends __BaseException {
|
|
171
163
|
constructor(opts) {
|
|
172
164
|
super({
|
|
@@ -179,38 +171,32 @@ export class ManagedRuleException extends __BaseException {
|
|
|
179
171
|
Object.setPrototypeOf(this, ManagedRuleException.prototype);
|
|
180
172
|
}
|
|
181
173
|
}
|
|
182
|
-
export
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
PlacementStrategyType["SPREAD"] = "spread";
|
|
209
|
-
})(PlacementStrategyType || (PlacementStrategyType = {}));
|
|
210
|
-
export var PropagateTags;
|
|
211
|
-
(function (PropagateTags) {
|
|
212
|
-
PropagateTags["TASK_DEFINITION"] = "TASK_DEFINITION";
|
|
213
|
-
})(PropagateTags || (PropagateTags = {}));
|
|
174
|
+
export const EventSourceState = {
|
|
175
|
+
ACTIVE: "ACTIVE",
|
|
176
|
+
DELETED: "DELETED",
|
|
177
|
+
PENDING: "PENDING",
|
|
178
|
+
};
|
|
179
|
+
export const RuleState = {
|
|
180
|
+
DISABLED: "DISABLED",
|
|
181
|
+
ENABLED: "ENABLED",
|
|
182
|
+
};
|
|
183
|
+
export const LaunchType = {
|
|
184
|
+
EC2: "EC2",
|
|
185
|
+
EXTERNAL: "EXTERNAL",
|
|
186
|
+
FARGATE: "FARGATE",
|
|
187
|
+
};
|
|
188
|
+
export const PlacementConstraintType = {
|
|
189
|
+
DISTINCT_INSTANCE: "distinctInstance",
|
|
190
|
+
MEMBER_OF: "memberOf",
|
|
191
|
+
};
|
|
192
|
+
export const PlacementStrategyType = {
|
|
193
|
+
BINPACK: "binpack",
|
|
194
|
+
RANDOM: "random",
|
|
195
|
+
SPREAD: "spread",
|
|
196
|
+
};
|
|
197
|
+
export const PropagateTags = {
|
|
198
|
+
TASK_DEFINITION: "TASK_DEFINITION",
|
|
199
|
+
};
|
|
214
200
|
export class PolicyLengthExceededException extends __BaseException {
|
|
215
201
|
constructor(opts) {
|
|
216
202
|
super({
|
|
@@ -71,23 +71,33 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
71
71
|
}
|
|
72
72
|
/**
|
|
73
73
|
* @public
|
|
74
|
+
* @enum
|
|
74
75
|
*/
|
|
75
|
-
export declare
|
|
76
|
-
ACTIVE
|
|
77
|
-
INACTIVE
|
|
78
|
-
}
|
|
76
|
+
export declare const ApiDestinationState: {
|
|
77
|
+
readonly ACTIVE: "ACTIVE";
|
|
78
|
+
readonly INACTIVE: "INACTIVE";
|
|
79
|
+
};
|
|
79
80
|
/**
|
|
80
81
|
* @public
|
|
81
82
|
*/
|
|
82
|
-
export
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
83
|
+
export type ApiDestinationState = (typeof ApiDestinationState)[keyof typeof ApiDestinationState];
|
|
84
|
+
/**
|
|
85
|
+
* @public
|
|
86
|
+
* @enum
|
|
87
|
+
*/
|
|
88
|
+
export declare const ApiDestinationHttpMethod: {
|
|
89
|
+
readonly DELETE: "DELETE";
|
|
90
|
+
readonly GET: "GET";
|
|
91
|
+
readonly HEAD: "HEAD";
|
|
92
|
+
readonly OPTIONS: "OPTIONS";
|
|
93
|
+
readonly PATCH: "PATCH";
|
|
94
|
+
readonly POST: "POST";
|
|
95
|
+
readonly PUT: "PUT";
|
|
96
|
+
};
|
|
97
|
+
/**
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
export type ApiDestinationHttpMethod = (typeof ApiDestinationHttpMethod)[keyof typeof ApiDestinationHttpMethod];
|
|
91
101
|
/**
|
|
92
102
|
* @public
|
|
93
103
|
* <p>Contains details about an API destination.</p>
|
|
@@ -132,15 +142,20 @@ export interface ApiDestination {
|
|
|
132
142
|
}
|
|
133
143
|
/**
|
|
134
144
|
* @public
|
|
145
|
+
* @enum
|
|
135
146
|
*/
|
|
136
|
-
export declare
|
|
137
|
-
CREATE_FAILED
|
|
138
|
-
CREATING
|
|
139
|
-
DISABLED
|
|
140
|
-
ENABLED
|
|
141
|
-
UPDATE_FAILED
|
|
142
|
-
UPDATING
|
|
143
|
-
}
|
|
147
|
+
export declare const ArchiveState: {
|
|
148
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
149
|
+
readonly CREATING: "CREATING";
|
|
150
|
+
readonly DISABLED: "DISABLED";
|
|
151
|
+
readonly ENABLED: "ENABLED";
|
|
152
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
153
|
+
readonly UPDATING: "UPDATING";
|
|
154
|
+
};
|
|
155
|
+
/**
|
|
156
|
+
* @public
|
|
157
|
+
*/
|
|
158
|
+
export type ArchiveState = (typeof ArchiveState)[keyof typeof ArchiveState];
|
|
144
159
|
/**
|
|
145
160
|
* @public
|
|
146
161
|
* <p>An <code>Archive</code> object that contains details about an archive.</p>
|
|
@@ -182,11 +197,16 @@ export interface Archive {
|
|
|
182
197
|
}
|
|
183
198
|
/**
|
|
184
199
|
* @public
|
|
200
|
+
* @enum
|
|
185
201
|
*/
|
|
186
|
-
export declare
|
|
187
|
-
DISABLED
|
|
188
|
-
ENABLED
|
|
189
|
-
}
|
|
202
|
+
export declare const AssignPublicIp: {
|
|
203
|
+
readonly DISABLED: "DISABLED";
|
|
204
|
+
readonly ENABLED: "ENABLED";
|
|
205
|
+
};
|
|
206
|
+
/**
|
|
207
|
+
* @public
|
|
208
|
+
*/
|
|
209
|
+
export type AssignPublicIp = (typeof AssignPublicIp)[keyof typeof AssignPublicIp];
|
|
190
210
|
/**
|
|
191
211
|
* @public
|
|
192
212
|
*/
|
|
@@ -198,15 +218,20 @@ export interface CancelReplayRequest {
|
|
|
198
218
|
}
|
|
199
219
|
/**
|
|
200
220
|
* @public
|
|
221
|
+
* @enum
|
|
201
222
|
*/
|
|
202
|
-
export declare
|
|
203
|
-
CANCELLED
|
|
204
|
-
CANCELLING
|
|
205
|
-
COMPLETED
|
|
206
|
-
FAILED
|
|
207
|
-
RUNNING
|
|
208
|
-
STARTING
|
|
209
|
-
}
|
|
223
|
+
export declare const ReplayState: {
|
|
224
|
+
readonly CANCELLED: "CANCELLED";
|
|
225
|
+
readonly CANCELLING: "CANCELLING";
|
|
226
|
+
readonly COMPLETED: "COMPLETED";
|
|
227
|
+
readonly FAILED: "FAILED";
|
|
228
|
+
readonly RUNNING: "RUNNING";
|
|
229
|
+
readonly STARTING: "STARTING";
|
|
230
|
+
};
|
|
231
|
+
/**
|
|
232
|
+
* @public
|
|
233
|
+
*/
|
|
234
|
+
export type ReplayState = (typeof ReplayState)[keyof typeof ReplayState];
|
|
210
235
|
/**
|
|
211
236
|
* @public
|
|
212
237
|
*/
|
|
@@ -374,12 +399,17 @@ export declare class InvalidEventPatternException extends __BaseException {
|
|
|
374
399
|
}
|
|
375
400
|
/**
|
|
376
401
|
* @public
|
|
402
|
+
* @enum
|
|
377
403
|
*/
|
|
378
|
-
export declare
|
|
379
|
-
API_KEY
|
|
380
|
-
BASIC
|
|
381
|
-
OAUTH_CLIENT_CREDENTIALS
|
|
382
|
-
}
|
|
404
|
+
export declare const ConnectionAuthorizationType: {
|
|
405
|
+
readonly API_KEY: "API_KEY";
|
|
406
|
+
readonly BASIC: "BASIC";
|
|
407
|
+
readonly OAUTH_CLIENT_CREDENTIALS: "OAUTH_CLIENT_CREDENTIALS";
|
|
408
|
+
};
|
|
409
|
+
/**
|
|
410
|
+
* @public
|
|
411
|
+
*/
|
|
412
|
+
export type ConnectionAuthorizationType = (typeof ConnectionAuthorizationType)[keyof typeof ConnectionAuthorizationType];
|
|
383
413
|
/**
|
|
384
414
|
* @public
|
|
385
415
|
* <p>Contains the API key authorization parameters for the connection.</p>
|
|
@@ -501,12 +531,17 @@ export interface CreateConnectionOAuthClientRequestParameters {
|
|
|
501
531
|
}
|
|
502
532
|
/**
|
|
503
533
|
* @public
|
|
534
|
+
* @enum
|
|
504
535
|
*/
|
|
505
|
-
export declare
|
|
506
|
-
GET
|
|
507
|
-
POST
|
|
508
|
-
PUT
|
|
509
|
-
}
|
|
536
|
+
export declare const ConnectionOAuthHttpMethod: {
|
|
537
|
+
readonly GET: "GET";
|
|
538
|
+
readonly POST: "POST";
|
|
539
|
+
readonly PUT: "PUT";
|
|
540
|
+
};
|
|
541
|
+
/**
|
|
542
|
+
* @public
|
|
543
|
+
*/
|
|
544
|
+
export type ConnectionOAuthHttpMethod = (typeof ConnectionOAuthHttpMethod)[keyof typeof ConnectionOAuthHttpMethod];
|
|
510
545
|
/**
|
|
511
546
|
* @public
|
|
512
547
|
* <p>Contains the OAuth authorization parameters to use for the connection.</p>
|
|
@@ -584,16 +619,21 @@ export interface CreateConnectionRequest {
|
|
|
584
619
|
}
|
|
585
620
|
/**
|
|
586
621
|
* @public
|
|
622
|
+
* @enum
|
|
587
623
|
*/
|
|
588
|
-
export declare
|
|
589
|
-
AUTHORIZED
|
|
590
|
-
AUTHORIZING
|
|
591
|
-
CREATING
|
|
592
|
-
DEAUTHORIZED
|
|
593
|
-
DEAUTHORIZING
|
|
594
|
-
DELETING
|
|
595
|
-
UPDATING
|
|
596
|
-
}
|
|
624
|
+
export declare const ConnectionState: {
|
|
625
|
+
readonly AUTHORIZED: "AUTHORIZED";
|
|
626
|
+
readonly AUTHORIZING: "AUTHORIZING";
|
|
627
|
+
readonly CREATING: "CREATING";
|
|
628
|
+
readonly DEAUTHORIZED: "DEAUTHORIZED";
|
|
629
|
+
readonly DEAUTHORIZING: "DEAUTHORIZING";
|
|
630
|
+
readonly DELETING: "DELETING";
|
|
631
|
+
readonly UPDATING: "UPDATING";
|
|
632
|
+
};
|
|
633
|
+
/**
|
|
634
|
+
* @public
|
|
635
|
+
*/
|
|
636
|
+
export type ConnectionState = (typeof ConnectionState)[keyof typeof ConnectionState];
|
|
597
637
|
/**
|
|
598
638
|
* @public
|
|
599
639
|
*/
|
|
@@ -1154,12 +1194,17 @@ export interface DescribeEventSourceRequest {
|
|
|
1154
1194
|
}
|
|
1155
1195
|
/**
|
|
1156
1196
|
* @public
|
|
1197
|
+
* @enum
|
|
1157
1198
|
*/
|
|
1158
|
-
export declare
|
|
1159
|
-
ACTIVE
|
|
1160
|
-
DELETED
|
|
1161
|
-
PENDING
|
|
1162
|
-
}
|
|
1199
|
+
export declare const EventSourceState: {
|
|
1200
|
+
readonly ACTIVE: "ACTIVE";
|
|
1201
|
+
readonly DELETED: "DELETED";
|
|
1202
|
+
readonly PENDING: "PENDING";
|
|
1203
|
+
};
|
|
1204
|
+
/**
|
|
1205
|
+
* @public
|
|
1206
|
+
*/
|
|
1207
|
+
export type EventSourceState = (typeof EventSourceState)[keyof typeof EventSourceState];
|
|
1163
1208
|
/**
|
|
1164
1209
|
* @public
|
|
1165
1210
|
*/
|
|
@@ -1308,11 +1353,16 @@ export interface DescribeRuleRequest {
|
|
|
1308
1353
|
}
|
|
1309
1354
|
/**
|
|
1310
1355
|
* @public
|
|
1356
|
+
* @enum
|
|
1311
1357
|
*/
|
|
1312
|
-
export declare
|
|
1313
|
-
DISABLED
|
|
1314
|
-
ENABLED
|
|
1315
|
-
}
|
|
1358
|
+
export declare const RuleState: {
|
|
1359
|
+
readonly DISABLED: "DISABLED";
|
|
1360
|
+
readonly ENABLED: "ENABLED";
|
|
1361
|
+
};
|
|
1362
|
+
/**
|
|
1363
|
+
* @public
|
|
1364
|
+
*/
|
|
1365
|
+
export type RuleState = (typeof RuleState)[keyof typeof RuleState];
|
|
1316
1366
|
/**
|
|
1317
1367
|
* @public
|
|
1318
1368
|
*/
|
|
@@ -2106,12 +2156,17 @@ export interface CapacityProviderStrategyItem {
|
|
|
2106
2156
|
}
|
|
2107
2157
|
/**
|
|
2108
2158
|
* @public
|
|
2159
|
+
* @enum
|
|
2109
2160
|
*/
|
|
2110
|
-
export declare
|
|
2111
|
-
EC2
|
|
2112
|
-
EXTERNAL
|
|
2113
|
-
FARGATE
|
|
2114
|
-
}
|
|
2161
|
+
export declare const LaunchType: {
|
|
2162
|
+
readonly EC2: "EC2";
|
|
2163
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
2164
|
+
readonly FARGATE: "FARGATE";
|
|
2165
|
+
};
|
|
2166
|
+
/**
|
|
2167
|
+
* @public
|
|
2168
|
+
*/
|
|
2169
|
+
export type LaunchType = (typeof LaunchType)[keyof typeof LaunchType];
|
|
2115
2170
|
/**
|
|
2116
2171
|
* @public
|
|
2117
2172
|
* <p>This structure specifies the VPC subnets and security groups for the task, and whether a
|
|
@@ -2151,11 +2206,16 @@ export interface NetworkConfiguration {
|
|
|
2151
2206
|
}
|
|
2152
2207
|
/**
|
|
2153
2208
|
* @public
|
|
2209
|
+
* @enum
|
|
2154
2210
|
*/
|
|
2155
|
-
export declare
|
|
2156
|
-
DISTINCT_INSTANCE
|
|
2157
|
-
MEMBER_OF
|
|
2158
|
-
}
|
|
2211
|
+
export declare const PlacementConstraintType: {
|
|
2212
|
+
readonly DISTINCT_INSTANCE: "distinctInstance";
|
|
2213
|
+
readonly MEMBER_OF: "memberOf";
|
|
2214
|
+
};
|
|
2215
|
+
/**
|
|
2216
|
+
* @public
|
|
2217
|
+
*/
|
|
2218
|
+
export type PlacementConstraintType = (typeof PlacementConstraintType)[keyof typeof PlacementConstraintType];
|
|
2159
2219
|
/**
|
|
2160
2220
|
* @public
|
|
2161
2221
|
* <p>An object representing a constraint on task placement. To learn more, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-constraints.html">Task Placement Constraints</a> in the Amazon Elastic Container Service Developer
|
|
@@ -2177,12 +2237,17 @@ export interface PlacementConstraint {
|
|
|
2177
2237
|
}
|
|
2178
2238
|
/**
|
|
2179
2239
|
* @public
|
|
2240
|
+
* @enum
|
|
2180
2241
|
*/
|
|
2181
|
-
export declare
|
|
2182
|
-
BINPACK
|
|
2183
|
-
RANDOM
|
|
2184
|
-
SPREAD
|
|
2185
|
-
}
|
|
2242
|
+
export declare const PlacementStrategyType: {
|
|
2243
|
+
readonly BINPACK: "binpack";
|
|
2244
|
+
readonly RANDOM: "random";
|
|
2245
|
+
readonly SPREAD: "spread";
|
|
2246
|
+
};
|
|
2247
|
+
/**
|
|
2248
|
+
* @public
|
|
2249
|
+
*/
|
|
2250
|
+
export type PlacementStrategyType = (typeof PlacementStrategyType)[keyof typeof PlacementStrategyType];
|
|
2186
2251
|
/**
|
|
2187
2252
|
* @public
|
|
2188
2253
|
* <p>The task placement strategy for a task or service. To learn more, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-strategies.html">Task Placement Strategies</a> in the Amazon Elastic Container Service Service Developer
|
|
@@ -2209,10 +2274,15 @@ export interface PlacementStrategy {
|
|
|
2209
2274
|
}
|
|
2210
2275
|
/**
|
|
2211
2276
|
* @public
|
|
2277
|
+
* @enum
|
|
2212
2278
|
*/
|
|
2213
|
-
export declare
|
|
2214
|
-
TASK_DEFINITION
|
|
2215
|
-
}
|
|
2279
|
+
export declare const PropagateTags: {
|
|
2280
|
+
readonly TASK_DEFINITION: "TASK_DEFINITION";
|
|
2281
|
+
};
|
|
2282
|
+
/**
|
|
2283
|
+
* @public
|
|
2284
|
+
*/
|
|
2285
|
+
export type PropagateTags = (typeof PropagateTags)[keyof typeof PropagateTags];
|
|
2216
2286
|
/**
|
|
2217
2287
|
* @public
|
|
2218
2288
|
* <p>The custom parameters to be used when the target is an Amazon ECS task.</p>
|
|
@@ -39,19 +39,23 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
39
39
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
40
40
|
);
|
|
41
41
|
}
|
|
42
|
-
export declare
|
|
43
|
-
ACTIVE
|
|
44
|
-
INACTIVE
|
|
45
|
-
}
|
|
46
|
-
export
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
42
|
+
export declare const ApiDestinationState: {
|
|
43
|
+
readonly ACTIVE: "ACTIVE";
|
|
44
|
+
readonly INACTIVE: "INACTIVE";
|
|
45
|
+
};
|
|
46
|
+
export type ApiDestinationState =
|
|
47
|
+
(typeof ApiDestinationState)[keyof typeof ApiDestinationState];
|
|
48
|
+
export declare const ApiDestinationHttpMethod: {
|
|
49
|
+
readonly DELETE: "DELETE";
|
|
50
|
+
readonly GET: "GET";
|
|
51
|
+
readonly HEAD: "HEAD";
|
|
52
|
+
readonly OPTIONS: "OPTIONS";
|
|
53
|
+
readonly PATCH: "PATCH";
|
|
54
|
+
readonly POST: "POST";
|
|
55
|
+
readonly PUT: "PUT";
|
|
56
|
+
};
|
|
57
|
+
export type ApiDestinationHttpMethod =
|
|
58
|
+
(typeof ApiDestinationHttpMethod)[keyof typeof ApiDestinationHttpMethod];
|
|
55
59
|
export interface ApiDestination {
|
|
56
60
|
ApiDestinationArn?: string;
|
|
57
61
|
Name?: string;
|
|
@@ -63,14 +67,15 @@ export interface ApiDestination {
|
|
|
63
67
|
CreationTime?: Date;
|
|
64
68
|
LastModifiedTime?: Date;
|
|
65
69
|
}
|
|
66
|
-
export declare
|
|
67
|
-
CREATE_FAILED
|
|
68
|
-
CREATING
|
|
69
|
-
DISABLED
|
|
70
|
-
ENABLED
|
|
71
|
-
UPDATE_FAILED
|
|
72
|
-
UPDATING
|
|
73
|
-
}
|
|
70
|
+
export declare const ArchiveState: {
|
|
71
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
72
|
+
readonly CREATING: "CREATING";
|
|
73
|
+
readonly DISABLED: "DISABLED";
|
|
74
|
+
readonly ENABLED: "ENABLED";
|
|
75
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
76
|
+
readonly UPDATING: "UPDATING";
|
|
77
|
+
};
|
|
78
|
+
export type ArchiveState = (typeof ArchiveState)[keyof typeof ArchiveState];
|
|
74
79
|
export interface Archive {
|
|
75
80
|
ArchiveName?: string;
|
|
76
81
|
EventSourceArn?: string;
|
|
@@ -81,21 +86,24 @@ export interface Archive {
|
|
|
81
86
|
EventCount?: number;
|
|
82
87
|
CreationTime?: Date;
|
|
83
88
|
}
|
|
84
|
-
export declare
|
|
85
|
-
DISABLED
|
|
86
|
-
ENABLED
|
|
87
|
-
}
|
|
89
|
+
export declare const AssignPublicIp: {
|
|
90
|
+
readonly DISABLED: "DISABLED";
|
|
91
|
+
readonly ENABLED: "ENABLED";
|
|
92
|
+
};
|
|
93
|
+
export type AssignPublicIp =
|
|
94
|
+
(typeof AssignPublicIp)[keyof typeof AssignPublicIp];
|
|
88
95
|
export interface CancelReplayRequest {
|
|
89
96
|
ReplayName: string | undefined;
|
|
90
97
|
}
|
|
91
|
-
export declare
|
|
92
|
-
CANCELLED
|
|
93
|
-
CANCELLING
|
|
94
|
-
COMPLETED
|
|
95
|
-
FAILED
|
|
96
|
-
RUNNING
|
|
97
|
-
STARTING
|
|
98
|
-
}
|
|
98
|
+
export declare const ReplayState: {
|
|
99
|
+
readonly CANCELLED: "CANCELLED";
|
|
100
|
+
readonly CANCELLING: "CANCELLING";
|
|
101
|
+
readonly COMPLETED: "COMPLETED";
|
|
102
|
+
readonly FAILED: "FAILED";
|
|
103
|
+
readonly RUNNING: "RUNNING";
|
|
104
|
+
readonly STARTING: "STARTING";
|
|
105
|
+
};
|
|
106
|
+
export type ReplayState = (typeof ReplayState)[keyof typeof ReplayState];
|
|
99
107
|
export interface CancelReplayResponse {
|
|
100
108
|
ReplayArn?: string;
|
|
101
109
|
State?: ReplayState | string;
|
|
@@ -156,11 +164,13 @@ export declare class InvalidEventPatternException extends __BaseException {
|
|
|
156
164
|
opts: __ExceptionOptionType<InvalidEventPatternException, __BaseException>
|
|
157
165
|
);
|
|
158
166
|
}
|
|
159
|
-
export declare
|
|
160
|
-
API_KEY
|
|
161
|
-
BASIC
|
|
162
|
-
OAUTH_CLIENT_CREDENTIALS
|
|
163
|
-
}
|
|
167
|
+
export declare const ConnectionAuthorizationType: {
|
|
168
|
+
readonly API_KEY: "API_KEY";
|
|
169
|
+
readonly BASIC: "BASIC";
|
|
170
|
+
readonly OAUTH_CLIENT_CREDENTIALS: "OAUTH_CLIENT_CREDENTIALS";
|
|
171
|
+
};
|
|
172
|
+
export type ConnectionAuthorizationType =
|
|
173
|
+
(typeof ConnectionAuthorizationType)[keyof typeof ConnectionAuthorizationType];
|
|
164
174
|
export interface CreateConnectionApiKeyAuthRequestParameters {
|
|
165
175
|
ApiKeyName: string | undefined;
|
|
166
176
|
ApiKeyValue: string | undefined;
|
|
@@ -193,11 +203,13 @@ export interface CreateConnectionOAuthClientRequestParameters {
|
|
|
193
203
|
ClientID: string | undefined;
|
|
194
204
|
ClientSecret: string | undefined;
|
|
195
205
|
}
|
|
196
|
-
export declare
|
|
197
|
-
GET
|
|
198
|
-
POST
|
|
199
|
-
PUT
|
|
200
|
-
}
|
|
206
|
+
export declare const ConnectionOAuthHttpMethod: {
|
|
207
|
+
readonly GET: "GET";
|
|
208
|
+
readonly POST: "POST";
|
|
209
|
+
readonly PUT: "PUT";
|
|
210
|
+
};
|
|
211
|
+
export type ConnectionOAuthHttpMethod =
|
|
212
|
+
(typeof ConnectionOAuthHttpMethod)[keyof typeof ConnectionOAuthHttpMethod];
|
|
201
213
|
export interface CreateConnectionOAuthRequestParameters {
|
|
202
214
|
ClientParameters: CreateConnectionOAuthClientRequestParameters | undefined;
|
|
203
215
|
AuthorizationEndpoint: string | undefined;
|
|
@@ -216,15 +228,17 @@ export interface CreateConnectionRequest {
|
|
|
216
228
|
AuthorizationType: ConnectionAuthorizationType | string | undefined;
|
|
217
229
|
AuthParameters: CreateConnectionAuthRequestParameters | undefined;
|
|
218
230
|
}
|
|
219
|
-
export declare
|
|
220
|
-
AUTHORIZED
|
|
221
|
-
AUTHORIZING
|
|
222
|
-
CREATING
|
|
223
|
-
DEAUTHORIZED
|
|
224
|
-
DEAUTHORIZING
|
|
225
|
-
DELETING
|
|
226
|
-
UPDATING
|
|
227
|
-
}
|
|
231
|
+
export declare const ConnectionState: {
|
|
232
|
+
readonly AUTHORIZED: "AUTHORIZED";
|
|
233
|
+
readonly AUTHORIZING: "AUTHORIZING";
|
|
234
|
+
readonly CREATING: "CREATING";
|
|
235
|
+
readonly DEAUTHORIZED: "DEAUTHORIZED";
|
|
236
|
+
readonly DEAUTHORIZING: "DEAUTHORIZING";
|
|
237
|
+
readonly DELETING: "DELETING";
|
|
238
|
+
readonly UPDATING: "UPDATING";
|
|
239
|
+
};
|
|
240
|
+
export type ConnectionState =
|
|
241
|
+
(typeof ConnectionState)[keyof typeof ConnectionState];
|
|
228
242
|
export interface CreateConnectionResponse {
|
|
229
243
|
ConnectionArn?: string;
|
|
230
244
|
ConnectionState?: ConnectionState | string;
|
|
@@ -379,11 +393,13 @@ export interface DescribeEventBusResponse {
|
|
|
379
393
|
export interface DescribeEventSourceRequest {
|
|
380
394
|
Name: string | undefined;
|
|
381
395
|
}
|
|
382
|
-
export declare
|
|
383
|
-
ACTIVE
|
|
384
|
-
DELETED
|
|
385
|
-
PENDING
|
|
386
|
-
}
|
|
396
|
+
export declare const EventSourceState: {
|
|
397
|
+
readonly ACTIVE: "ACTIVE";
|
|
398
|
+
readonly DELETED: "DELETED";
|
|
399
|
+
readonly PENDING: "PENDING";
|
|
400
|
+
};
|
|
401
|
+
export type EventSourceState =
|
|
402
|
+
(typeof EventSourceState)[keyof typeof EventSourceState];
|
|
387
403
|
export interface DescribeEventSourceResponse {
|
|
388
404
|
Arn?: string;
|
|
389
405
|
CreatedBy?: string;
|
|
@@ -424,10 +440,11 @@ export interface DescribeRuleRequest {
|
|
|
424
440
|
Name: string | undefined;
|
|
425
441
|
EventBusName?: string;
|
|
426
442
|
}
|
|
427
|
-
export declare
|
|
428
|
-
DISABLED
|
|
429
|
-
ENABLED
|
|
430
|
-
}
|
|
443
|
+
export declare const RuleState: {
|
|
444
|
+
readonly DISABLED: "DISABLED";
|
|
445
|
+
readonly ENABLED: "ENABLED";
|
|
446
|
+
};
|
|
447
|
+
export type RuleState = (typeof RuleState)[keyof typeof RuleState];
|
|
431
448
|
export interface DescribeRuleResponse {
|
|
432
449
|
Name?: string;
|
|
433
450
|
Arn?: string;
|
|
@@ -633,11 +650,12 @@ export interface CapacityProviderStrategyItem {
|
|
|
633
650
|
weight?: number;
|
|
634
651
|
base?: number;
|
|
635
652
|
}
|
|
636
|
-
export declare
|
|
637
|
-
EC2
|
|
638
|
-
EXTERNAL
|
|
639
|
-
FARGATE
|
|
640
|
-
}
|
|
653
|
+
export declare const LaunchType: {
|
|
654
|
+
readonly EC2: "EC2";
|
|
655
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
656
|
+
readonly FARGATE: "FARGATE";
|
|
657
|
+
};
|
|
658
|
+
export type LaunchType = (typeof LaunchType)[keyof typeof LaunchType];
|
|
641
659
|
export interface AwsVpcConfiguration {
|
|
642
660
|
Subnets: string[] | undefined;
|
|
643
661
|
SecurityGroups?: string[];
|
|
@@ -646,26 +664,31 @@ export interface AwsVpcConfiguration {
|
|
|
646
664
|
export interface NetworkConfiguration {
|
|
647
665
|
awsvpcConfiguration?: AwsVpcConfiguration;
|
|
648
666
|
}
|
|
649
|
-
export declare
|
|
650
|
-
DISTINCT_INSTANCE
|
|
651
|
-
MEMBER_OF
|
|
652
|
-
}
|
|
667
|
+
export declare const PlacementConstraintType: {
|
|
668
|
+
readonly DISTINCT_INSTANCE: "distinctInstance";
|
|
669
|
+
readonly MEMBER_OF: "memberOf";
|
|
670
|
+
};
|
|
671
|
+
export type PlacementConstraintType =
|
|
672
|
+
(typeof PlacementConstraintType)[keyof typeof PlacementConstraintType];
|
|
653
673
|
export interface PlacementConstraint {
|
|
654
674
|
type?: PlacementConstraintType | string;
|
|
655
675
|
expression?: string;
|
|
656
676
|
}
|
|
657
|
-
export declare
|
|
658
|
-
BINPACK
|
|
659
|
-
RANDOM
|
|
660
|
-
SPREAD
|
|
661
|
-
}
|
|
677
|
+
export declare const PlacementStrategyType: {
|
|
678
|
+
readonly BINPACK: "binpack";
|
|
679
|
+
readonly RANDOM: "random";
|
|
680
|
+
readonly SPREAD: "spread";
|
|
681
|
+
};
|
|
682
|
+
export type PlacementStrategyType =
|
|
683
|
+
(typeof PlacementStrategyType)[keyof typeof PlacementStrategyType];
|
|
662
684
|
export interface PlacementStrategy {
|
|
663
685
|
type?: PlacementStrategyType | string;
|
|
664
686
|
field?: string;
|
|
665
687
|
}
|
|
666
|
-
export declare
|
|
667
|
-
TASK_DEFINITION
|
|
668
|
-
}
|
|
688
|
+
export declare const PropagateTags: {
|
|
689
|
+
readonly TASK_DEFINITION: "TASK_DEFINITION";
|
|
690
|
+
};
|
|
691
|
+
export type PropagateTags = (typeof PropagateTags)[keyof typeof PropagateTags];
|
|
669
692
|
export interface EcsParameters {
|
|
670
693
|
TaskDefinitionArn: string | undefined;
|
|
671
694
|
TaskCount?: number;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudwatch-events",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudwatch Events Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.306.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,42 +21,42 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.306.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.306.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.306.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.306.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.306.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.306.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.306.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.306.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.306.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.306.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.306.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.306.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.306.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.306.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.306.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.306.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.306.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.306.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.306.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.306.0",
|
|
44
|
+
"@aws-sdk/types": "3.306.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.306.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.306.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.306.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.306.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.306.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.306.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.306.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|