@aws-sdk/client-eventbridge 3.298.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.
Files changed (57) hide show
  1. package/dist-types/commands/ActivateEventSourceCommand.d.ts +3 -0
  2. package/dist-types/commands/CancelReplayCommand.d.ts +3 -0
  3. package/dist-types/commands/CreateApiDestinationCommand.d.ts +8 -0
  4. package/dist-types/commands/CreateArchiveCommand.d.ts +7 -0
  5. package/dist-types/commands/CreateConnectionCommand.d.ts +69 -0
  6. package/dist-types/commands/CreateEndpointCommand.d.ts +23 -0
  7. package/dist-types/commands/CreateEventBusCommand.d.ts +10 -0
  8. package/dist-types/commands/CreatePartnerEventSourceCommand.d.ts +4 -0
  9. package/dist-types/commands/DeactivateEventSourceCommand.d.ts +3 -0
  10. package/dist-types/commands/DeauthorizeConnectionCommand.d.ts +3 -0
  11. package/dist-types/commands/DeleteApiDestinationCommand.d.ts +3 -0
  12. package/dist-types/commands/DeleteArchiveCommand.d.ts +3 -0
  13. package/dist-types/commands/DeleteConnectionCommand.d.ts +3 -0
  14. package/dist-types/commands/DeleteEndpointCommand.d.ts +3 -0
  15. package/dist-types/commands/DeleteEventBusCommand.d.ts +3 -0
  16. package/dist-types/commands/DeletePartnerEventSourceCommand.d.ts +4 -0
  17. package/dist-types/commands/DeleteRuleCommand.d.ts +5 -0
  18. package/dist-types/commands/DescribeApiDestinationCommand.d.ts +3 -0
  19. package/dist-types/commands/DescribeArchiveCommand.d.ts +3 -0
  20. package/dist-types/commands/DescribeConnectionCommand.d.ts +3 -0
  21. package/dist-types/commands/DescribeEndpointCommand.d.ts +4 -0
  22. package/dist-types/commands/DescribeEventBusCommand.d.ts +3 -0
  23. package/dist-types/commands/DescribeEventSourceCommand.d.ts +3 -0
  24. package/dist-types/commands/DescribePartnerEventSourceCommand.d.ts +3 -0
  25. package/dist-types/commands/DescribeReplayCommand.d.ts +3 -0
  26. package/dist-types/commands/DescribeRuleCommand.d.ts +4 -0
  27. package/dist-types/commands/DisableRuleCommand.d.ts +4 -0
  28. package/dist-types/commands/EnableRuleCommand.d.ts +4 -0
  29. package/dist-types/commands/ListApiDestinationsCommand.d.ts +6 -0
  30. package/dist-types/commands/ListArchivesCommand.d.ts +7 -0
  31. package/dist-types/commands/ListConnectionsCommand.d.ts +6 -0
  32. package/dist-types/commands/ListEndpointsCommand.d.ts +6 -0
  33. package/dist-types/commands/ListEventBusesCommand.d.ts +5 -0
  34. package/dist-types/commands/ListEventSourcesCommand.d.ts +5 -0
  35. package/dist-types/commands/ListPartnerEventSourceAccountsCommand.d.ts +5 -0
  36. package/dist-types/commands/ListPartnerEventSourcesCommand.d.ts +5 -0
  37. package/dist-types/commands/ListReplaysCommand.d.ts +7 -0
  38. package/dist-types/commands/ListRuleNamesByTargetCommand.d.ts +6 -0
  39. package/dist-types/commands/ListRulesCommand.d.ts +6 -0
  40. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  41. package/dist-types/commands/ListTargetsByRuleCommand.d.ts +6 -0
  42. package/dist-types/commands/PutEventsCommand.d.ts +16 -0
  43. package/dist-types/commands/PutPartnerEventsCommand.d.ts +13 -0
  44. package/dist-types/commands/PutPermissionCommand.d.ts +12 -0
  45. package/dist-types/commands/PutRuleCommand.d.ts +15 -0
  46. package/dist-types/commands/PutTargetsCommand.d.ts +126 -0
  47. package/dist-types/commands/RemovePermissionCommand.d.ts +5 -0
  48. package/dist-types/commands/RemoveTargetsCommand.d.ts +8 -0
  49. package/dist-types/commands/StartReplayCommand.d.ts +13 -0
  50. package/dist-types/commands/TagResourceCommand.d.ts +9 -0
  51. package/dist-types/commands/TestEventPatternCommand.d.ts +4 -0
  52. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  53. package/dist-types/commands/UpdateApiDestinationCommand.d.ts +8 -0
  54. package/dist-types/commands/UpdateArchiveCommand.d.ts +6 -0
  55. package/dist-types/commands/UpdateConnectionCommand.d.ts +69 -0
  56. package/dist-types/commands/UpdateEndpointCommand.d.ts +23 -0
  57. package/package.json +13 -13
