@aws-sdk/client-eventbridge 3.325.0 → 3.327.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 +4 -0
  2. package/dist-types/commands/CancelReplayCommand.d.ts +8 -0
  3. package/dist-types/commands/CreateApiDestinationCommand.d.ts +9 -0
  4. package/dist-types/commands/CreateArchiveCommand.d.ts +9 -0
  5. package/dist-types/commands/CreateConnectionCommand.d.ts +9 -0
  6. package/dist-types/commands/CreateEndpointCommand.d.ts +27 -0
  7. package/dist-types/commands/CreateEventBusCommand.d.ts +6 -0
  8. package/dist-types/commands/CreatePartnerEventSourceCommand.d.ts +6 -0
  9. package/dist-types/commands/DeactivateEventSourceCommand.d.ts +4 -0
  10. package/dist-types/commands/DeauthorizeConnectionCommand.d.ts +10 -0
  11. package/dist-types/commands/DeleteApiDestinationCommand.d.ts +4 -0
  12. package/dist-types/commands/DeleteArchiveCommand.d.ts +4 -0
  13. package/dist-types/commands/DeleteConnectionCommand.d.ts +10 -0
  14. package/dist-types/commands/DeleteEndpointCommand.d.ts +4 -0
  15. package/dist-types/commands/DeleteEventBusCommand.d.ts +4 -0
  16. package/dist-types/commands/DeletePartnerEventSourceCommand.d.ts +4 -0
  17. package/dist-types/commands/DeleteRuleCommand.d.ts +4 -0
  18. package/dist-types/commands/DescribeApiDestinationCommand.d.ts +15 -0
  19. package/dist-types/commands/DescribeArchiveCommand.d.ts +16 -0
  20. package/dist-types/commands/DescribeConnectionCommand.d.ts +76 -0
  21. package/dist-types/commands/DescribeEndpointCommand.d.ts +33 -0
  22. package/dist-types/commands/DescribeEventBusCommand.d.ts +8 -0
  23. package/dist-types/commands/DescribeEventSourceCommand.d.ts +11 -0
  24. package/dist-types/commands/DescribePartnerEventSourceCommand.d.ts +7 -0
  25. package/dist-types/commands/DescribeReplayCommand.d.ts +22 -0
  26. package/dist-types/commands/DescribeRuleCommand.d.ts +15 -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 +19 -0
  30. package/dist-types/commands/ListArchivesCommand.d.ts +18 -0
  31. package/dist-types/commands/ListConnectionsCommand.d.ts +18 -0
  32. package/dist-types/commands/ListEndpointsCommand.d.ts +38 -0
  33. package/dist-types/commands/ListEventBusesCommand.d.ts +13 -0
  34. package/dist-types/commands/ListEventSourcesCommand.d.ts +16 -0
  35. package/dist-types/commands/ListPartnerEventSourceAccountsCommand.d.ts +14 -0
  36. package/dist-types/commands/ListPartnerEventSourcesCommand.d.ts +12 -0
  37. package/dist-types/commands/ListReplaysCommand.d.ts +19 -0
  38. package/dist-types/commands/ListRuleNamesByTargetCommand.d.ts +9 -0
  39. package/dist-types/commands/ListRulesCommand.d.ts +19 -0
  40. package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
  41. package/dist-types/commands/ListTargetsByRuleCommand.d.ts +131 -0
  42. package/dist-types/commands/PutEventsCommand.d.ts +13 -0
  43. package/dist-types/commands/PutPartnerEventsCommand.d.ts +13 -0
  44. package/dist-types/commands/PutPermissionCommand.d.ts +4 -0
  45. package/dist-types/commands/PutRuleCommand.d.ts +6 -0
  46. package/dist-types/commands/PutTargetsCommand.d.ts +13 -0
  47. package/dist-types/commands/RemovePermissionCommand.d.ts +4 -0
  48. package/dist-types/commands/RemoveTargetsCommand.d.ts +13 -0
  49. package/dist-types/commands/StartReplayCommand.d.ts +9 -0
  50. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  51. package/dist-types/commands/TestEventPatternCommand.d.ts +6 -0
  52. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  53. package/dist-types/commands/UpdateApiDestinationCommand.d.ts +9 -0
  54. package/dist-types/commands/UpdateArchiveCommand.d.ts +9 -0
  55. package/dist-types/commands/UpdateConnectionCommand.d.ts +10 -0
  56. package/dist-types/commands/UpdateEndpointCommand.d.ts +29 -0
  57. package/package.json +7 -7
@@ -39,6 +39,26 @@ export interface DescribeReplayCommandOutput extends DescribeReplayResponse, __M
39
39
  * };
