@aws-sdk/client-eventbridge 3.696.0 → 3.703.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/index.js +65 -0
- package/dist-es/models/models_0.js +26 -0
- package/dist-es/protocols/Aws_json1_1.js +26 -1
- package/dist-types/commands/CreateConnectionCommand.d.ts +21 -1
- package/dist-types/commands/DeauthorizeConnectionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteConnectionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeConnectionCommand.d.ts +13 -1
- package/dist-types/commands/ListConnectionsCommand.d.ts +2 -2
- package/dist-types/commands/PutEventsCommand.d.ts +1 -1
- package/dist-types/commands/PutPermissionCommand.d.ts +3 -4
- package/dist-types/commands/PutRuleCommand.d.ts +3 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -2
- package/dist-types/commands/UpdateConnectionCommand.d.ts +17 -1
- package/dist-types/models/models_0.d.ts +263 -84
- package/dist-types/ts3.4/models/models_0.d.ts +37 -0
- package/package.json +4 -4
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { EventBridgeServiceException as __BaseException } from "./EventBridgeServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
3
10
|
export interface ActivateEventSourceRequest {
|
|
4
11
|
Name: string | undefined;
|
|
5
12
|
}
|
|
@@ -182,6 +189,12 @@ export interface CreateConnectionBasicAuthRequestParameters {
|
|
|
182
189
|
Username: string | undefined;
|
|
183
190
|
Password: string | undefined;
|
|
184
191
|
}
|
|
192
|
+
export interface ConnectivityResourceConfigurationArn {
|
|
193
|
+
ResourceConfigurationArn: string | undefined;
|
|
194
|
+
}
|
|
195
|
+
export interface ConnectivityResourceParameters {
|
|
196
|
+
ResourceParameters: ConnectivityResourceConfigurationArn | undefined;
|
|
197
|
+
}
|
|
185
198
|
export interface ConnectionBodyParameter {
|
|
186
199
|
Key?: string | undefined;
|
|
187
200
|
Value?: string | undefined;
|
|
@@ -226,20 +239,24 @@ export interface CreateConnectionAuthRequestParameters {
|
|
|
226
239
|
| CreateConnectionApiKeyAuthRequestParameters
|
|
227
240
|
| undefined;
|
|
228
241
|
InvocationHttpParameters?: ConnectionHttpParameters | undefined;
|
|
242
|
+
ConnectivityParameters?: ConnectivityResourceParameters | undefined;
|
|
229
243
|
}
|
|
230
244
|
export interface CreateConnectionRequest {
|
|
231
245
|
Name: string | undefined;
|
|
232
246
|
Description?: string | undefined;
|
|
233
247
|
AuthorizationType: ConnectionAuthorizationType | undefined;
|
|
234
248
|
AuthParameters: CreateConnectionAuthRequestParameters | undefined;
|
|
249
|
+
InvocationConnectivityParameters?: ConnectivityResourceParameters | undefined;
|
|
235
250
|
}
|
|
236
251
|
export declare const ConnectionState: {
|
|
252
|
+
readonly ACTIVE: "ACTIVE";
|
|
237
253
|
readonly AUTHORIZED: "AUTHORIZED";
|
|
238
254
|
readonly AUTHORIZING: "AUTHORIZING";
|
|
239
255
|
readonly CREATING: "CREATING";
|
|
240
256
|
readonly DEAUTHORIZED: "DEAUTHORIZED";
|
|
241
257
|
readonly DEAUTHORIZING: "DEAUTHORIZING";
|
|
242
258
|
readonly DELETING: "DELETING";
|
|
259
|
+
readonly FAILED_CONNECTIVITY: "FAILED_CONNECTIVITY";
|
|
243
260
|
readonly UPDATING: "UPDATING";
|
|
244
261
|
};
|
|
245
262
|
export type ConnectionState =
|
|
@@ -250,6 +267,13 @@ export interface CreateConnectionResponse {
|
|
|
250
267
|
CreationTime?: Date | undefined;
|
|
251
268
|
LastModifiedTime?: Date | undefined;
|
|
252
269
|
}
|
|
270
|
+
export declare class ThrottlingException extends __BaseException {
|
|
271
|
+
readonly name: "ThrottlingException";
|
|
272
|
+
readonly $fault: "client";
|
|
273
|
+
constructor(
|
|
274
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
275
|
+
);
|
|
276
|
+
}
|
|
253
277
|
export interface EndpointEventBus {
|
|
254
278
|
EventBusArn: string | undefined;
|
|
255
279
|
}
|
|
@@ -424,6 +448,13 @@ export interface ConnectionApiKeyAuthResponseParameters {
|
|
|
424
448
|
export interface ConnectionBasicAuthResponseParameters {
|
|
425
449
|
Username?: string | undefined;
|
|
426
450
|
}
|
|
451
|
+
export interface DescribeConnectionResourceParameters {
|
|
452
|
+
ResourceConfigurationArn: string | undefined;
|
|
453
|
+
ResourceAssociationArn: string | undefined;
|
|
454
|
+
}
|
|
455
|
+
export interface DescribeConnectionConnectivityParameters {
|
|
456
|
+
ResourceParameters: DescribeConnectionResourceParameters | undefined;
|
|
457
|
+
}
|
|
427
458
|
export interface ConnectionOAuthClientResponseParameters {
|
|
428
459
|
ClientID?: string | undefined;
|
|
429
460
|
}
|
|
@@ -438,11 +469,15 @@ export interface ConnectionAuthResponseParameters {
|
|
|
438
469
|
OAuthParameters?: ConnectionOAuthResponseParameters | undefined;
|
|
439
470
|
ApiKeyAuthParameters?: ConnectionApiKeyAuthResponseParameters | undefined;
|
|
440
471
|
InvocationHttpParameters?: ConnectionHttpParameters | undefined;
|
|
472
|
+
ConnectivityParameters?: DescribeConnectionConnectivityParameters | undefined;
|
|
441
473
|
}
|
|
442
474
|
export interface DescribeConnectionResponse {
|
|
443
475
|
ConnectionArn?: string | undefined;
|
|
444
476
|
Name?: string | undefined;
|
|
445
477
|
Description?: string | undefined;
|
|
478
|
+
InvocationConnectivityParameters?:
|
|
479
|
+
| DescribeConnectionConnectivityParameters
|
|
480
|
+
| undefined;
|
|
446
481
|
ConnectionState?: ConnectionState | undefined;
|
|
447
482
|
StateReason?: string | undefined;
|
|
448
483
|
AuthorizationType?: ConnectionAuthorizationType | undefined;
|
|
@@ -1080,12 +1115,14 @@ export interface UpdateConnectionAuthRequestParameters {
|
|
|
1080
1115
|
| UpdateConnectionApiKeyAuthRequestParameters
|
|
1081
1116
|
| undefined;
|
|
1082
1117
|
InvocationHttpParameters?: ConnectionHttpParameters | undefined;
|
|
1118
|
+
ConnectivityParameters?: ConnectivityResourceParameters | undefined;
|
|
1083
1119
|
}
|
|
1084
1120
|
export interface UpdateConnectionRequest {
|
|
1085
1121
|
Name: string | undefined;
|
|
1086
1122
|
Description?: string | undefined;
|
|
1087
1123
|
AuthorizationType?: ConnectionAuthorizationType | undefined;
|
|
1088
1124
|
AuthParameters?: UpdateConnectionAuthRequestParameters | undefined;
|
|
1125
|
+
InvocationConnectivityParameters?: ConnectivityResourceParameters | undefined;
|
|
1089
1126
|
}
|
|
1090
1127
|
export interface UpdateConnectionResponse {
|
|
1091
1128
|
ConnectionArn?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-eventbridge",
|
|
3
3
|
"description": "AWS SDK for JavaScript Eventbridge Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.703.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-eventbridge",
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
24
24
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
25
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
26
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
+
"@aws-sdk/client-sso-oidc": "3.699.0",
|
|
26
|
+
"@aws-sdk/client-sts": "3.699.0",
|
|
27
27
|
"@aws-sdk/core": "3.696.0",
|
|
28
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
28
|
+
"@aws-sdk/credential-provider-node": "3.699.0",
|
|
29
29
|
"@aws-sdk/middleware-host-header": "3.696.0",
|
|
30
30
|
"@aws-sdk/middleware-logger": "3.696.0",
|
|
31
31
|
"@aws-sdk/middleware-recursion-detection": "3.696.0",
|