@@ -27,6 +27,9 @@ export interface ActivateEventSourceCommandOutput extends __MetadataBearer {
27
27
  * import { EventBridgeClient, ActivateEventSourceCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
28
28
  * // const { EventBridgeClient, ActivateEventSourceCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
29
29
  * const client = new EventBridgeClient(config);
30
+ * const input = {
31
+ * Name: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new ActivateEventSourceCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -26,6 +26,9 @@ export interface CancelReplayCommandOutput extends CancelReplayResponse, __Metad
26
26
  * import { EventBridgeClient, CancelReplayCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
27
27
  * // const { EventBridgeClient, CancelReplayCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
28
28
  * const client = new EventBridgeClient(config);
29
+ * const input = {
30
+ * ReplayName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new CancelReplayCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -27,6 +27,14 @@ export interface CreateApiDestinationCommandOutput extends CreateApiDestinationR
27
27
  * import { EventBridgeClient, CreateApiDestinationCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
28
28
  * // const { EventBridgeClient, CreateApiDestinationCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
29
29
  * const client = new EventBridgeClient(config);
30
+ * const input = {
31
+ * Name: "STRING_VALUE", // required
32
+ * Description: "STRING_VALUE",
33
+ * ConnectionArn: "STRING_VALUE", // required
34
+ * InvocationEndpoint: "STRING_VALUE", // required
35
+ * HttpMethod: "POST" || "GET" || "HEAD" || "OPTIONS" || "PUT" || "PATCH" || "DELETE", // required
36
+ * InvocationRateLimitPerSecond: Number("int"),
37
+ * };
30
38
  * const command = new CreateApiDestinationCommand(input);
31
39
  * const response = await client.send(command);
32
40
  * ```
@@ -30,6 +30,13 @@ export interface CreateArchiveCommandOutput extends CreateArchiveResponse, __Met
30
30
  * import { EventBridgeClient, CreateArchiveCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
31
31
  * // const { EventBridgeClient, CreateArchiveCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
32
32
  * const client = new EventBridgeClient(config);
33
+ * const input = {
34
+ * ArchiveName: "STRING_VALUE", // required
35
+ * EventSourceArn: "STRING_VALUE", // required
36
+ * Description: "STRING_VALUE",
37
+ * EventPattern: "STRING_VALUE",
38
+ * RetentionDays: Number("int"),
39
+ * };
33
40
  * const command = new CreateArchiveCommand(input);
34
41
  * const response = await client.send(command);
35
42
  * ```
@@ -27,6 +27,75 @@ export interface CreateConnectionCommandOutput extends CreateConnectionResponse,
27
27
  * import { EventBridgeClient, CreateConnectionCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
28
28
  * // const { EventBridgeClient, CreateConnectionCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
29
29
  * const client = new EventBridgeClient(config);
30
+ * const input = {
31
+ * Name: "STRING_VALUE", // required
32
+ * Description: "STRING_VALUE",
33
+ * AuthorizationType: "BASIC" || "OAUTH_CLIENT_CREDENTIALS" || "API_KEY", // required
34
+ * AuthParameters: {
35
+ * BasicAuthParameters: {
36
+ * Username: "STRING_VALUE", // required
37
+ * Password: "STRING_VALUE", // required
38
+ * },
39
+ * OAuthParameters: {
40
+ * ClientParameters: {
41
+ * ClientID: "STRING_VALUE", // required
42
+ * ClientSecret: "STRING_VALUE", // required
43
+ * },
44
+ * AuthorizationEndpoint: "STRING_VALUE", // required
45
+ * HttpMethod: "GET" || "POST" || "PUT", // required
46
+ * OAuthHttpParameters: {
47
+ * HeaderParameters: [
48
+ * {
49
+ * Key: "STRING_VALUE",
50
+ * Value: "STRING_VALUE",
51
+ * IsValueSecret: true || false,
52
+ * },
53
+ * ],
54
+ * QueryStringParameters: [
55
+ * {
56
+ * Key: "STRING_VALUE",
57
+ * Value: "STRING_VALUE",
58
+ * IsValueSecret: true || false,
59
+ * },
60
+ * ],
61
+ * BodyParameters: [
62
+ * {
63
+ * Key: "STRING_VALUE",
64
+ * Value: "STRING_VALUE",
65
+ * IsValueSecret: true || false,
66
+ * },
67
+ * ],
68
+ * },
69
+ * },
70
+ * ApiKeyAuthParameters: {
71
+ * ApiKeyName: "STRING_VALUE", // required
72
+ * ApiKeyValue: "STRING_VALUE", // required
73
+ * },
74
+ * InvocationHttpParameters: {
75
+ * HeaderParameters: [
76
+ * {
77
+ * Key: "STRING_VALUE",
78
+ * Value: "STRING_VALUE",
79
+ * IsValueSecret: true || false,
80
+ * },
81
+ * ],
82
+ * QueryStringParameters: [
83
+ * {
84
+ * Key: "STRING_VALUE",
85
+ * Value: "STRING_VALUE",
86
+ * IsValueSecret: true || false,
87
+ * },
88
+ * ],
89
+ * BodyParameters: [
90
+ * {
91
+ * Key: "STRING_VALUE",
92
+ * Value: "STRING_VALUE",
93
+ * IsValueSecret: true || false,
94
+ * },
95
+ * ],
96
+ * },
97
+ * },
98
+ * };
30
99
  * const command = new CreateConnectionCommand(input);
31
100
  * const response = await client.send(command);
32
101
  * ```
@@ -28,6 +28,29 @@ export interface CreateEndpointCommandOutput extends CreateEndpointResponse, __M
28
28
  * import { EventBridgeClient, CreateEndpointCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
29
29
  * // const { EventBridgeClient, CreateEndpointCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
30
30
  * const client = new EventBridgeClient(config);
31
+ * const input = {
32
+ * Name: "STRING_VALUE", // required
33
+ * Description: "STRING_VALUE",
34
+ * RoutingConfig: {
35
+ * FailoverConfig: {
36
+ * Primary: {
37
+ * HealthCheck: "STRING_VALUE", // required
38
+ * },
39
+ * Secondary: {
40
+ * Route: "STRING_VALUE", // required
41
+ * },
42
+ * },
43
+ * },
44
+ * ReplicationConfig: {
45
+ * State: "ENABLED" || "DISABLED",
46
+ * },
47
+ * EventBuses: [ // required
48
+ * {
49
+ * EventBusArn: "STRING_VALUE", // required
50
+ * },
51
+ * ],
52
+ * RoleArn: "STRING_VALUE",
53
+ * };
31
54
  * const command = new CreateEndpointCommand(input);
32
55
  * const response = await client.send(command);
33
56
  * ```
@@ -28,6 +28,16 @@ export interface CreateEventBusCommandOutput extends CreateEventBusResponse, __M
28
28
  * import { EventBridgeClient, CreateEventBusCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
29
29
  * // const { EventBridgeClient, CreateEventBusCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
30
30
  * const client = new EventBridgeClient(config);
31
+ * const input = {
32
+ * Name: "STRING_VALUE", // required
33
+ * EventSourceName: "STRING_VALUE",
34
+ * Tags: [
35
+ * {
36
+ * Key: "STRING_VALUE", // required
37
+ * Value: "STRING_VALUE", // required
38
+ * },
39
+ * ],
40
+ * };
31
41
  * const command = new CreateEventBusCommand(input);
32
42
  * const response = await client.send(command);
33
43
  * ```
@@ -49,6 +49,10 @@ export interface CreatePartnerEventSourceCommandOutput extends CreatePartnerEven
49
49
  * import { EventBridgeClient, CreatePartnerEventSourceCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
50
50
  * // const { EventBridgeClient, CreatePartnerEventSourceCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
51
51
  * const client = new EventBridgeClient(config);
52
+ * const input = {
53
+ * Name: "STRING_VALUE", // required
54
+ * Account: "STRING_VALUE", // required
55
+ * };
52
56
  * const command = new CreatePartnerEventSourceCommand(input);
53
57
  * const response = await client.send(command);
54
58
  * ```
@@ -30,6 +30,9 @@ export interface DeactivateEventSourceCommandOutput extends __MetadataBearer {
30
30
  * import { EventBridgeClient, DeactivateEventSourceCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
31
31
  * // const { EventBridgeClient, DeactivateEventSourceCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
32
32
  * const client = new EventBridgeClient(config);
33
+ * const input = {
34
+ * Name: "STRING_VALUE", // required
35
+ * };
33
36
  * const command = new DeactivateEventSourceCommand(input);
34
37
  * const response = await client.send(command);
35
38
  * ```
@@ -27,6 +27,9 @@ export interface DeauthorizeConnectionCommandOutput extends DeauthorizeConnectio
27
27
  * import { EventBridgeClient, DeauthorizeConnectionCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
28
28
  * // const { EventBridgeClient, DeauthorizeConnectionCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
29
29
  * const client = new EventBridgeClient(config);
30
+ * const input = {
31
+ * Name: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DeauthorizeConnectionCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteApiDestinationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * ArchiveName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteArchiveCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteConnectionCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteEndpointCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -27,6 +27,9 @@ 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 = {
31
+ * Name: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DeleteEventBusCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -30,6 +30,10 @@ 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 = {
34
+ * Name: "STRING_VALUE", // required
35
+ * Account: "STRING_VALUE", // required
36
+ * };
33
37
  * const command = new DeletePartnerEventSourceCommand(input);
34
38
  * const response = await client.send(command);
35
39
  * ```
@@ -36,6 +36,11 @@ 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 = {
40
+ * Name: "STRING_VALUE", // required
41
+ * EventBusName: "STRING_VALUE",
42
+ * Force: true || false,
43
+ * };
39
44
  * const command = new DeleteRuleCommand(input);
40
45
  * const response = await client.send(command);
41
46
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeApiDestinationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * ArchiveName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeArchiveCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeConnectionCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ 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 = {
30
+ * Name: "STRING_VALUE", // required
31
+ * HomeRegion: "STRING_VALUE",
32
+ * };
29
33
  * const command = new DescribeEndpointCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -32,6 +32,9 @@ 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 = {
36
+ * Name: "STRING_VALUE",
37
+ * };
35
38
  * const command = new DescribeEventBusCommand(input);
36
39
  * const response = await client.send(command);
37
40
  * ```
@@ -27,6 +27,9 @@ 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 = {
31
+ * Name: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DescribeEventSourceCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -29,6 +29,9 @@ 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 = {
33
+ * Name: "STRING_VALUE", // required
34
+ * };
32
35
  * const command = new DescribePartnerEventSourceCommand(input);
33
36
  * const response = await client.send(command);
34
37
  * ```
@@ -34,6 +34,9 @@ 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 = {
38
+ * ReplayName: "STRING_VALUE", // required
39
+ * };
37
40
  * const command = new DescribeReplayCommand(input);
38
41
  * const response = await client.send(command);
39
42
  * ```
@@ -28,6 +28,10 @@ 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 = {
32
+ * Name: "STRING_VALUE", // required
33
+ * EventBusName: "STRING_VALUE",
34
+ * };
31
35
  * const command = new DescribeRuleCommand(input);
32
36
  * const response = await client.send(command);
33
37
  * ```
@@ -29,6 +29,10 @@ 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 = {
33
+ * Name: "STRING_VALUE", // required
34
+ * EventBusName: "STRING_VALUE",
35
+ * };
32
36
  * const command = new DisableRuleCommand(input);
33
37
  * const response = await client.send(command);
34
38
  * ```
@@ -28,6 +28,10 @@ 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 = {
32
+ * Name: "STRING_VALUE", // required
33
+ * EventBusName: "STRING_VALUE",
34
+ * };
31
35
  * const command = new EnableRuleCommand(input);
32
36
  * const response = await client.send(command);
33
37
  * ```
@@ -26,6 +26,12 @@ 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 = {
30
+ * NamePrefix: "STRING_VALUE",
31
+ * ConnectionArn: "STRING_VALUE",
32
+ * NextToken: "STRING_VALUE",
33
+ * Limit: Number("int"),
34
+ * };
29
35
  * const command = new ListApiDestinationsCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -27,6 +27,13 @@ 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 = {
31
+ * NamePrefix: "STRING_VALUE",
32
+ * EventSourceArn: "STRING_VALUE",
33
+ * State: "ENABLED" || "DISABLED" || "CREATING" || "UPDATING" || "CREATE_FAILED" || "UPDATE_FAILED",
34
+ * NextToken: "STRING_VALUE",
35
+ * Limit: Number("int"),
36
+ * };
30
37
  * const command = new ListArchivesCommand(input);
31
38
  * const response = await client.send(command);
32
39
  * ```
@@ -26,6 +26,12 @@ 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 = {
30
+ * NamePrefix: "STRING_VALUE",
31
+ * ConnectionState: "CREATING" || "UPDATING" || "DELETING" || "AUTHORIZED" || "DEAUTHORIZED" || "AUTHORIZING" || "DEAUTHORIZING",
32
+ * NextToken: "STRING_VALUE",
33
+ * Limit: Number("int"),
34
+ * };
29
35
  * const command = new ListConnectionsCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,12 @@ 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 = {
30
+ * NamePrefix: "STRING_VALUE",
31
+ * HomeRegion: "STRING_VALUE",
32
+ * NextToken: "STRING_VALUE",
33
+ * MaxResults: Number("int"),
34
+ * };
29
35
  * const command = new ListEndpointsCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -27,6 +27,11 @@ 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 = {
31
+ * NamePrefix: "STRING_VALUE",
32
+ * NextToken: "STRING_VALUE",
33
+ * Limit: Number("int"),
34
+ * };
30
35
  * const command = new ListEventBusesCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
@@ -27,6 +27,11 @@ 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 = {
31
+ * NamePrefix: "STRING_VALUE",
32
+ * NextToken: "STRING_VALUE",
33
+ * Limit: Number("int"),
34
+ * };
30
35
  * const command = new ListEventSourcesCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
@@ -28,6 +28,11 @@ 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 = {
32
+ * EventSourceName: "STRING_VALUE", // required
33
+ * NextToken: "STRING_VALUE",
34
+ * Limit: Number("int"),
35
+ * };
31
36
  * const command = new ListPartnerEventSourceAccountsCommand(input);
32
37
  * const response = await client.send(command);
33
38
  * ```
@@ -27,6 +27,11 @@ 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 = {
31
+ * NamePrefix: "STRING_VALUE", // required
32
+ * NextToken: "STRING_VALUE",
33
+ * Limit: Number("int"),
34
+ * };
30
35
  * const command = new ListPartnerEventSourcesCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
@@ -27,6 +27,13 @@ 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 = {
31
+ * NamePrefix: "STRING_VALUE",
32
+ * State: "STARTING" || "RUNNING" || "CANCELLING" || "COMPLETED" || "CANCELLED" || "FAILED",
33
+ * EventSourceArn: "STRING_VALUE",
34
+ * NextToken: "STRING_VALUE",
35
+ * Limit: Number("int"),
36
+ * };
30
37
  * const command = new ListReplaysCommand(input);
31
38
  * const response = await client.send(command);
32
39
  * ```
@@ -27,6 +27,12 @@ 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 = {
31
+ * TargetArn: "STRING_VALUE", // required
32
+ * EventBusName: "STRING_VALUE",
33
+ * NextToken: "STRING_VALUE",
34
+ * Limit: Number("int"),
35
+ * };
30
36
  * const command = new ListRuleNamesByTargetCommand(input);
31
37
  * const response = await client.send(command);
32
38
  * ```
@@ -29,6 +29,12 @@ 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 = {
33
+ * NamePrefix: "STRING_VALUE",
34
+ * EventBusName: "STRING_VALUE",
35
+ * NextToken: "STRING_VALUE",
36
+ * Limit: Number("int"),
37
+ * };
32
38
  * const command = new ListRulesCommand(input);
33
39
  * const response = await client.send(command);
34
40
  * ```
@@ -27,6 +27,9 @@ 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 = {
31
+ * ResourceARN: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new ListTagsForResourceCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -26,6 +26,12 @@ 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 = {
30
+ * Rule: "STRING_VALUE", // required
31
+ * EventBusName: "STRING_VALUE",
32
+ * NextToken: "STRING_VALUE",
33
+ * Limit: Number("int"),
34
+ * };
29
35
  * const command = new ListTargetsByRuleCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -29,6 +29,22 @@ 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
+ * {
35
+ * Time: new Date("TIMESTAMP"),
36
+ * Source: "STRING_VALUE",
37
+ * Resources: [
38
+ * "STRING_VALUE",
39
+ * ],
40
+ * DetailType: "STRING_VALUE",
41
+ * Detail: "STRING_VALUE",
42
+ * EventBusName: "STRING_VALUE",
43
+ * TraceHeader: "STRING_VALUE",
44
+ * },
45
+ * ],
46
+ * EndpointId: "STRING_VALUE",
47
+ * };
32
48
  * const command = new PutEventsCommand(input);
33
49
  * const response = await client.send(command);
34
50
  * ```
@@ -27,6 +27,19 @@ 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
+ * {
33
+ * Time: new Date("TIMESTAMP"),
34
+ * Source: "STRING_VALUE",
35
+ * Resources: [
36
+ * "STRING_VALUE",
37
+ * ],
38
+ * DetailType: "STRING_VALUE",
39
+ * Detail: "STRING_VALUE",
40
+ * },
41
+ * ],
42
+ * };
30
43
  * const command = new PutPartnerEventsCommand(input);
31
44
  * const response = await client.send(command);
32
45
  * ```
@@ -42,6 +42,18 @@ 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 = {
46
+ * EventBusName: "STRING_VALUE",
47
+ * Action: "STRING_VALUE",
48
+ * Principal: "STRING_VALUE",
49
+ * StatementId: "STRING_VALUE",
50
+ * Condition: {
51
+ * Type: "STRING_VALUE", // required
52
+ * Key: "STRING_VALUE", // required
53
+ * Value: "STRING_VALUE", // required
54
+ * },
55
+ * Policy: "STRING_VALUE",
56
+ * };
45
57
  * const command = new PutPermissionCommand(input);
46
58
  * const response = await client.send(command);
47
59
  * ```
@@ -65,6 +65,21 @@ 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 = {
69
+ * Name: "STRING_VALUE", // required
70
+ * ScheduleExpression: "STRING_VALUE",
71
+ * EventPattern: "STRING_VALUE",
72
+ * State: "ENABLED" || "DISABLED",
73
+ * Description: "STRING_VALUE",
74
+ * RoleArn: "STRING_VALUE",
75
+ * Tags: [
76
+ * {
77
+ * Key: "STRING_VALUE", // required
78
+ * Value: "STRING_VALUE", // required
79
+ * },
80
+ * ],
81
+ * EventBusName: "STRING_VALUE",
82
+ * };
68
83
  * const command = new PutRuleCommand(input);
69
84
  * const response = await client.send(command);
70
85
  * ```
@@ -203,6 +203,132 @@ 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 = {
207
+ * Rule: "STRING_VALUE", // required
208
+ * EventBusName: "STRING_VALUE",
209
+ * Targets: [ // required
210
+ * {
211
+ * Id: "STRING_VALUE", // required
212
+ * Arn: "STRING_VALUE", // required
213
+ * RoleArn: "STRING_VALUE",
214
+ * Input: "STRING_VALUE",
215
+ * InputPath: "STRING_VALUE",
216
+ * InputTransformer: {
217
+ * InputPathsMap: {
218
+ * "<keys>": "STRING_VALUE",
219
+ * },
220
+ * InputTemplate: "STRING_VALUE", // required
221
+ * },
222
+ * KinesisParameters: {
223
+ * PartitionKeyPath: "STRING_VALUE", // required
224
+ * },
225
+ * RunCommandParameters: {
226
+ * RunCommandTargets: [ // required
227
+ * {
228
+ * Key: "STRING_VALUE", // required
229
+ * Values: [ // required
230
+ * "STRING_VALUE",
231
+ * ],
232
+ * },
233
+ * ],
234
+ * },
235
+ * EcsParameters: {
236
+ * TaskDefinitionArn: "STRING_VALUE", // required
237
+ * TaskCount: Number("int"),
238
+ * LaunchType: "EC2" || "FARGATE" || "EXTERNAL",
239
+ * NetworkConfiguration: {
240
+ * awsvpcConfiguration: {
241
+ * Subnets: [ // required
242
+ * "STRING_VALUE",
243
+ * ],
244
+ * SecurityGroups: [
245
+ * "STRING_VALUE",
246
+ * ],
247
+ * AssignPublicIp: "ENABLED" || "DISABLED",
248
+ * },
249
+ * },
250
+ * PlatformVersion: "STRING_VALUE",
251
+ * Group: "STRING_VALUE",
252
+ * CapacityProviderStrategy: [
253
+ * {
254
+ * capacityProvider: "STRING_VALUE", // required
255
+ * weight: Number("int"),
256
+ * base: Number("int"),
257
+ * },
258
+ * ],
259
+ * EnableECSManagedTags: true || false,
260
+ * EnableExecuteCommand: true || false,
261
+ * PlacementConstraints: [
262
+ * {
263
+ * type: "distinctInstance" || "memberOf",
264
+ * expression: "STRING_VALUE",
265
+ * },
266
+ * ],
267
+ * PlacementStrategy: [
268
+ * {
269
+ * type: "random" || "spread" || "binpack",
270
+ * field: "STRING_VALUE",
271
+ * },
272
+ * ],
273
+ * PropagateTags: "TASK_DEFINITION",
274
+ * ReferenceId: "STRING_VALUE",
275
+ * Tags: [
276
+ * {
277
+ * Key: "STRING_VALUE", // required
278
+ * Value: "STRING_VALUE", // required
279
+ * },
280
+ * ],
281
+ * },
282
+ * BatchParameters: {
283
+ * JobDefinition: "STRING_VALUE", // required
284
+ * JobName: "STRING_VALUE", // required
285
+ * ArrayProperties: {
286
+ * Size: Number("int"),
287
+ * },
288
+ * RetryStrategy: {
289
+ * Attempts: Number("int"),
290
+ * },
291
+ * },
292
+ * SqsParameters: {
293
+ * MessageGroupId: "STRING_VALUE",
294
+ * },
295
+ * HttpParameters: {
296
+ * PathParameterValues: [
297
+ * "STRING_VALUE",
298
+ * ],
299
+ * HeaderParameters: {
300
+ * "<keys>": "STRING_VALUE",
301
+ * },
302
+ * QueryStringParameters: {
303
+ * "<keys>": "STRING_VALUE",
304
+ * },
305
+ * },
306
+ * RedshiftDataParameters: {
307
+ * SecretManagerArn: "STRING_VALUE",
308
+ * Database: "STRING_VALUE", // required
309
+ * DbUser: "STRING_VALUE",
310
+ * Sql: "STRING_VALUE", // required
311
+ * StatementName: "STRING_VALUE",
312
+ * WithEvent: true || false,
313
+ * },
314
+ * SageMakerPipelineParameters: {
315
+ * PipelineParameterList: [
316
+ * {
317
+ * Name: "STRING_VALUE", // required
318
+ * Value: "STRING_VALUE", // required
319
+ * },
320
+ * ],
321
+ * },
322
+ * DeadLetterConfig: {
323
+ * Arn: "STRING_VALUE",
324
+ * },
325
+ * RetryPolicy: {
326
+ * MaximumRetryAttempts: Number("int"),
327
+ * MaximumEventAgeInSeconds: Number("int"),
328
+ * },
329
+ * },
330
+ * ],
331
+ * };
206
332
  * const command = new PutTargetsCommand(input);
207
333
  * const response = await client.send(command);
208
334
  * ```
@@ -29,6 +29,11 @@ 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 = {
33
+ * StatementId: "STRING_VALUE",
34
+ * RemoveAllPermissions: true || false,
35
+ * EventBusName: "STRING_VALUE",
36
+ * };
32
37
  * const command = new RemovePermissionCommand(input);
33
38
  * const response = await client.send(command);
34
39
  * ```
@@ -35,6 +35,14 @@ 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 = {
39
+ * Rule: "STRING_VALUE", // required
40
+ * EventBusName: "STRING_VALUE",
41
+ * Ids: [ // required
42
+ * "STRING_VALUE",
43
+ * ],
44
+ * Force: true || false,
45
+ * };
38
46
  * const command = new RemoveTargetsCommand(input);
39
47
  * const response = await client.send(command);
40
48
  * ```
@@ -34,6 +34,19 @@ 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 = {
38
+ * ReplayName: "STRING_VALUE", // required
39
+ * Description: "STRING_VALUE",
40
+ * EventSourceArn: "STRING_VALUE", // required
41
+ * EventStartTime: new Date("TIMESTAMP"), // required
42
+ * EventEndTime: new Date("TIMESTAMP"), // required
43
+ * Destination: {
44
+ * Arn: "STRING_VALUE", // required
45
+ * FilterArns: [
46
+ * "STRING_VALUE",
47
+ * ],
48
+ * },
49
+ * };
37
50
  * const command = new StartReplayCommand(input);
38
51
  * const response = await client.send(command);
39
52
  * ```
@@ -36,6 +36,15 @@ 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 = {
40
+ * ResourceARN: "STRING_VALUE", // required
41
+ * Tags: [ // required
42
+ * {
43
+ * Key: "STRING_VALUE", // required
44
+ * Value: "STRING_VALUE", // required
45
+ * },
46
+ * ],
47
+ * };
39
48
  * const command = new TagResourceCommand(input);
40
49
  * const response = await client.send(command);
41
50
  * ```
@@ -30,6 +30,10 @@ export interface TestEventPatternCommandOutput extends TestEventPatternResponse,
30
30
  * import { EventBridgeClient, TestEventPatternCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
31
31
  * // const { EventBridgeClient, TestEventPatternCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
32
32
  * const client = new EventBridgeClient(config);
33
+ * const input = {
34
+ * EventPattern: "STRING_VALUE", // required
35
+ * Event: "STRING_VALUE", // required
36
+ * };
33
37
  * const command = new TestEventPatternCommand(input);
34
38
  * const response = await client.send(command);
35
39
  * ```
@@ -27,6 +27,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
27
27
  * import { EventBridgeClient, UntagResourceCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
28
28
  * // const { EventBridgeClient, UntagResourceCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
29
29
  * const client = new EventBridgeClient(config);
30
+ * const input = {
31
+ * ResourceARN: "STRING_VALUE", // required
32
+ * TagKeys: [ // required
33
+ * "STRING_VALUE",
34
+ * ],
35
+ * };
30
36
  * const command = new UntagResourceCommand(input);
31
37
  * const response = await client.send(command);
32
38
  * ```
@@ -26,6 +26,14 @@ export interface UpdateApiDestinationCommandOutput extends UpdateApiDestinationR
26
26
  * import { EventBridgeClient, UpdateApiDestinationCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
27
27
  * // const { EventBridgeClient, UpdateApiDestinationCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
28
28
  * const client = new EventBridgeClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * Description: "STRING_VALUE",
32
+ * ConnectionArn: "STRING_VALUE",
33
+ * InvocationEndpoint: "STRING_VALUE",
34
+ * HttpMethod: "POST" || "GET" || "HEAD" || "OPTIONS" || "PUT" || "PATCH" || "DELETE",
35
+ * InvocationRateLimitPerSecond: Number("int"),
36
+ * };
29
37
  * const command = new UpdateApiDestinationCommand(input);
30
38
  * const response = await client.send(command);
31
39
  * ```
@@ -26,6 +26,12 @@ export interface UpdateArchiveCommandOutput extends UpdateArchiveResponse, __Met
26
26
  * import { EventBridgeClient, UpdateArchiveCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
27
27
  * // const { EventBridgeClient, UpdateArchiveCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
28
28
  * const client = new EventBridgeClient(config);
29
+ * const input = {
30
+ * ArchiveName: "STRING_VALUE", // required
31
+ * Description: "STRING_VALUE",
32
+ * EventPattern: "STRING_VALUE",
33
+ * RetentionDays: Number("int"),
34
+ * };
29
35
  * const command = new UpdateArchiveCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,75 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionResponse,
26
26
  * import { EventBridgeClient, UpdateConnectionCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
27
27
  * // const { EventBridgeClient, UpdateConnectionCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
28
28
  * const client = new EventBridgeClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * Description: "STRING_VALUE",
32
+ * AuthorizationType: "BASIC" || "OAUTH_CLIENT_CREDENTIALS" || "API_KEY",
33
+ * AuthParameters: {
34
+ * BasicAuthParameters: {
35
+ * Username: "STRING_VALUE",
36
+ * Password: "STRING_VALUE",
37
+ * },
38
+ * OAuthParameters: {
39
+ * ClientParameters: {
40
+ * ClientID: "STRING_VALUE",
41
+ * ClientSecret: "STRING_VALUE",
42
+ * },
43
+ * AuthorizationEndpoint: "STRING_VALUE",
44
+ * HttpMethod: "GET" || "POST" || "PUT",
45
+ * OAuthHttpParameters: {
46
+ * HeaderParameters: [
47
+ * {
48
+ * Key: "STRING_VALUE",
49
+ * Value: "STRING_VALUE",
50
+ * IsValueSecret: true || false,
51
+ * },
52
+ * ],
53
+ * QueryStringParameters: [
54
+ * {
55
+ * Key: "STRING_VALUE",
56
+ * Value: "STRING_VALUE",
57
+ * IsValueSecret: true || false,
58
+ * },
59
+ * ],
60
+ * BodyParameters: [
61
+ * {
62
+ * Key: "STRING_VALUE",
63
+ * Value: "STRING_VALUE",
64
+ * IsValueSecret: true || false,
65
+ * },
66
+ * ],
67
+ * },
68
+ * },
69
+ * ApiKeyAuthParameters: {
70
+ * ApiKeyName: "STRING_VALUE",
71
+ * ApiKeyValue: "STRING_VALUE",
72
+ * },
73
+ * InvocationHttpParameters: {
74
+ * HeaderParameters: [
75
+ * {
76
+ * Key: "STRING_VALUE",
77
+ * Value: "STRING_VALUE",
78
+ * IsValueSecret: true || false,
79
+ * },
80
+ * ],
81
+ * QueryStringParameters: [
82
+ * {
83
+ * Key: "STRING_VALUE",
84
+ * Value: "STRING_VALUE",
85
+ * IsValueSecret: true || false,
86
+ * },
87
+ * ],
88
+ * BodyParameters: [
89
+ * {
90
+ * Key: "STRING_VALUE",
91
+ * Value: "STRING_VALUE",
92
+ * IsValueSecret: true || false,
93
+ * },
94
+ * ],
95
+ * },
96
+ * },
97
+ * };
29
98
  * const command = new UpdateConnectionCommand(input);
30
99
  * const response = await client.send(command);
31
100
  * ```
@@ -26,6 +26,29 @@ export interface UpdateEndpointCommandOutput extends UpdateEndpointResponse, __M
26
26
  * import { EventBridgeClient, UpdateEndpointCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
27
27
  * // const { EventBridgeClient, UpdateEndpointCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
28
28
  * const client = new EventBridgeClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * Description: "STRING_VALUE",
32
+ * RoutingConfig: {
33
+ * FailoverConfig: {
34
+ * Primary: {
35
+ * HealthCheck: "STRING_VALUE", // required
36
+ * },
37
+ * Secondary: {
38
+ * Route: "STRING_VALUE", // required
39
+ * },
40
+ * },
41
+ * },
42
+ * ReplicationConfig: {
43
+ * State: "ENABLED" || "DISABLED",
44
+ * },
45
+ * EventBuses: [
46
+ * {
47
+ * EventBusArn: "STRING_VALUE", // required
48
+ * },
49
+ * ],
50
+ * RoleArn: "STRING_VALUE",
51
+ * };
29
52
  * const command = new UpdateEndpointCommand(input);
30
53
  * const response = await client.send(command);
31
54
  * ```
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.298.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",
@@ -23,26 +23,26 @@
23
23
  "dependencies": {
24
24
  "@aws-crypto/sha256-browser": "3.0.0",
25
25
  "@aws-crypto/sha256-js": "3.0.0",
26
- "@aws-sdk/client-sts": "3.298.0",
27
- "@aws-sdk/config-resolver": "3.296.0",
28
- "@aws-sdk/credential-provider-node": "3.298.0",
26
+ "@aws-sdk/client-sts": "3.300.0",
27
+ "@aws-sdk/config-resolver": "3.300.0",
28
+ "@aws-sdk/credential-provider-node": "3.300.0",
29
29
  "@aws-sdk/fetch-http-handler": "3.296.0",
30
30
  "@aws-sdk/hash-node": "3.296.0",
31
31
  "@aws-sdk/invalid-dependency": "3.296.0",
32
32
  "@aws-sdk/middleware-content-length": "3.296.0",
33
- "@aws-sdk/middleware-endpoint": "3.296.0",
33
+ "@aws-sdk/middleware-endpoint": "3.299.0",
34
34
  "@aws-sdk/middleware-host-header": "3.296.0",
35
35
  "@aws-sdk/middleware-logger": "3.296.0",
36
36
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
37
- "@aws-sdk/middleware-retry": "3.296.0",
37
+ "@aws-sdk/middleware-retry": "3.300.0",
38
38
  "@aws-sdk/middleware-serde": "3.296.0",
39
- "@aws-sdk/middleware-signing": "3.296.0",
39
+ "@aws-sdk/middleware-signing": "3.299.0",
40
40
  "@aws-sdk/middleware-stack": "3.296.0",
41
- "@aws-sdk/middleware-user-agent": "3.296.0",
42
- "@aws-sdk/node-config-provider": "3.296.0",
41
+ "@aws-sdk/middleware-user-agent": "3.299.0",
42
+ "@aws-sdk/node-config-provider": "3.300.0",
43
43
  "@aws-sdk/node-http-handler": "3.296.0",
44
44
  "@aws-sdk/protocol-http": "3.296.0",
45
- "@aws-sdk/signature-v4-multi-region": "3.296.0",
45
+ "@aws-sdk/signature-v4-multi-region": "3.299.0",
46
46
  "@aws-sdk/smithy-client": "3.296.0",
47
47
  "@aws-sdk/types": "3.296.0",
48
48
  "@aws-sdk/url-parser": "3.296.0",
@@ -50,11 +50,11 @@
50
50
  "@aws-sdk/util-body-length-browser": "3.295.0",
51
51
  "@aws-sdk/util-body-length-node": "3.295.0",
52
52
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
53
- "@aws-sdk/util-defaults-mode-node": "3.296.0",
53
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
54
54
  "@aws-sdk/util-endpoints": "3.296.0",
55
55
  "@aws-sdk/util-retry": "3.296.0",
56
- "@aws-sdk/util-user-agent-browser": "3.296.0",
57
- "@aws-sdk/util-user-agent-node": "3.296.0",
56
+ "@aws-sdk/util-user-agent-browser": "3.299.0",
57
+ "@aws-sdk/util-user-agent-node": "3.300.0",
58
58
  "@aws-sdk/util-utf8": "3.295.0",
59
59
  "tslib": "^2.5.0"
60
60
  },