40
40
  * const command = new DescribeReplayCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // DescribeReplayResponse
43
+ * // ReplayName: "STRING_VALUE",
44
+ * // ReplayArn: "STRING_VALUE",
45
+ * // Description: "STRING_VALUE",
46
+ * // State: "STARTING" || "RUNNING" || "CANCELLING" || "COMPLETED" || "CANCELLED" || "FAILED",
47
+ * // StateReason: "STRING_VALUE",
48
+ * // EventSourceArn: "STRING_VALUE",
49
+ * // Destination: { // ReplayDestination
50
+ * // Arn: "STRING_VALUE", // required
51
+ * // FilterArns: [ // ReplayDestinationFilters
52
+ * // "STRING_VALUE",
53
+ * // ],
54
+ * // },
55
+ * // EventStartTime: new Date("TIMESTAMP"),
56
+ * // EventEndTime: new Date("TIMESTAMP"),
57
+ * // EventLastReplayedTime: new Date("TIMESTAMP"),
58
+ * // ReplayStartTime: new Date("TIMESTAMP"),
59
+ * // ReplayEndTime: new Date("TIMESTAMP"),
60
+ * // };
61
+ *
42
62
  * ```
43
63
  *
44
64
  * @param DescribeReplayCommandInput - {@link DescribeReplayCommandInput}
@@ -53,6 +73,8 @@ export interface DescribeReplayCommandOutput extends DescribeReplayResponse, __M
53
73
  * @throws {@link ResourceNotFoundException} (client fault)
54
74
  * <p>An entity that you specified does not exist.</p>
55
75
  *
76
+ * @throws {@link EventBridgeServiceException}
77
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
56
78
  *
57
79
  */
58
80
  export declare class DescribeReplayCommand extends $Command<DescribeReplayCommandInput, DescribeReplayCommandOutput, EventBridgeClientResolvedConfig> {
@@ -34,6 +34,19 @@ export interface DescribeRuleCommandOutput extends DescribeRuleResponse, __Metad
34
34
  * };
35
35
  * const command = new DescribeRuleCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DescribeRuleResponse
38
+ * // Name: "STRING_VALUE",
39
+ * // Arn: "STRING_VALUE",
40
+ * // EventPattern: "STRING_VALUE",
41
+ * // ScheduleExpression: "STRING_VALUE",
42
+ * // State: "ENABLED" || "DISABLED",
43
+ * // Description: "STRING_VALUE",
44
+ * // RoleArn: "STRING_VALUE",
45
+ * // ManagedBy: "STRING_VALUE",
46
+ * // EventBusName: "STRING_VALUE",
47
+ * // CreatedBy: "STRING_VALUE",
48
+ * // };
49
+ *
37
50
  * ```
38
51
  *
39
52
  * @param DescribeRuleCommandInput - {@link DescribeRuleCommandInput}
@@ -48,6 +61,8 @@ export interface DescribeRuleCommandOutput extends DescribeRuleResponse, __Metad
48
61
  * @throws {@link ResourceNotFoundException} (client fault)
49
62
  * <p>An entity that you specified does not exist.</p>
50
63
  *
64
+ * @throws {@link EventBridgeServiceException}
65
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
51
66
  *
52
67
  */
