@aws-sdk/client-eventbridge 3.300.0 → 3.303.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 +91 -107
- package/dist-es/models/models_0.js +91 -107
- package/dist-types/commands/ActivateEventSourceCommand.d.ts +1 -1
- package/dist-types/commands/CancelReplayCommand.d.ts +1 -1
- package/dist-types/commands/CreateApiDestinationCommand.d.ts +1 -1
- package/dist-types/commands/CreateArchiveCommand.d.ts +1 -1
- package/dist-types/commands/CreateConnectionCommand.d.ts +13 -13
- package/dist-types/commands/CreateEndpointCommand.d.ts +8 -8
- package/dist-types/commands/CreateEventBusCommand.d.ts +3 -3
- package/dist-types/commands/CreatePartnerEventSourceCommand.d.ts +1 -1
- package/dist-types/commands/DeactivateEventSourceCommand.d.ts +1 -1
- package/dist-types/commands/DeauthorizeConnectionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteApiDestinationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteArchiveCommand.d.ts +1 -1
- package/dist-types/commands/DeleteConnectionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEndpointCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEventBusCommand.d.ts +1 -1
- package/dist-types/commands/DeletePartnerEventSourceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRuleCommand.d.ts +1 -1
- package/dist-types/commands/DescribeApiDestinationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeArchiveCommand.d.ts +1 -1
- package/dist-types/commands/DescribeConnectionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEndpointCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEventBusCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEventSourceCommand.d.ts +1 -1
- package/dist-types/commands/DescribePartnerEventSourceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReplayCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRuleCommand.d.ts +1 -1
- package/dist-types/commands/DisableRuleCommand.d.ts +1 -1
- package/dist-types/commands/EnableRuleCommand.d.ts +1 -1
- package/dist-types/commands/ListApiDestinationsCommand.d.ts +1 -1
- package/dist-types/commands/ListArchivesCommand.d.ts +1 -1
- package/dist-types/commands/ListConnectionsCommand.d.ts +1 -1
- package/dist-types/commands/ListEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/ListEventBusesCommand.d.ts +1 -1
- package/dist-types/commands/ListEventSourcesCommand.d.ts +1 -1
- package/dist-types/commands/ListPartnerEventSourceAccountsCommand.d.ts +1 -1
- package/dist-types/commands/ListPartnerEventSourcesCommand.d.ts +1 -1
- package/dist-types/commands/ListReplaysCommand.d.ts +1 -1
- package/dist-types/commands/ListRuleNamesByTargetCommand.d.ts +1 -1
- package/dist-types/commands/ListRulesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListTargetsByRuleCommand.d.ts +1 -1
- package/dist-types/commands/PutEventsCommand.d.ts +4 -4
- package/dist-types/commands/PutPartnerEventsCommand.d.ts +4 -4
- package/dist-types/commands/PutPermissionCommand.d.ts +2 -2
- package/dist-types/commands/PutRuleCommand.d.ts +3 -3
- package/dist-types/commands/PutTargetsCommand.d.ts +36 -36
- package/dist-types/commands/RemovePermissionCommand.d.ts +1 -1
- package/dist-types/commands/RemoveTargetsCommand.d.ts +2 -2
- package/dist-types/commands/StartReplayCommand.d.ts +3 -3
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/TestEventPatternCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateApiDestinationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateArchiveCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConnectionCommand.d.ts +13 -13
- package/dist-types/commands/UpdateEndpointCommand.d.ts +8 -8
- package/dist-types/models/models_0.d.ts +171 -91
- package/dist-types/ts3.4/models/models_0.d.ts +117 -91
- package/package.json +35 -35
|
@@ -26,7 +26,7 @@ export interface DeleteApiDestinationCommandOutput extends DeleteApiDestinationR
|
|
|
26
26
|
* import { EventBridgeClient, DeleteApiDestinationCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
27
27
|
* // const { EventBridgeClient, DeleteApiDestinationCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
28
28
|
* const client = new EventBridgeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteApiDestinationRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteApiDestinationCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteArchiveCommandOutput extends DeleteArchiveResponse, __Met
|
|
|
26
26
|
* import { EventBridgeClient, DeleteArchiveCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
27
27
|
* // const { EventBridgeClient, DeleteArchiveCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
28
28
|
* const client = new EventBridgeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteArchiveRequest
|
|
30
30
|
* ArchiveName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteArchiveCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteConnectionCommandOutput extends DeleteConnectionResponse,
|
|
|
26
26
|
* import { EventBridgeClient, DeleteConnectionCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
27
27
|
* // const { EventBridgeClient, DeleteConnectionCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
28
28
|
* const client = new EventBridgeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteConnectionRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteConnectionCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteEndpointCommandOutput extends DeleteEndpointResponse, __M
|
|
|
26
26
|
* import { EventBridgeClient, DeleteEndpointCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
27
27
|
* // const { EventBridgeClient, DeleteEndpointCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
28
28
|
* const client = new EventBridgeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteEndpointRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteEndpointCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface DeleteEventBusCommandOutput extends __MetadataBearer {
|
|
|
27
27
|
* import { EventBridgeClient, DeleteEventBusCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
28
28
|
* // const { EventBridgeClient, DeleteEventBusCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
29
29
|
* const client = new EventBridgeClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteEventBusRequest
|
|
31
31
|
* Name: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteEventBusCommand(input);
|
|
@@ -30,7 +30,7 @@ export interface DeletePartnerEventSourceCommandOutput extends __MetadataBearer
|
|
|
30
30
|
* import { EventBridgeClient, DeletePartnerEventSourceCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
31
31
|
* // const { EventBridgeClient, DeletePartnerEventSourceCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
32
32
|
* const client = new EventBridgeClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DeletePartnerEventSourceRequest
|
|
34
34
|
* Name: "STRING_VALUE", // required
|
|
35
35
|
* Account: "STRING_VALUE", // required
|
|
36
36
|
* };
|
|
@@ -36,7 +36,7 @@ export interface DeleteRuleCommandOutput extends __MetadataBearer {
|
|
|
36
36
|
* import { EventBridgeClient, DeleteRuleCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
37
37
|
* // const { EventBridgeClient, DeleteRuleCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
38
38
|
* const client = new EventBridgeClient(config);
|
|
39
|
-
* const input = {
|
|
39
|
+
* const input = { // DeleteRuleRequest
|
|
40
40
|
* Name: "STRING_VALUE", // required
|
|
41
41
|
* EventBusName: "STRING_VALUE",
|
|
42
42
|
* Force: true || false,
|
|
@@ -26,7 +26,7 @@ export interface DescribeApiDestinationCommandOutput extends DescribeApiDestinat
|
|
|
26
26
|
* import { EventBridgeClient, DescribeApiDestinationCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
27
27
|
* // const { EventBridgeClient, DescribeApiDestinationCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
28
28
|
* const client = new EventBridgeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeApiDestinationRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeApiDestinationCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeArchiveCommandOutput extends DescribeArchiveResponse, _
|
|
|
26
26
|
* import { EventBridgeClient, DescribeArchiveCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
27
27
|
* // const { EventBridgeClient, DescribeArchiveCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
28
28
|
* const client = new EventBridgeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeArchiveRequest
|
|
30
30
|
* ArchiveName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeArchiveCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeConnectionCommandOutput extends DescribeConnectionRespo
|
|
|
26
26
|
* import { EventBridgeClient, DescribeConnectionCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
27
27
|
* // const { EventBridgeClient, DescribeConnectionCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
28
28
|
* const client = new EventBridgeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeConnectionRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeConnectionCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeEndpointCommandOutput extends DescribeEndpointResponse,
|
|
|
26
26
|
* import { EventBridgeClient, DescribeEndpointCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
27
27
|
* // const { EventBridgeClient, DescribeEndpointCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
28
28
|
* const client = new EventBridgeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeEndpointRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* HomeRegion: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -32,7 +32,7 @@ export interface DescribeEventBusCommandOutput extends DescribeEventBusResponse,
|
|
|
32
32
|
* import { EventBridgeClient, DescribeEventBusCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
33
33
|
* // const { EventBridgeClient, DescribeEventBusCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
34
34
|
* const client = new EventBridgeClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // DescribeEventBusRequest
|
|
36
36
|
* Name: "STRING_VALUE",
|
|
37
37
|
* };
|
|
38
38
|
* const command = new DescribeEventBusCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface DescribeEventSourceCommandOutput extends DescribeEventSourceRes
|
|
|
27
27
|
* import { EventBridgeClient, DescribeEventSourceCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
28
28
|
* // const { EventBridgeClient, DescribeEventSourceCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
29
29
|
* const client = new EventBridgeClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DescribeEventSourceRequest
|
|
31
31
|
* Name: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeEventSourceCommand(input);
|
|
@@ -29,7 +29,7 @@ export interface DescribePartnerEventSourceCommandOutput extends DescribePartner
|
|
|
29
29
|
* import { EventBridgeClient, DescribePartnerEventSourceCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
30
30
|
* // const { EventBridgeClient, DescribePartnerEventSourceCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
31
31
|
* const client = new EventBridgeClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DescribePartnerEventSourceRequest
|
|
33
33
|
* Name: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DescribePartnerEventSourceCommand(input);
|
|
@@ -34,7 +34,7 @@ export interface DescribeReplayCommandOutput extends DescribeReplayResponse, __M
|
|
|
34
34
|
* import { EventBridgeClient, DescribeReplayCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
35
35
|
* // const { EventBridgeClient, DescribeReplayCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
36
36
|
* const client = new EventBridgeClient(config);
|
|
37
|
-
* const input = {
|
|
37
|
+
* const input = { // DescribeReplayRequest
|
|
38
38
|
* ReplayName: "STRING_VALUE", // required
|
|
39
39
|
* };
|
|
40
40
|
* const command = new DescribeReplayCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface DescribeRuleCommandOutput extends DescribeRuleResponse, __Metad
|
|
|
28
28
|
* import { EventBridgeClient, DescribeRuleCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
29
29
|
* // const { EventBridgeClient, DescribeRuleCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
30
30
|
* const client = new EventBridgeClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DescribeRuleRequest
|
|
32
32
|
* Name: "STRING_VALUE", // required
|
|
33
33
|
* EventBusName: "STRING_VALUE",
|
|
34
34
|
* };
|
|
@@ -29,7 +29,7 @@ export interface DisableRuleCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* import { EventBridgeClient, DisableRuleCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
30
30
|
* // const { EventBridgeClient, DisableRuleCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
31
31
|
* const client = new EventBridgeClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DisableRuleRequest
|
|
33
33
|
* Name: "STRING_VALUE", // required
|
|
34
34
|
* EventBusName: "STRING_VALUE",
|
|
35
35
|
* };
|
|
@@ -28,7 +28,7 @@ export interface EnableRuleCommandOutput extends __MetadataBearer {
|
|
|
28
28
|
* import { EventBridgeClient, EnableRuleCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
29
29
|
* // const { EventBridgeClient, EnableRuleCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
30
30
|
* const client = new EventBridgeClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // EnableRuleRequest
|
|
32
32
|
* Name: "STRING_VALUE", // required
|
|
33
33
|
* EventBusName: "STRING_VALUE",
|
|
34
34
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListApiDestinationsCommandOutput extends ListApiDestinationsRes
|
|
|
26
26
|
* import { EventBridgeClient, ListApiDestinationsCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
27
27
|
* // const { EventBridgeClient, ListApiDestinationsCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
28
28
|
* const client = new EventBridgeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListApiDestinationsRequest
|
|
30
30
|
* NamePrefix: "STRING_VALUE",
|
|
31
31
|
* ConnectionArn: "STRING_VALUE",
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface ListArchivesCommandOutput extends ListArchivesResponse, __Metad
|
|
|
27
27
|
* import { EventBridgeClient, ListArchivesCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
28
28
|
* // const { EventBridgeClient, ListArchivesCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
29
29
|
* const client = new EventBridgeClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListArchivesRequest
|
|
31
31
|
* NamePrefix: "STRING_VALUE",
|
|
32
32
|
* EventSourceArn: "STRING_VALUE",
|
|
33
33
|
* State: "ENABLED" || "DISABLED" || "CREATING" || "UPDATING" || "CREATE_FAILED" || "UPDATE_FAILED",
|
|
@@ -26,7 +26,7 @@ export interface ListConnectionsCommandOutput extends ListConnectionsResponse, _
|
|
|
26
26
|
* import { EventBridgeClient, ListConnectionsCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
27
27
|
* // const { EventBridgeClient, ListConnectionsCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
28
28
|
* const client = new EventBridgeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListConnectionsRequest
|
|
30
30
|
* NamePrefix: "STRING_VALUE",
|
|
31
31
|
* ConnectionState: "CREATING" || "UPDATING" || "DELETING" || "AUTHORIZED" || "DEAUTHORIZED" || "AUTHORIZING" || "DEAUTHORIZING",
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListEndpointsCommandOutput extends ListEndpointsResponse, __Met
|
|
|
26
26
|
* import { EventBridgeClient, ListEndpointsCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
27
27
|
* // const { EventBridgeClient, ListEndpointsCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
28
28
|
* const client = new EventBridgeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListEndpointsRequest
|
|
30
30
|
* NamePrefix: "STRING_VALUE",
|
|
31
31
|
* HomeRegion: "STRING_VALUE",
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface ListEventBusesCommandOutput extends ListEventBusesResponse, __M
|
|
|
27
27
|
* import { EventBridgeClient, ListEventBusesCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
28
28
|
* // const { EventBridgeClient, ListEventBusesCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
29
29
|
* const client = new EventBridgeClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListEventBusesRequest
|
|
31
31
|
* NamePrefix: "STRING_VALUE",
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* Limit: Number("int"),
|
|
@@ -27,7 +27,7 @@ export interface ListEventSourcesCommandOutput extends ListEventSourcesResponse,
|
|
|
27
27
|
* import { EventBridgeClient, ListEventSourcesCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
28
28
|
* // const { EventBridgeClient, ListEventSourcesCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
29
29
|
* const client = new EventBridgeClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListEventSourcesRequest
|
|
31
31
|
* NamePrefix: "STRING_VALUE",
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* Limit: Number("int"),
|
|
@@ -28,7 +28,7 @@ export interface ListPartnerEventSourceAccountsCommandOutput extends ListPartner
|
|
|
28
28
|
* import { EventBridgeClient, ListPartnerEventSourceAccountsCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
29
29
|
* // const { EventBridgeClient, ListPartnerEventSourceAccountsCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
30
30
|
* const client = new EventBridgeClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListPartnerEventSourceAccountsRequest
|
|
32
32
|
* EventSourceName: "STRING_VALUE", // required
|
|
33
33
|
* NextToken: "STRING_VALUE",
|
|
34
34
|
* Limit: Number("int"),
|
|
@@ -27,7 +27,7 @@ export interface ListPartnerEventSourcesCommandOutput extends ListPartnerEventSo
|
|
|
27
27
|
* import { EventBridgeClient, ListPartnerEventSourcesCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
28
28
|
* // const { EventBridgeClient, ListPartnerEventSourcesCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
29
29
|
* const client = new EventBridgeClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListPartnerEventSourcesRequest
|
|
31
31
|
* NamePrefix: "STRING_VALUE", // required
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* Limit: Number("int"),
|
|
@@ -27,7 +27,7 @@ export interface ListReplaysCommandOutput extends ListReplaysResponse, __Metadat
|
|
|
27
27
|
* import { EventBridgeClient, ListReplaysCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
28
28
|
* // const { EventBridgeClient, ListReplaysCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
29
29
|
* const client = new EventBridgeClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListReplaysRequest
|
|
31
31
|
* NamePrefix: "STRING_VALUE",
|
|
32
32
|
* State: "STARTING" || "RUNNING" || "CANCELLING" || "COMPLETED" || "CANCELLED" || "FAILED",
|
|
33
33
|
* EventSourceArn: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface ListRuleNamesByTargetCommandOutput extends ListRuleNamesByTarge
|
|
|
27
27
|
* import { EventBridgeClient, ListRuleNamesByTargetCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
28
28
|
* // const { EventBridgeClient, ListRuleNamesByTargetCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
29
29
|
* const client = new EventBridgeClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListRuleNamesByTargetRequest
|
|
31
31
|
* TargetArn: "STRING_VALUE", // required
|
|
32
32
|
* EventBusName: "STRING_VALUE",
|
|
33
33
|
* NextToken: "STRING_VALUE",
|
|
@@ -29,7 +29,7 @@ export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBea
|
|
|
29
29
|
* import { EventBridgeClient, ListRulesCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
30
30
|
* // const { EventBridgeClient, ListRulesCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
31
31
|
* const client = new EventBridgeClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListRulesRequest
|
|
33
33
|
* NamePrefix: "STRING_VALUE",
|
|
34
34
|
* EventBusName: "STRING_VALUE",
|
|
35
35
|
* NextToken: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
27
27
|
* import { EventBridgeClient, ListTagsForResourceCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
28
28
|
* // const { EventBridgeClient, ListTagsForResourceCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
29
29
|
* const client = new EventBridgeClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListTagsForResourceRequest
|
|
31
31
|
* ResourceARN: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ListTargetsByRuleCommandOutput extends ListTargetsByRuleRespons
|
|
|
26
26
|
* import { EventBridgeClient, ListTargetsByRuleCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
27
27
|
* // const { EventBridgeClient, ListTargetsByRuleCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
28
28
|
* const client = new EventBridgeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTargetsByRuleRequest
|
|
30
30
|
* Rule: "STRING_VALUE", // required
|
|
31
31
|
* EventBusName: "STRING_VALUE",
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -29,12 +29,12 @@ export interface PutEventsCommandOutput extends PutEventsResponse, __MetadataBea
|
|
|
29
29
|
* import { EventBridgeClient, PutEventsCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
30
30
|
* // const { EventBridgeClient, PutEventsCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
31
31
|
* const client = new EventBridgeClient(config);
|
|
32
|
-
* const input = {
|
|
33
|
-
* Entries: [ // required
|
|
34
|
-
* {
|
|
32
|
+
* const input = { // PutEventsRequest
|
|
33
|
+
* Entries: [ // PutEventsRequestEntryList // required
|
|
34
|
+
* { // PutEventsRequestEntry
|
|
35
35
|
* Time: new Date("TIMESTAMP"),
|
|
36
36
|
* Source: "STRING_VALUE",
|
|
37
|
-
* Resources: [
|
|
37
|
+
* Resources: [ // EventResourceList
|
|
38
38
|
* "STRING_VALUE",
|
|
39
39
|
* ],
|
|
40
40
|
* DetailType: "STRING_VALUE",
|
|
@@ -27,12 +27,12 @@ export interface PutPartnerEventsCommandOutput extends PutPartnerEventsResponse,
|
|
|
27
27
|
* import { EventBridgeClient, PutPartnerEventsCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
28
28
|
* // const { EventBridgeClient, PutPartnerEventsCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
29
29
|
* const client = new EventBridgeClient(config);
|
|
30
|
-
* const input = {
|
|
31
|
-
* Entries: [ // required
|
|
32
|
-
* {
|
|
30
|
+
* const input = { // PutPartnerEventsRequest
|
|
31
|
+
* Entries: [ // PutPartnerEventsRequestEntryList // required
|
|
32
|
+
* { // PutPartnerEventsRequestEntry
|
|
33
33
|
* Time: new Date("TIMESTAMP"),
|
|
34
34
|
* Source: "STRING_VALUE",
|
|
35
|
-
* Resources: [
|
|
35
|
+
* Resources: [ // EventResourceList
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
38
|
* DetailType: "STRING_VALUE",
|
|
@@ -42,12 +42,12 @@ export interface PutPermissionCommandOutput extends __MetadataBearer {
|
|
|
42
42
|
* import { EventBridgeClient, PutPermissionCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
43
43
|
* // const { EventBridgeClient, PutPermissionCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
44
44
|
* const client = new EventBridgeClient(config);
|
|
45
|
-
* const input = {
|
|
45
|
+
* const input = { // PutPermissionRequest
|
|
46
46
|
* EventBusName: "STRING_VALUE",
|
|
47
47
|
* Action: "STRING_VALUE",
|
|
48
48
|
* Principal: "STRING_VALUE",
|
|
49
49
|
* StatementId: "STRING_VALUE",
|
|
50
|
-
* Condition: {
|
|
50
|
+
* Condition: { // Condition
|
|
51
51
|
* Type: "STRING_VALUE", // required
|
|
52
52
|
* Key: "STRING_VALUE", // required
|
|
53
53
|
* Value: "STRING_VALUE", // required
|
|
@@ -65,15 +65,15 @@ export interface PutRuleCommandOutput extends PutRuleResponse, __MetadataBearer
|
|
|
65
65
|
* import { EventBridgeClient, PutRuleCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
66
66
|
* // const { EventBridgeClient, PutRuleCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
67
67
|
* const client = new EventBridgeClient(config);
|
|
68
|
-
* const input = {
|
|
68
|
+
* const input = { // PutRuleRequest
|
|
69
69
|
* Name: "STRING_VALUE", // required
|
|
70
70
|
* ScheduleExpression: "STRING_VALUE",
|
|
71
71
|
* EventPattern: "STRING_VALUE",
|
|
72
72
|
* State: "ENABLED" || "DISABLED",
|
|
73
73
|
* Description: "STRING_VALUE",
|
|
74
74
|
* RoleArn: "STRING_VALUE",
|
|
75
|
-
* Tags: [
|
|
76
|
-
* {
|
|
75
|
+
* Tags: [ // TagList
|
|
76
|
+
* { // Tag
|
|
77
77
|
* Key: "STRING_VALUE", // required
|
|
78
78
|
* Value: "STRING_VALUE", // required
|
|
79
79
|
* },
|
|
@@ -203,42 +203,42 @@ export interface PutTargetsCommandOutput extends PutTargetsResponse, __MetadataB
|
|
|
203
203
|
* import { EventBridgeClient, PutTargetsCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
204
204
|
* // const { EventBridgeClient, PutTargetsCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
205
205
|
* const client = new EventBridgeClient(config);
|
|
206
|
-
* const input = {
|
|
206
|
+
* const input = { // PutTargetsRequest
|
|
207
207
|
* Rule: "STRING_VALUE", // required
|
|
208
208
|
* EventBusName: "STRING_VALUE",
|
|
209
|
-
* Targets: [ // required
|
|
210
|
-
* {
|
|
209
|
+
* Targets: [ // TargetList // required
|
|
210
|
+
* { // Target
|
|
211
211
|
* Id: "STRING_VALUE", // required
|
|
212
212
|
* Arn: "STRING_VALUE", // required
|
|
213
213
|
* RoleArn: "STRING_VALUE",
|
|
214
214
|
* Input: "STRING_VALUE",
|
|
215
215
|
* InputPath: "STRING_VALUE",
|
|
216
|
-
* InputTransformer: {
|
|
217
|
-
* InputPathsMap: {
|
|
216
|
+
* InputTransformer: { // InputTransformer
|
|
217
|
+
* InputPathsMap: { // TransformerPaths
|
|
218
218
|
* "<keys>": "STRING_VALUE",
|
|
219
219
|
* },
|
|
220
220
|
* InputTemplate: "STRING_VALUE", // required
|
|
221
221
|
* },
|
|
222
|
-
* KinesisParameters: {
|
|
222
|
+
* KinesisParameters: { // KinesisParameters
|
|
223
223
|
* PartitionKeyPath: "STRING_VALUE", // required
|
|
224
224
|
* },
|
|
225
|
-
* RunCommandParameters: {
|
|
226
|
-
* RunCommandTargets: [ // required
|
|
227
|
-
* {
|
|
225
|
+
* RunCommandParameters: { // RunCommandParameters
|
|
226
|
+
* RunCommandTargets: [ // RunCommandTargets // required
|
|
227
|
+
* { // RunCommandTarget
|
|
228
228
|
* Key: "STRING_VALUE", // required
|
|
229
|
-
* Values: [ // required
|
|
229
|
+
* Values: [ // RunCommandTargetValues // required
|
|
230
230
|
* "STRING_VALUE",
|
|
231
231
|
* ],
|
|
232
232
|
* },
|
|
233
233
|
* ],
|
|
234
234
|
* },
|
|
235
|
-
* EcsParameters: {
|
|
235
|
+
* EcsParameters: { // EcsParameters
|
|
236
236
|
* TaskDefinitionArn: "STRING_VALUE", // required
|
|
237
237
|
* TaskCount: Number("int"),
|
|
238
238
|
* LaunchType: "EC2" || "FARGATE" || "EXTERNAL",
|
|
239
|
-
* NetworkConfiguration: {
|
|
240
|
-
* awsvpcConfiguration: {
|
|
241
|
-
* Subnets: [ // required
|
|
239
|
+
* NetworkConfiguration: { // NetworkConfiguration
|
|
240
|
+
* awsvpcConfiguration: { // AwsVpcConfiguration
|
|
241
|
+
* Subnets: [ // StringList // required
|
|
242
242
|
* "STRING_VALUE",
|
|
243
243
|
* ],
|
|
244
244
|
* SecurityGroups: [
|
|
@@ -249,8 +249,8 @@ export interface PutTargetsCommandOutput extends PutTargetsResponse, __MetadataB
|
|
|
249
249
|
* },
|
|
250
250
|
* PlatformVersion: "STRING_VALUE",
|
|
251
251
|
* Group: "STRING_VALUE",
|
|
252
|
-
* CapacityProviderStrategy: [
|
|
253
|
-
* {
|
|
252
|
+
* CapacityProviderStrategy: [ // CapacityProviderStrategy
|
|
253
|
+
* { // CapacityProviderStrategyItem
|
|
254
254
|
* capacityProvider: "STRING_VALUE", // required
|
|
255
255
|
* weight: Number("int"),
|
|
256
256
|
* base: Number("int"),
|
|
@@ -258,52 +258,52 @@ export interface PutTargetsCommandOutput extends PutTargetsResponse, __MetadataB
|
|
|
258
258
|
* ],
|
|
259
259
|
* EnableECSManagedTags: true || false,
|
|
260
260
|
* EnableExecuteCommand: true || false,
|
|
261
|
-
* PlacementConstraints: [
|
|
262
|
-
* {
|
|
261
|
+
* PlacementConstraints: [ // PlacementConstraints
|
|
262
|
+
* { // PlacementConstraint
|
|
263
263
|
* type: "distinctInstance" || "memberOf",
|
|
264
264
|
* expression: "STRING_VALUE",
|
|
265
265
|
* },
|
|
266
266
|
* ],
|
|
267
|
-
* PlacementStrategy: [
|
|
268
|
-
* {
|
|
267
|
+
* PlacementStrategy: [ // PlacementStrategies
|
|
268
|
+
* { // PlacementStrategy
|
|
269
269
|
* type: "random" || "spread" || "binpack",
|
|
270
270
|
* field: "STRING_VALUE",
|
|
271
271
|
* },
|
|
272
272
|
* ],
|
|
273
273
|
* PropagateTags: "TASK_DEFINITION",
|
|
274
274
|
* ReferenceId: "STRING_VALUE",
|
|
275
|
-
* Tags: [
|
|
276
|
-
* {
|
|
275
|
+
* Tags: [ // TagList
|
|
276
|
+
* { // Tag
|
|
277
277
|
* Key: "STRING_VALUE", // required
|
|
278
278
|
* Value: "STRING_VALUE", // required
|
|
279
279
|
* },
|
|
280
280
|
* ],
|
|
281
281
|
* },
|
|
282
|
-
* BatchParameters: {
|
|
282
|
+
* BatchParameters: { // BatchParameters
|
|
283
283
|
* JobDefinition: "STRING_VALUE", // required
|
|
284
284
|
* JobName: "STRING_VALUE", // required
|
|
285
|
-
* ArrayProperties: {
|
|
285
|
+
* ArrayProperties: { // BatchArrayProperties
|
|
286
286
|
* Size: Number("int"),
|
|
287
287
|
* },
|
|
288
|
-
* RetryStrategy: {
|
|
288
|
+
* RetryStrategy: { // BatchRetryStrategy
|
|
289
289
|
* Attempts: Number("int"),
|
|
290
290
|
* },
|
|
291
291
|
* },
|
|
292
|
-
* SqsParameters: {
|
|
292
|
+
* SqsParameters: { // SqsParameters
|
|
293
293
|
* MessageGroupId: "STRING_VALUE",
|
|
294
294
|
* },
|
|
295
|
-
* HttpParameters: {
|
|
296
|
-
* PathParameterValues: [
|
|
295
|
+
* HttpParameters: { // HttpParameters
|
|
296
|
+
* PathParameterValues: [ // PathParameterList
|
|
297
297
|
* "STRING_VALUE",
|
|
298
298
|
* ],
|
|
299
|
-
* HeaderParameters: {
|
|
299
|
+
* HeaderParameters: { // HeaderParametersMap
|
|
300
300
|
* "<keys>": "STRING_VALUE",
|
|
301
301
|
* },
|
|
302
|
-
* QueryStringParameters: {
|
|
302
|
+
* QueryStringParameters: { // QueryStringParametersMap
|
|
303
303
|
* "<keys>": "STRING_VALUE",
|
|
304
304
|
* },
|
|
305
305
|
* },
|
|
306
|
-
* RedshiftDataParameters: {
|
|
306
|
+
* RedshiftDataParameters: { // RedshiftDataParameters
|
|
307
307
|
* SecretManagerArn: "STRING_VALUE",
|
|
308
308
|
* Database: "STRING_VALUE", // required
|
|
309
309
|
* DbUser: "STRING_VALUE",
|
|
@@ -311,18 +311,18 @@ export interface PutTargetsCommandOutput extends PutTargetsResponse, __MetadataB
|
|
|
311
311
|
* StatementName: "STRING_VALUE",
|
|
312
312
|
* WithEvent: true || false,
|
|
313
313
|
* },
|
|
314
|
-
* SageMakerPipelineParameters: {
|
|
315
|
-
* PipelineParameterList: [
|
|
316
|
-
* {
|
|
314
|
+
* SageMakerPipelineParameters: { // SageMakerPipelineParameters
|
|
315
|
+
* PipelineParameterList: [ // SageMakerPipelineParameterList
|
|
316
|
+
* { // SageMakerPipelineParameter
|
|
317
317
|
* Name: "STRING_VALUE", // required
|
|
318
318
|
* Value: "STRING_VALUE", // required
|
|
319
319
|
* },
|
|
320
320
|
* ],
|
|
321
321
|
* },
|
|
322
|
-
* DeadLetterConfig: {
|
|
322
|
+
* DeadLetterConfig: { // DeadLetterConfig
|
|
323
323
|
* Arn: "STRING_VALUE",
|
|
324
324
|
* },
|
|
325
|
-
* RetryPolicy: {
|
|
325
|
+
* RetryPolicy: { // RetryPolicy
|
|
326
326
|
* MaximumRetryAttempts: Number("int"),
|
|
327
327
|
* MaximumEventAgeInSeconds: Number("int"),
|
|
328
328
|
* },
|
|
@@ -29,7 +29,7 @@ export interface RemovePermissionCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* import { EventBridgeClient, RemovePermissionCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
30
30
|
* // const { EventBridgeClient, RemovePermissionCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
31
31
|
* const client = new EventBridgeClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // RemovePermissionRequest
|
|
33
33
|
* StatementId: "STRING_VALUE",
|
|
34
34
|
* RemoveAllPermissions: true || false,
|
|
35
35
|
* EventBusName: "STRING_VALUE",
|
|
@@ -35,10 +35,10 @@ export interface RemoveTargetsCommandOutput extends RemoveTargetsResponse, __Met
|
|
|
35
35
|
* import { EventBridgeClient, RemoveTargetsCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
36
36
|
* // const { EventBridgeClient, RemoveTargetsCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
37
37
|
* const client = new EventBridgeClient(config);
|
|
38
|
-
* const input = {
|
|
38
|
+
* const input = { // RemoveTargetsRequest
|
|
39
39
|
* Rule: "STRING_VALUE", // required
|
|
40
40
|
* EventBusName: "STRING_VALUE",
|
|
41
|
-
* Ids: [ // required
|
|
41
|
+
* Ids: [ // TargetIdList // required
|
|
42
42
|
* "STRING_VALUE",
|
|
43
43
|
* ],
|
|
44
44
|
* Force: true || false,
|
|
@@ -34,15 +34,15 @@ export interface StartReplayCommandOutput extends StartReplayResponse, __Metadat
|
|
|
34
34
|
* import { EventBridgeClient, StartReplayCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
35
35
|
* // const { EventBridgeClient, StartReplayCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
36
36
|
* const client = new EventBridgeClient(config);
|
|
37
|
-
* const input = {
|
|
37
|
+
* const input = { // StartReplayRequest
|
|
38
38
|
* ReplayName: "STRING_VALUE", // required
|
|
39
39
|
* Description: "STRING_VALUE",
|
|
40
40
|
* EventSourceArn: "STRING_VALUE", // required
|
|
41
41
|
* EventStartTime: new Date("TIMESTAMP"), // required
|
|
42
42
|
* EventEndTime: new Date("TIMESTAMP"), // required
|
|
43
|
-
* Destination: {
|
|
43
|
+
* Destination: { // ReplayDestination
|
|
44
44
|
* Arn: "STRING_VALUE", // required
|
|
45
|
-
* FilterArns: [
|
|
45
|
+
* FilterArns: [ // ReplayDestinationFilters
|
|
46
46
|
* "STRING_VALUE",
|
|
47
47
|
* ],
|
|
48
48
|
* },
|
|
@@ -36,10 +36,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
36
36
|
* import { EventBridgeClient, TagResourceCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
|
|
37
37
|
* // const { EventBridgeClient, TagResourceCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
|
|
38
38
|
* const client = new EventBridgeClient(config);
|
|
39
|
-
* const input = {
|
|
39
|
+
* const input = { // TagResourceRequest
|
|
40
40
|
* ResourceARN: "STRING_VALUE", // required
|
|
41
|
-
* Tags: [ // required
|
|
42
|
-
* {
|
|
41
|
+
* Tags: [ // TagList // required
|
|
42
|
+
* { // Tag
|
|
43
43
|
* Key: "STRING_VALUE", // required
|
|
44
44
|
* Value: "STRING_VALUE", // required
|
|
45
45
|
* },
|