@aws-sdk/client-eventbridge 3.296.0 → 3.297.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 (61) hide show
  1. package/dist-types/EventBridge.d.ts +57 -0
  2. package/dist-types/EventBridgeClient.d.ts +24 -4
  3. package/dist-types/commands/ActivateEventSourceCommand.d.ts +16 -0
  4. package/dist-types/commands/CancelReplayCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateApiDestinationCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateArchiveCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateConnectionCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateEndpointCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateEventBusCommand.d.ts +16 -0
  10. package/dist-types/commands/CreatePartnerEventSourceCommand.d.ts +16 -0
  11. package/dist-types/commands/DeactivateEventSourceCommand.d.ts +16 -0
  12. package/dist-types/commands/DeauthorizeConnectionCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteApiDestinationCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteArchiveCommand.d.ts +16 -0
  15. package/dist-types/commands/DeleteConnectionCommand.d.ts +16 -0
  16. package/dist-types/commands/DeleteEndpointCommand.d.ts +16 -0
  17. package/dist-types/commands/DeleteEventBusCommand.d.ts +16 -0
  18. package/dist-types/commands/DeletePartnerEventSourceCommand.d.ts +16 -0
  19. package/dist-types/commands/DeleteRuleCommand.d.ts +16 -0
  20. package/dist-types/commands/DescribeApiDestinationCommand.d.ts +16 -0
  21. package/dist-types/commands/DescribeArchiveCommand.d.ts +16 -0
  22. package/dist-types/commands/DescribeConnectionCommand.d.ts +16 -0
  23. package/dist-types/commands/DescribeEndpointCommand.d.ts +16 -0
  24. package/dist-types/commands/DescribeEventBusCommand.d.ts +16 -0
  25. package/dist-types/commands/DescribeEventSourceCommand.d.ts +16 -0
  26. package/dist-types/commands/DescribePartnerEventSourceCommand.d.ts +16 -0
  27. package/dist-types/commands/DescribeReplayCommand.d.ts +16 -0
  28. package/dist-types/commands/DescribeRuleCommand.d.ts +16 -0
  29. package/dist-types/commands/DisableRuleCommand.d.ts +16 -0
  30. package/dist-types/commands/EnableRuleCommand.d.ts +16 -0
  31. package/dist-types/commands/ListApiDestinationsCommand.d.ts +16 -0
  32. package/dist-types/commands/ListArchivesCommand.d.ts +16 -0
  33. package/dist-types/commands/ListConnectionsCommand.d.ts +16 -0
  34. package/dist-types/commands/ListEndpointsCommand.d.ts +16 -0
  35. package/dist-types/commands/ListEventBusesCommand.d.ts +16 -0
  36. package/dist-types/commands/ListEventSourcesCommand.d.ts +16 -0
  37. package/dist-types/commands/ListPartnerEventSourceAccountsCommand.d.ts +16 -0
  38. package/dist-types/commands/ListPartnerEventSourcesCommand.d.ts +16 -0
  39. package/dist-types/commands/ListReplaysCommand.d.ts +16 -0
  40. package/dist-types/commands/ListRuleNamesByTargetCommand.d.ts +16 -0
  41. package/dist-types/commands/ListRulesCommand.d.ts +16 -0
  42. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  43. package/dist-types/commands/ListTargetsByRuleCommand.d.ts +16 -0
  44. package/dist-types/commands/PutEventsCommand.d.ts +16 -0
  45. package/dist-types/commands/PutPartnerEventsCommand.d.ts +16 -0
  46. package/dist-types/commands/PutPermissionCommand.d.ts +16 -0
  47. package/dist-types/commands/PutRuleCommand.d.ts +16 -0
  48. package/dist-types/commands/PutTargetsCommand.d.ts +16 -0
  49. package/dist-types/commands/RemovePermissionCommand.d.ts +16 -0
  50. package/dist-types/commands/RemoveTargetsCommand.d.ts +16 -0
  51. package/dist-types/commands/StartReplayCommand.d.ts +16 -0
  52. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  53. package/dist-types/commands/TestEventPatternCommand.d.ts +16 -0
  54. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  55. package/dist-types/commands/UpdateApiDestinationCommand.d.ts +16 -0
  56. package/dist-types/commands/UpdateArchiveCommand.d.ts +16 -0
  57. package/dist-types/commands/UpdateConnectionCommand.d.ts +16 -0
  58. package/dist-types/commands/UpdateEndpointCommand.d.ts +16 -0
  59. package/dist-types/models/EventBridgeServiceException.d.ts +2 -0
  60. package/dist-types/models/models_0.d.ts +449 -16
  61. package/package.json +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient";
5
5
  import { UpdateConnectionRequest, UpdateConnectionResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateConnectionCommand}.
8
10
  */
9
11
  export interface UpdateConnectionCommandInput extends UpdateConnectionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateConnectionCommand}.
13
17
  */
14
18
  export interface UpdateConnectionCommandOutput extends UpdateConnectionResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates settings for a connection.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionResponse,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateConnectionCommandInput - {@link UpdateConnectionCommandInput}
34
+ * @returns {@link UpdateConnectionCommandOutput}
28
35
  * @see {@link UpdateConnectionCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateConnectionCommandOutput} for command's `response` shape.
30
37
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
@@ -47,11 +54,20 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionResponse,
47
54
  export declare class UpdateConnectionCommand extends $Command<UpdateConnectionCommandInput, UpdateConnectionCommandOutput, EventBridgeClientResolvedConfig> {
48
55
  readonly input: UpdateConnectionCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: UpdateConnectionCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EventBridgeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateConnectionCommandInput, UpdateConnectionCommandOutput>;
65
+ /**
66
+ * @internal
67
+ */
55
68
  private serialize;
69
+ /**
70
+ * @internal
71
+ */
56
72
  private deserialize;
57
73
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient";
5
5
  import { UpdateEndpointRequest, UpdateEndpointResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateEndpointCommand}.
8
10
  */
9
11
  export interface UpdateEndpointCommandInput extends UpdateEndpointRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateEndpointCommand}.
13
17
  */
14
18
  export interface UpdateEndpointCommandOutput extends UpdateEndpointResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Update an existing endpoint. For more information about global endpoints, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-global-endpoints.html">Making applications Regional-fault tolerant with global endpoints and event replication</a> in the Amazon EventBridge User Guide..</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateEndpointCommandOutput extends UpdateEndpointResponse, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateEndpointCommandInput - {@link UpdateEndpointCommandInput}
34
+ * @returns {@link UpdateEndpointCommandOutput}
28
35
  * @see {@link UpdateEndpointCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateEndpointCommandOutput} for command's `response` shape.
30
37
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
@@ -43,11 +50,20 @@ export interface UpdateEndpointCommandOutput extends UpdateEndpointResponse, __M
43
50
  export declare class UpdateEndpointCommand extends $Command<UpdateEndpointCommandInput, UpdateEndpointCommandOutput, EventBridgeClientResolvedConfig> {
44
51
  readonly input: UpdateEndpointCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: UpdateEndpointCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EventBridgeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateEndpointCommandInput, UpdateEndpointCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from EventBridge service.
4
6
  */
5
7
  export declare class EventBridgeServiceException extends __ServiceException {