@aws-sdk/client-eventbridge 3.300.0 → 3.301.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 +1 -1
  2. package/dist-types/commands/CancelReplayCommand.d.ts +1 -1
  3. package/dist-types/commands/CreateApiDestinationCommand.d.ts +1 -1
  4. package/dist-types/commands/CreateArchiveCommand.d.ts +1 -1
  5. package/dist-types/commands/CreateConnectionCommand.d.ts +13 -13
  6. package/dist-types/commands/CreateEndpointCommand.d.ts +8 -8
  7. package/dist-types/commands/CreateEventBusCommand.d.ts +3 -3
  8. package/dist-types/commands/CreatePartnerEventSourceCommand.d.ts +1 -1
  9. package/dist-types/commands/DeactivateEventSourceCommand.d.ts +1 -1
  10. package/dist-types/commands/DeauthorizeConnectionCommand.d.ts +1 -1
  11. package/dist-types/commands/DeleteApiDestinationCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteArchiveCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteConnectionCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteEndpointCommand.d.ts +1 -1
  15. package/dist-types/commands/DeleteEventBusCommand.d.ts +1 -1
  16. package/dist-types/commands/DeletePartnerEventSourceCommand.d.ts +1 -1
  17. package/dist-types/commands/DeleteRuleCommand.d.ts +1 -1
  18. package/dist-types/commands/DescribeApiDestinationCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeArchiveCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribeConnectionCommand.d.ts +1 -1
  21. package/dist-types/commands/DescribeEndpointCommand.d.ts +1 -1
  22. package/dist-types/commands/DescribeEventBusCommand.d.ts +1 -1
  23. package/dist-types/commands/DescribeEventSourceCommand.d.ts +1 -1
  24. package/dist-types/commands/DescribePartnerEventSourceCommand.d.ts +1 -1
  25. package/dist-types/commands/DescribeReplayCommand.d.ts +1 -1
  26. package/dist-types/commands/DescribeRuleCommand.d.ts +1 -1
  27. package/dist-types/commands/DisableRuleCommand.d.ts +1 -1
  28. package/dist-types/commands/EnableRuleCommand.d.ts +1 -1
  29. package/dist-types/commands/ListApiDestinationsCommand.d.ts +1 -1
  30. package/dist-types/commands/ListArchivesCommand.d.ts +1 -1
  31. package/dist-types/commands/ListConnectionsCommand.d.ts +1 -1
  32. package/dist-types/commands/ListEndpointsCommand.d.ts +1 -1
  33. package/dist-types/commands/ListEventBusesCommand.d.ts +1 -1
  34. package/dist-types/commands/ListEventSourcesCommand.d.ts +1 -1
  35. package/dist-types/commands/ListPartnerEventSourceAccountsCommand.d.ts +1 -1
  36. package/dist-types/commands/ListPartnerEventSourcesCommand.d.ts +1 -1
  37. package/dist-types/commands/ListReplaysCommand.d.ts +1 -1
  38. package/dist-types/commands/ListRuleNamesByTargetCommand.d.ts +1 -1
  39. package/dist-types/commands/ListRulesCommand.d.ts +1 -1
  40. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  41. package/dist-types/commands/ListTargetsByRuleCommand.d.ts +1 -1
  42. package/dist-types/commands/PutEventsCommand.d.ts +4 -4
  43. package/dist-types/commands/PutPartnerEventsCommand.d.ts +4 -4
  44. package/dist-types/commands/PutPermissionCommand.d.ts +2 -2
  45. package/dist-types/commands/PutRuleCommand.d.ts +3 -3
  46. package/dist-types/commands/PutTargetsCommand.d.ts +36 -36
  47. package/dist-types/commands/RemovePermissionCommand.d.ts +1 -1
  48. package/dist-types/commands/RemoveTargetsCommand.d.ts +2 -2
  49. package/dist-types/commands/StartReplayCommand.d.ts +3 -3
  50. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  51. package/dist-types/commands/TestEventPatternCommand.d.ts +1 -1
  52. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  53. package/dist-types/commands/UpdateApiDestinationCommand.d.ts +1 -1
  54. package/dist-types/commands/UpdateArchiveCommand.d.ts +1 -1
  55. package/dist-types/commands/UpdateConnectionCommand.d.ts +13 -13
  56. package/dist-types/commands/UpdateEndpointCommand.d.ts +8 -8
  57. package/package.json +3 -3
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // ActivateEventSourceRequest
31
31
  * Name: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new ActivateEventSourceCommand(input);
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // CancelReplayRequest
30
30
  * ReplayName: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new CancelReplayCommand(input);
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // CreateApiDestinationRequest
31
31
  * Name: "STRING_VALUE", // required