53
68
  export declare class DescribeRuleCommand extends $Command<DescribeRuleCommandInput, DescribeRuleCommandOutput, EventBridgeClientResolvedConfig> {
@@ -35,6 +35,8 @@ export interface DisableRuleCommandOutput extends __MetadataBearer {
35
35
  * };
36
36
  * const command = new DisableRuleCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // {};
39
+ *
38
40
  * ```
39
41
  *
40
42
  * @param DisableRuleCommandInput - {@link DisableRuleCommandInput}
@@ -60,6 +62,8 @@ export interface DisableRuleCommandOutput extends __MetadataBearer {
60
62
  * @throws {@link ResourceNotFoundException} (client fault)
61
63
  * <p>An entity that you specified does not exist.</p>
62
64
  *
65
+ * @throws {@link EventBridgeServiceException}
66
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
63
67
  *
64
68
  */
65
69
  export declare class DisableRuleCommand extends $Command<DisableRuleCommandInput, DisableRuleCommandOutput, EventBridgeClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface EnableRuleCommandOutput extends __MetadataBearer {
34
34
  * };
35
35
  * const command = new EnableRuleCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param EnableRuleCommandInput - {@link EnableRuleCommandInput}
@@ -59,6 +61,8 @@ export interface EnableRuleCommandOutput extends __MetadataBearer {
59
61
  * @throws {@link ResourceNotFoundException} (client fault)
60
62
  * <p>An entity that you specified does not exist.</p>
61
63
  *
64
+ * @throws {@link EventBridgeServiceException}
65
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
62
66
  *
63
67
  */
64
68
  export declare class EnableRuleCommand extends $Command<EnableRuleCommandInput, EnableRuleCommandOutput, EventBridgeClientResolvedConfig> {
@@ -34,6 +34,23 @@ export interface ListApiDestinationsCommandOutput extends ListApiDestinationsRes
34
34
  * };
35
35
  * const command = new ListApiDestinationsCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListApiDestinationsResponse
38
+ * // ApiDestinations: [ // ApiDestinationResponseList
39
+ * // { // ApiDestination
40
+ * // ApiDestinationArn: "STRING_VALUE",
41
+ * // Name: "STRING_VALUE",
42
+ * // ApiDestinationState: "ACTIVE" || "INACTIVE",
43
+ * // ConnectionArn: "STRING_VALUE",
44
+ * // InvocationEndpoint: "STRING_VALUE",
45
+ * // HttpMethod: "POST" || "GET" || "HEAD" || "OPTIONS" || "PUT" || "PATCH" || "DELETE",
46
+ * // InvocationRateLimitPerSecond: Number("int"),
47
+ * // CreationTime: new Date("TIMESTAMP"),
48
+ * // LastModifiedTime: new Date("TIMESTAMP"),
49
+ * // },
50
+ * // ],
51
+ * // NextToken: "STRING_VALUE",
52
+ * // };
53
+ *
37
54
  * ```
38
55
  *
39
56
  * @param ListApiDestinationsCommandInput - {@link ListApiDestinationsCommandInput}
@@ -45,6 +62,8 @@ export interface ListApiDestinationsCommandOutput extends ListApiDestinationsRes
45
62
  * @throws {@link InternalException} (server fault)
46
63
  * <p>This exception occurs due to unexpected causes.</p>
47
64
  *
65
+ * @throws {@link EventBridgeServiceException}
66
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
48
67
  *
49
68
  */
50
69
  export declare class ListApiDestinationsCommand extends $Command<ListApiDestinationsCommandInput, ListApiDestinationsCommandOutput, EventBridgeClientResolvedConfig> {
@@ -36,6 +36,22 @@ export interface ListArchivesCommandOutput extends ListArchivesResponse, __Metad
36
36
  * };
37
37
  * const command = new ListArchivesCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListArchivesResponse
40
+ * // Archives: [ // ArchiveResponseList
41
+ * // { // Archive
42
+ * // ArchiveName: "STRING_VALUE",
43
+ * // EventSourceArn: "STRING_VALUE",
44
+ * // State: "ENABLED" || "DISABLED" || "CREATING" || "UPDATING" || "CREATE_FAILED" || "UPDATE_FAILED",
45
+ * // StateReason: "STRING_VALUE",
46
+ * // RetentionDays: Number("int"),
47
+ * // SizeBytes: Number("long"),
48
+ * // EventCount: Number("long"),
49
+ * // CreationTime: new Date("TIMESTAMP"),
50
+ * // },
51
+ * // ],
52
+ * // NextToken: "STRING_VALUE",
53
+ * // };
54
+ *
39
55
  * ```
40
56
  *
41
57
  * @param ListArchivesCommandInput - {@link ListArchivesCommandInput}
@@ -50,6 +66,8 @@ export interface ListArchivesCommandOutput extends ListArchivesResponse, __Metad
50
66
  * @throws {@link ResourceNotFoundException} (client fault)
51
67
  * <p>An entity that you specified does not exist.</p>
52
68
  *
69
+ * @throws {@link EventBridgeServiceException}
70
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
53
71
  *
54
72
  */
55
73
  export declare class ListArchivesCommand extends $Command<ListArchivesCommandInput, ListArchivesCommandOutput, EventBridgeClientResolvedConfig> {
@@ -34,6 +34,22 @@ export interface ListConnectionsCommandOutput extends ListConnectionsResponse, _
34
34
  * };
35
35
  * const command = new ListConnectionsCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListConnectionsResponse
38
+ * // Connections: [ // ConnectionResponseList
39
+ * // { // Connection
40
+ * // ConnectionArn: "STRING_VALUE",
41
+ * // Name: "STRING_VALUE",
42
+ * // ConnectionState: "CREATING" || "UPDATING" || "DELETING" || "AUTHORIZED" || "DEAUTHORIZED" || "AUTHORIZING" || "DEAUTHORIZING",
43
+ * // StateReason: "STRING_VALUE",
44
+ * // AuthorizationType: "BASIC" || "OAUTH_CLIENT_CREDENTIALS" || "API_KEY",
45
+ * // CreationTime: new Date("TIMESTAMP"),
46
+ * // LastModifiedTime: new Date("TIMESTAMP"),
47
+ * // LastAuthorizedTime: new Date("TIMESTAMP"),
48
+ * // },
49
+ * // ],
50
+ * // NextToken: "STRING_VALUE",
51
+ * // };
52
+ *
37
53
  * ```
38
54
  *
39
55
  * @param ListConnectionsCommandInput - {@link ListConnectionsCommandInput}
@@ -45,6 +61,8 @@ export interface ListConnectionsCommandOutput extends ListConnectionsResponse, _
45
61
  * @throws {@link InternalException} (server fault)
46
62
  * <p>This exception occurs due to unexpected causes.</p>
47
63
  *
64
+ * @throws {@link EventBridgeServiceException}
65
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
48
66
  *
49
67
  */
50
68
  export declare class ListConnectionsCommand extends $Command<ListConnectionsCommandInput, ListConnectionsCommandOutput, EventBridgeClientResolvedConfig> {
@@ -34,6 +34,42 @@ export interface ListEndpointsCommandOutput extends ListEndpointsResponse, __Met
34
34
  * };
35
35
  * const command = new ListEndpointsCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListEndpointsResponse
38
+ * // Endpoints: [ // EndpointList
39
+ * // { // Endpoint
40
+ * // Name: "STRING_VALUE",
41
+ * // Description: "STRING_VALUE",
42
+ * // Arn: "STRING_VALUE",
43
+ * // RoutingConfig: { // RoutingConfig
44
+ * // FailoverConfig: { // FailoverConfig
45
+ * // Primary: { // Primary
46
+ * // HealthCheck: "STRING_VALUE", // required
47
+ * // },
48
+ * // Secondary: { // Secondary
49
+ * // Route: "STRING_VALUE", // required
50
+ * // },
51
+ * // },
52
+ * // },
53
+ * // ReplicationConfig: { // ReplicationConfig
54
+ * // State: "ENABLED" || "DISABLED",
55
+ * // },
56
+ * // EventBuses: [ // EndpointEventBusList
57
+ * // { // EndpointEventBus
58
+ * // EventBusArn: "STRING_VALUE", // required
59
+ * // },
60
+ * // ],
61
+ * // RoleArn: "STRING_VALUE",
62
+ * // EndpointId: "STRING_VALUE",
63
+ * // EndpointUrl: "STRING_VALUE",
64
+ * // State: "ACTIVE" || "CREATING" || "UPDATING" || "DELETING" || "CREATE_FAILED" || "UPDATE_FAILED" || "DELETE_FAILED",
65
+ * // StateReason: "STRING_VALUE",
66
+ * // CreationTime: new Date("TIMESTAMP"),
67
+ * // LastModifiedTime: new Date("TIMESTAMP"),
68
+ * // },
69
+ * // ],
70
+ * // NextToken: "STRING_VALUE",
71
+ * // };
72
+ *
37
73
  * ```
38
74
  *
39
75
  * @param ListEndpointsCommandInput - {@link ListEndpointsCommandInput}
@@ -45,6 +81,8 @@ export interface ListEndpointsCommandOutput extends ListEndpointsResponse, __Met
45
81
  * @throws {@link InternalException} (server fault)
46
82
  * <p>This exception occurs due to unexpected causes.</p>
47
83
  *
84
+ * @throws {@link EventBridgeServiceException}
85
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
48
86
  *
49
87
  */
50
88
  export declare class ListEndpointsCommand extends $Command<ListEndpointsCommandInput, ListEndpointsCommandOutput, EventBridgeClientResolvedConfig> {
@@ -34,6 +34,17 @@ export interface ListEventBusesCommandOutput extends ListEventBusesResponse, __M
34
34
  * };
35
35
  * const command = new ListEventBusesCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListEventBusesResponse
38
+ * // EventBuses: [ // EventBusList
39
+ * // { // EventBus
40
+ * // Name: "STRING_VALUE",
41
+ * // Arn: "STRING_VALUE",
42
+ * // Policy: "STRING_VALUE",
43
+ * // },
44
+ * // ],
45
+ * // NextToken: "STRING_VALUE",
46
+ * // };
47
+ *
37
48
  * ```
38
49
  *
39
50
  * @param ListEventBusesCommandInput - {@link ListEventBusesCommandInput}
@@ -45,6 +56,8 @@ export interface ListEventBusesCommandOutput extends ListEventBusesResponse, __M
45
56
  * @throws {@link InternalException} (server fault)
46
57
  * <p>This exception occurs due to unexpected causes.</p>
47
58
  *
59
+ * @throws {@link EventBridgeServiceException}
60
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
48
61
  *
49
62
  */
50
63
  export declare class ListEventBusesCommand extends $Command<ListEventBusesCommandInput, ListEventBusesCommandOutput, EventBridgeClientResolvedConfig> {
@@ -34,6 +34,20 @@ export interface ListEventSourcesCommandOutput extends ListEventSourcesResponse,
34
34
  * };
35
35
  * const command = new ListEventSourcesCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListEventSourcesResponse
38
+ * // EventSources: [ // EventSourceList
39
+ * // { // EventSource
40
+ * // Arn: "STRING_VALUE",
41
+ * // CreatedBy: "STRING_VALUE",
42
+ * // CreationTime: new Date("TIMESTAMP"),
43
+ * // ExpirationTime: new Date("TIMESTAMP"),
44
+ * // Name: "STRING_VALUE",
45
+ * // State: "PENDING" || "ACTIVE" || "DELETED",
46
+ * // },
47
+ * // ],
48
+ * // NextToken: "STRING_VALUE",
49
+ * // };
50
+ *
37
51
  * ```
38
52
  *
39
53
  * @param ListEventSourcesCommandInput - {@link ListEventSourcesCommandInput}
@@ -48,6 +62,8 @@ export interface ListEventSourcesCommandOutput extends ListEventSourcesResponse,
48
62
  * @throws {@link OperationDisabledException} (client fault)
49
63
  * <p>The operation you are attempting is not available in this region.</p>
50
64
  *
65
+ * @throws {@link EventBridgeServiceException}
66
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
51
67
  *
52
68
  */
53
69
  export declare class ListEventSourcesCommand extends $Command<ListEventSourcesCommandInput, ListEventSourcesCommandOutput, EventBridgeClientResolvedConfig> {
@@ -35,6 +35,18 @@ export interface ListPartnerEventSourceAccountsCommandOutput extends ListPartner
35
35
  * };
36
36
  * const command = new ListPartnerEventSourceAccountsCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ListPartnerEventSourceAccountsResponse
39
+ * // PartnerEventSourceAccounts: [ // PartnerEventSourceAccountList
40
+ * // { // PartnerEventSourceAccount
41
+ * // Account: "STRING_VALUE",
42
+ * // CreationTime: new Date("TIMESTAMP"),
43
+ * // ExpirationTime: new Date("TIMESTAMP"),
44
+ * // State: "PENDING" || "ACTIVE" || "DELETED",
45
+ * // },
46
+ * // ],
47
+ * // NextToken: "STRING_VALUE",
48
+ * // };
49
+ *
38
50
  * ```
39
51
  *
40
52
  * @param ListPartnerEventSourceAccountsCommandInput - {@link ListPartnerEventSourceAccountsCommandInput}
@@ -52,6 +64,8 @@ export interface ListPartnerEventSourceAccountsCommandOutput extends ListPartner
52
64
  * @throws {@link ResourceNotFoundException} (client fault)
53
65
  * <p>An entity that you specified does not exist.</p>
54
66
  *
67
+ * @throws {@link EventBridgeServiceException}
68
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
55
69
  *
56
70
  */
57
71
  export declare class ListPartnerEventSourceAccountsCommand extends $Command<ListPartnerEventSourceAccountsCommandInput, ListPartnerEventSourceAccountsCommandOutput, EventBridgeClientResolvedConfig> {
@@ -34,6 +34,16 @@ export interface ListPartnerEventSourcesCommandOutput extends ListPartnerEventSo
34
34
  * };
35
35
  * const command = new ListPartnerEventSourcesCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListPartnerEventSourcesResponse
38
+ * // PartnerEventSources: [ // PartnerEventSourceList
39
+ * // { // PartnerEventSource
40
+ * // Arn: "STRING_VALUE",
41
+ * // Name: "STRING_VALUE",
42
+ * // },
43
+ * // ],
44
+ * // NextToken: "STRING_VALUE",
45
+ * // };
46
+ *
37
47
  * ```
38
48
  *
39
49
  * @param ListPartnerEventSourcesCommandInput - {@link ListPartnerEventSourcesCommandInput}
@@ -48,6 +58,8 @@ export interface ListPartnerEventSourcesCommandOutput extends ListPartnerEventSo
48
58
  * @throws {@link OperationDisabledException} (client fault)
49
59
  * <p>The operation you are attempting is not available in this region.</p>
50
60
  *
61
+ * @throws {@link EventBridgeServiceException}
62
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
51
63
  *
52
64
  */
53
65
  export declare class ListPartnerEventSourcesCommand extends $Command<ListPartnerEventSourcesCommandInput, ListPartnerEventSourcesCommandOutput, EventBridgeClientResolvedConfig> {
@@ -36,6 +36,23 @@ export interface ListReplaysCommandOutput extends ListReplaysResponse, __Metadat
36
36
  * };
37
37
  * const command = new ListReplaysCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListReplaysResponse
40
+ * // Replays: [ // ReplayList
41
+ * // { // Replay
42
+ * // ReplayName: "STRING_VALUE",
43
+ * // EventSourceArn: "STRING_VALUE",
44
+ * // State: "STARTING" || "RUNNING" || "CANCELLING" || "COMPLETED" || "CANCELLED" || "FAILED",
45
+ * // StateReason: "STRING_VALUE",
46
+ * // EventStartTime: new Date("TIMESTAMP"),
47
+ * // EventEndTime: new Date("TIMESTAMP"),
48
+ * // EventLastReplayedTime: new Date("TIMESTAMP"),
49
+ * // ReplayStartTime: new Date("TIMESTAMP"),
50
+ * // ReplayEndTime: new Date("TIMESTAMP"),
51
+ * // },
52
+ * // ],
53
+ * // NextToken: "STRING_VALUE",
54
+ * // };
55
+ *
39
56
  * ```
40
57
  *
41
58
  * @param ListReplaysCommandInput - {@link ListReplaysCommandInput}
@@ -47,6 +64,8 @@ export interface ListReplaysCommandOutput extends ListReplaysResponse, __Metadat
47
64
  * @throws {@link InternalException} (server fault)
48
65
  * <p>This exception occurs due to unexpected causes.</p>
49
66
  *
67
+ * @throws {@link EventBridgeServiceException}
68
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
50
69
  *
51
70
  */
52
71
  export declare class ListReplaysCommand extends $Command<ListReplaysCommandInput, ListReplaysCommandOutput, EventBridgeClientResolvedConfig> {
@@ -35,6 +35,13 @@ export interface ListRuleNamesByTargetCommandOutput extends ListRuleNamesByTarge
35
35
  * };
36
36
  * const command = new ListRuleNamesByTargetCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ListRuleNamesByTargetResponse
39
+ * // RuleNames: [ // RuleNameList
40
+ * // "STRING_VALUE",
41
+ * // ],
42
+ * // NextToken: "STRING_VALUE",
43
+ * // };
44
+ *
38
45
  * ```
39
46
  *
40
47
  * @param ListRuleNamesByTargetCommandInput - {@link ListRuleNamesByTargetCommandInput}
@@ -49,6 +56,8 @@ export interface ListRuleNamesByTargetCommandOutput extends ListRuleNamesByTarge
49
56
  * @throws {@link ResourceNotFoundException} (client fault)
50
57
  * <p>An entity that you specified does not exist.</p>
51
58
  *
59
+ * @throws {@link EventBridgeServiceException}
60
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
52
61
  *
53
62
  */
54
63
  export declare class ListRuleNamesByTargetCommand extends $Command<ListRuleNamesByTargetCommandInput, ListRuleNamesByTargetCommandOutput, EventBridgeClientResolvedConfig> {
@@ -37,6 +37,23 @@ export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBea
37
37
  * };
38
38
  * const command = new ListRulesCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // ListRulesResponse
41
+ * // Rules: [ // RuleResponseList
42
+ * // { // Rule
43
+ * // Name: "STRING_VALUE",
44
+ * // Arn: "STRING_VALUE",
45
+ * // EventPattern: "STRING_VALUE",
46
+ * // State: "ENABLED" || "DISABLED",
47
+ * // Description: "STRING_VALUE",
48
+ * // ScheduleExpression: "STRING_VALUE",
49
+ * // RoleArn: "STRING_VALUE",
50
+ * // ManagedBy: "STRING_VALUE",
51
+ * // EventBusName: "STRING_VALUE",
52
+ * // },
53
+ * // ],
54
+ * // NextToken: "STRING_VALUE",
55
+ * // };
56
+ *
40
57
  * ```
41
58
  *
42
59
  * @param ListRulesCommandInput - {@link ListRulesCommandInput}
@@ -51,6 +68,8 @@ export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBea
51
68
  * @throws {@link ResourceNotFoundException} (client fault)
52
69
  * <p>An entity that you specified does not exist.</p>
53
70
  *
71
+ * @throws {@link EventBridgeServiceException}
72
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
54
73
  *
55
74
  */
56
75
  export declare class ListRulesCommand extends $Command<ListRulesCommandInput, ListRulesCommandOutput, EventBridgeClientResolvedConfig> {
@@ -32,6 +32,15 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
32
32
  * };
33
33
  * const command = new ListTagsForResourceCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListTagsForResourceResponse
36
+ * // Tags: [ // TagList
37
+ * // { // Tag
38
+ * // Key: "STRING_VALUE", // required
39
+ * // Value: "STRING_VALUE", // required
40
+ * // },
41
+ * // ],
42
+ * // };
43
+ *
35
44
  * ```
36
45
  *
37
46
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -46,6 +55,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
46
55
  * @throws {@link ResourceNotFoundException} (client fault)
47
56
  * <p>An entity that you specified does not exist.</p>
48
57
  *
58
+ * @throws {@link EventBridgeServiceException}
59
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
49
60
  *
50
61
  */
51
62
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, EventBridgeClientResolvedConfig> {
@@ -34,6 +34,135 @@ export interface ListTargetsByRuleCommandOutput extends ListTargetsByRuleRespons
34
34
  * };
35
35
  * const command = new ListTargetsByRuleCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListTargetsByRuleResponse
38
+ * // Targets: [ // TargetList
39
+ * // { // Target
40
+ * // Id: "STRING_VALUE", // required
41
+ * // Arn: "STRING_VALUE", // required
42
+ * // RoleArn: "STRING_VALUE",
43
+ * // Input: "STRING_VALUE",
44
+ * // InputPath: "STRING_VALUE",
45
+ * // InputTransformer: { // InputTransformer
46
+ * // InputPathsMap: { // TransformerPaths
47
+ * // "<keys>": "STRING_VALUE",
48
+ * // },
49
+ * // InputTemplate: "STRING_VALUE", // required
50
+ * // },
51
+ * // KinesisParameters: { // KinesisParameters
52
+ * // PartitionKeyPath: "STRING_VALUE", // required
53
+ * // },
54
+ * // RunCommandParameters: { // RunCommandParameters
55
+ * // RunCommandTargets: [ // RunCommandTargets // required
56
+ * // { // RunCommandTarget
57
+ * // Key: "STRING_VALUE", // required
58
+ * // Values: [ // RunCommandTargetValues // required
59
+ * // "STRING_VALUE",
60
+ * // ],
61
+ * // },
62
+ * // ],
63
+ * // },
64
+ * // EcsParameters: { // EcsParameters
65
+ * // TaskDefinitionArn: "STRING_VALUE", // required
66
+ * // TaskCount: Number("int"),
67
+ * // LaunchType: "EC2" || "FARGATE" || "EXTERNAL",
68
+ * // NetworkConfiguration: { // NetworkConfiguration
69
+ * // awsvpcConfiguration: { // AwsVpcConfiguration
70
+ * // Subnets: [ // StringList // required
71
+ * // "STRING_VALUE",
72
+ * // ],
73
+ * // SecurityGroups: [
74
+ * // "STRING_VALUE",
75
+ * // ],
76
+ * // AssignPublicIp: "ENABLED" || "DISABLED",
77
+ * // },
78
+ * // },
79
+ * // PlatformVersion: "STRING_VALUE",
80
+ * // Group: "STRING_VALUE",
81
+ * // CapacityProviderStrategy: [ // CapacityProviderStrategy
82
+ * // { // CapacityProviderStrategyItem
83
+ * // capacityProvider: "STRING_VALUE", // required
84
+ * // weight: Number("int"),
85
+ * // base: Number("int"),
86
+ * // },
87
+ * // ],
88
+ * // EnableECSManagedTags: true || false,
89
+ * // EnableExecuteCommand: true || false,
90
+ * // PlacementConstraints: [ // PlacementConstraints
91
+ * // { // PlacementConstraint
92
+ * // type: "distinctInstance" || "memberOf",
93
+ * // expression: "STRING_VALUE",
94
+ * // },
95
+ * // ],
96
+ * // PlacementStrategy: [ // PlacementStrategies
97
+ * // { // PlacementStrategy
98
+ * // type: "random" || "spread" || "binpack",
99
+ * // field: "STRING_VALUE",
100
+ * // },
101
+ * // ],
102
+ * // PropagateTags: "TASK_DEFINITION",
103
+ * // ReferenceId: "STRING_VALUE",
104
+ * // Tags: [ // TagList
105
+ * // { // Tag
106
+ * // Key: "STRING_VALUE", // required
107
+ * // Value: "STRING_VALUE", // required
108
+ * // },
109
+ * // ],
110
+ * // },
111
+ * // BatchParameters: { // BatchParameters
112
+ * // JobDefinition: "STRING_VALUE", // required
113
+ * // JobName: "STRING_VALUE", // required
114
+ * // ArrayProperties: { // BatchArrayProperties
115
+ * // Size: Number("int"),
116
+ * // },
117
+ * // RetryStrategy: { // BatchRetryStrategy
118
+ * // Attempts: Number("int"),
119
+ * // },
120
+ * // },
121
+ * // SqsParameters: { // SqsParameters
122
+ * // MessageGroupId: "STRING_VALUE",
123
+ * // },
124
+ * // HttpParameters: { // HttpParameters
125
+ * // PathParameterValues: [ // PathParameterList
126
+ * // "STRING_VALUE",
127
+ * // ],
128
+ * // HeaderParameters: { // HeaderParametersMap
129
+ * // "<keys>": "STRING_VALUE",
130
+ * // },
131
+ * // QueryStringParameters: { // QueryStringParametersMap
132
+ * // "<keys>": "STRING_VALUE",
133
+ * // },
134
+ * // },
135
+ * // RedshiftDataParameters: { // RedshiftDataParameters
136
+ * // SecretManagerArn: "STRING_VALUE",
137
+ * // Database: "STRING_VALUE", // required
138
+ * // DbUser: "STRING_VALUE",
139
+ * // Sql: "STRING_VALUE",
140
+ * // StatementName: "STRING_VALUE",
141
+ * // WithEvent: true || false,
142
+ * // Sqls: [ // Sqls
143
+ * // "STRING_VALUE",
144
+ * // ],
145
+ * // },
146
+ * // SageMakerPipelineParameters: { // SageMakerPipelineParameters
147
+ * // PipelineParameterList: [ // SageMakerPipelineParameterList
148
+ * // { // SageMakerPipelineParameter
149
+ * // Name: "STRING_VALUE", // required
150
+ * // Value: "STRING_VALUE", // required
151
+ * // },
152
+ * // ],
153
+ * // },
154
+ * // DeadLetterConfig: { // DeadLetterConfig
155
+ * // Arn: "STRING_VALUE",
156
+ * // },
157
+ * // RetryPolicy: { // RetryPolicy
158
+ * // MaximumRetryAttempts: Number("int"),
159
+ * // MaximumEventAgeInSeconds: Number("int"),
160
+ * // },
161
+ * // },
162
+ * // ],
163
+ * // NextToken: "STRING_VALUE",
164
+ * // };
165
+ *
37
166
  * ```
38
167
  *
39
168
  * @param ListTargetsByRuleCommandInput - {@link ListTargetsByRuleCommandInput}
@@ -48,6 +177,8 @@ export interface ListTargetsByRuleCommandOutput extends ListTargetsByRuleRespons
48
177
  * @throws {@link ResourceNotFoundException} (client fault)
49
178
  * <p>An entity that you specified does not exist.</p>
50
179
  *
180
+ * @throws {@link EventBridgeServiceException}
181
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
51
182
  *
52
183
  */
53
184
  export declare class ListTargetsByRuleCommand extends $Command<ListTargetsByRuleCommandInput, ListTargetsByRuleCommandOutput, EventBridgeClientResolvedConfig> {
@@ -47,6 +47,17 @@ export interface PutEventsCommandOutput extends PutEventsResponse, __MetadataBea
47
47
  * };
48
48
  * const command = new PutEventsCommand(input);
49
49
  * const response = await client.send(command);
50
+ * // { // PutEventsResponse
51
+ * // FailedEntryCount: Number("int"),
52
+ * // Entries: [ // PutEventsResultEntryList
53
+ * // { // PutEventsResultEntry
54
+ * // EventId: "STRING_VALUE",
55
+ * // ErrorCode: "STRING_VALUE",
56
+ * // ErrorMessage: "STRING_VALUE",
57
+ * // },
58
+ * // ],
59
+ * // };
60
+ *
50
61
  * ```
51
62
  *
52
63
  * @param PutEventsCommandInput - {@link PutEventsCommandInput}
@@ -58,6 +69,8 @@ export interface PutEventsCommandOutput extends PutEventsResponse, __MetadataBea
58
69
  * @throws {@link InternalException} (server fault)
59
70
  * <p>This exception occurs due to unexpected causes.</p>
60
71
  *
72
+ * @throws {@link EventBridgeServiceException}
73
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
61
74
  *
62
75
  */
63
76
  export declare class PutEventsCommand extends $Command<PutEventsCommandInput, PutEventsCommandOutput, EventBridgeClientResolvedConfig> {