32
32
  * Description: "STRING_VALUE",
33
33
  * ConnectionArn: "STRING_VALUE", // required
@@ -30,7 +30,7 @@ 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 = {
33
+ * const input = { // CreateArchiveRequest
34
34
  * ArchiveName: "STRING_VALUE", // required
35
35
  * EventSourceArn: "STRING_VALUE", // required
36
36
  * Description: "STRING_VALUE",
@@ -27,39 +27,39 @@ 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 = {
30
+ * const input = { // CreateConnectionRequest
31
31
  * Name: "STRING_VALUE", // required
32
32
  * Description: "STRING_VALUE",
33
33
  * AuthorizationType: "BASIC" || "OAUTH_CLIENT_CREDENTIALS" || "API_KEY", // required
34
- * AuthParameters: {
35
- * BasicAuthParameters: {
34
+ * AuthParameters: { // CreateConnectionAuthRequestParameters
35
+ * BasicAuthParameters: { // CreateConnectionBasicAuthRequestParameters
36
36
  * Username: "STRING_VALUE", // required
37
37
  * Password: "STRING_VALUE", // required
38
38
  * },
39
- * OAuthParameters: {
40
- * ClientParameters: {
39
+ * OAuthParameters: { // CreateConnectionOAuthRequestParameters
40
+ * ClientParameters: { // CreateConnectionOAuthClientRequestParameters
41
41
  * ClientID: "STRING_VALUE", // required
42
42
  * ClientSecret: "STRING_VALUE", // required
43
43
  * },
44
44
  * AuthorizationEndpoint: "STRING_VALUE", // required
45
45
  * HttpMethod: "GET" || "POST" || "PUT", // required
46
- * OAuthHttpParameters: {
47
- * HeaderParameters: [
48
- * {
46
+ * OAuthHttpParameters: { // ConnectionHttpParameters
47
+ * HeaderParameters: [ // ConnectionHeaderParametersList
48
+ * { // ConnectionHeaderParameter
49
49
  * Key: "STRING_VALUE",
50
50
  * Value: "STRING_VALUE",
51
51
  * IsValueSecret: true || false,
52
52
  * },
53
53
  * ],
54
- * QueryStringParameters: [
55
- * {
54
+ * QueryStringParameters: [ // ConnectionQueryStringParametersList
55
+ * { // ConnectionQueryStringParameter
56
56
  * Key: "STRING_VALUE",
57
57
  * Value: "STRING_VALUE",
58
58
  * IsValueSecret: true || false,
59
59
  * },
60
60
  * ],
61
- * BodyParameters: [
62
- * {
61
+ * BodyParameters: [ // ConnectionBodyParametersList
62
+ * { // ConnectionBodyParameter
63
63
  * Key: "STRING_VALUE",
64
64
  * Value: "STRING_VALUE",
65
65
  * IsValueSecret: true || false,
@@ -67,7 +67,7 @@ export interface CreateConnectionCommandOutput extends CreateConnectionResponse,
67
67
  * ],
68
68
  * },
69
69
  * },
70
- * ApiKeyAuthParameters: {
70
+ * ApiKeyAuthParameters: { // CreateConnectionApiKeyAuthRequestParameters
71
71
  * ApiKeyName: "STRING_VALUE", // required
72
72
  * ApiKeyValue: "STRING_VALUE", // required
73
73
  * },
@@ -28,24 +28,24 @@ 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 = {
31
+ * const input = { // CreateEndpointRequest
32
32
  * Name: "STRING_VALUE", // required
33
33
  * Description: "STRING_VALUE",
34
- * RoutingConfig: {
35
- * FailoverConfig: {
36
- * Primary: {
34
+ * RoutingConfig: { // RoutingConfig
35
+ * FailoverConfig: { // FailoverConfig
36
+ * Primary: { // Primary
37
37
  * HealthCheck: "STRING_VALUE", // required
38
38
  * },
39
- * Secondary: {
39
+ * Secondary: { // Secondary
40
40
  * Route: "STRING_VALUE", // required
41
41
  * },
42
42
  * },
43
43
  * },
44
- * ReplicationConfig: {
44
+ * ReplicationConfig: { // ReplicationConfig
45
45
  * State: "ENABLED" || "DISABLED",
46
46
  * },
47
- * EventBuses: [ // required
48
- * {
47
+ * EventBuses: [ // EndpointEventBusList // required
48
+ * { // EndpointEventBus
49
49
  * EventBusArn: "STRING_VALUE", // required
50
50
  * },
51
51
  * ],
@@ -28,11 +28,11 @@ 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 = {
31
+ * const input = { // CreateEventBusRequest
32
32
  * Name: "STRING_VALUE", // required
33
33
  * EventSourceName: "STRING_VALUE",
34
- * Tags: [
35
- * {
34
+ * Tags: [ // TagList
35
+ * { // Tag
36
36
  * Key: "STRING_VALUE", // required
37
37
  * Value: "STRING_VALUE", // required
38
38
  * },
@@ -49,7 +49,7 @@ 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 = {
52
+ * const input = { // CreatePartnerEventSourceRequest
53
53
  * Name: "STRING_VALUE", // required
54
54
  * Account: "STRING_VALUE", // required
55
55
  * };
@@ -30,7 +30,7 @@ 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 = {
33
+ * const input = { // DeactivateEventSourceRequest
34
34
  * Name: "STRING_VALUE", // required
35
35
  * };
36
36
  * const command = new DeactivateEventSourceCommand(input);
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // DeauthorizeConnectionRequest
31
31
  * Name: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new DeauthorizeConnectionCommand(input);
@@ -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
  * },
@@ -30,7 +30,7 @@ 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 = {
33
+ * const input = { // TestEventPatternRequest
34
34
  * EventPattern: "STRING_VALUE", // required
35
35
  * Event: "STRING_VALUE", // required
36
36
  * };
@@ -27,9 +27,9 @@ 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 = {
30
+ * const input = { // UntagResourceRequest
31
31
  * ResourceARN: "STRING_VALUE", // required
32
- * TagKeys: [ // required
32
+ * TagKeys: [ // TagKeyList // required
33
33
  * "STRING_VALUE",
34
34
  * ],
35
35
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // UpdateApiDestinationRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * Description: "STRING_VALUE",
32
32
  * ConnectionArn: "STRING_VALUE",
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // UpdateArchiveRequest
30
30
  * ArchiveName: "STRING_VALUE", // required
31
31
  * Description: "STRING_VALUE",
32
32
  * EventPattern: "STRING_VALUE",
@@ -26,39 +26,39 @@ 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 = {
29
+ * const input = { // UpdateConnectionRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * Description: "STRING_VALUE",
32
32
  * AuthorizationType: "BASIC" || "OAUTH_CLIENT_CREDENTIALS" || "API_KEY",
33
- * AuthParameters: {
34
- * BasicAuthParameters: {
33
+ * AuthParameters: { // UpdateConnectionAuthRequestParameters
34
+ * BasicAuthParameters: { // UpdateConnectionBasicAuthRequestParameters
35
35
  * Username: "STRING_VALUE",
36
36
  * Password: "STRING_VALUE",
37
37
  * },
38
- * OAuthParameters: {
39
- * ClientParameters: {
38
+ * OAuthParameters: { // UpdateConnectionOAuthRequestParameters
39
+ * ClientParameters: { // UpdateConnectionOAuthClientRequestParameters
40
40
  * ClientID: "STRING_VALUE",
41
41
  * ClientSecret: "STRING_VALUE",
42
42
  * },
43
43
  * AuthorizationEndpoint: "STRING_VALUE",
44
44
  * HttpMethod: "GET" || "POST" || "PUT",
45
- * OAuthHttpParameters: {
46
- * HeaderParameters: [
47
- * {
45
+ * OAuthHttpParameters: { // ConnectionHttpParameters
46
+ * HeaderParameters: [ // ConnectionHeaderParametersList
47
+ * { // ConnectionHeaderParameter
48
48
  * Key: "STRING_VALUE",
49
49
  * Value: "STRING_VALUE",
50
50
  * IsValueSecret: true || false,
51
51
  * },
52
52
  * ],
53
- * QueryStringParameters: [
54
- * {
53
+ * QueryStringParameters: [ // ConnectionQueryStringParametersList
54
+ * { // ConnectionQueryStringParameter
55
55
  * Key: "STRING_VALUE",
56
56
  * Value: "STRING_VALUE",
57
57
  * IsValueSecret: true || false,
58
58
  * },
59
59
  * ],
60
- * BodyParameters: [
61
- * {
60
+ * BodyParameters: [ // ConnectionBodyParametersList
61
+ * { // ConnectionBodyParameter
62
62
  * Key: "STRING_VALUE",
63
63
  * Value: "STRING_VALUE",
64
64
  * IsValueSecret: true || false,
@@ -66,7 +66,7 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionResponse,
66
66
  * ],
67
67
  * },
68
68
  * },
69
- * ApiKeyAuthParameters: {
69
+ * ApiKeyAuthParameters: { // UpdateConnectionApiKeyAuthRequestParameters
70
70
  * ApiKeyName: "STRING_VALUE",
71
71
  * ApiKeyValue: "STRING_VALUE",
72
72
  * },
@@ -26,24 +26,24 @@ 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 = {
29
+ * const input = { // UpdateEndpointRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * Description: "STRING_VALUE",
32
- * RoutingConfig: {
33
- * FailoverConfig: {
34
- * Primary: {
32
+ * RoutingConfig: { // RoutingConfig
33
+ * FailoverConfig: { // FailoverConfig
34
+ * Primary: { // Primary
35
35
  * HealthCheck: "STRING_VALUE", // required
36
36
  * },
37
- * Secondary: {
37
+ * Secondary: { // Secondary
38
38
  * Route: "STRING_VALUE", // required
39
39
  * },
40
40
  * },
41
41
  * },
42
- * ReplicationConfig: {
42
+ * ReplicationConfig: { // ReplicationConfig
43
43
  * State: "ENABLED" || "DISABLED",
44
44
  * },
45
- * EventBuses: [
46
- * {
45
+ * EventBuses: [ // EndpointEventBusList
46
+ * { // EndpointEventBus
47
47
  * EventBusArn: "STRING_VALUE", // required
48
48
  * },
49
49
  * ],
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.300.0",
4
+ "version": "3.301.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,9 +23,9 @@
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.300.0",
26
+ "@aws-sdk/client-sts": "3.301.0",
27
27
  "@aws-sdk/config-resolver": "3.300.0",
28
- "@aws-sdk/credential-provider-node": "3.300.0",
28
+ "@aws-sdk/credential-provider-node": "3.301.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",