@aws-sdk/client-eventbridge 3.289.0 → 3.292.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 +16 -0
  2. package/dist-types/commands/CancelReplayCommand.d.ts +14 -0
  3. package/dist-types/commands/CreateApiDestinationCommand.d.ts +14 -0
  4. package/dist-types/commands/CreateArchiveCommand.d.ts +20 -0
  5. package/dist-types/commands/CreateConnectionCommand.d.ts +11 -0
  6. package/dist-types/commands/CreateEndpointCommand.d.ts +11 -0
  7. package/dist-types/commands/CreateEventBusCommand.d.ts +23 -0
  8. package/dist-types/commands/CreatePartnerEventSourceCommand.d.ts +17 -0
  9. package/dist-types/commands/DeactivateEventSourceCommand.d.ts +16 -0
  10. package/dist-types/commands/DeauthorizeConnectionCommand.d.ts +10 -0
  11. package/dist-types/commands/DeleteApiDestinationCommand.d.ts +10 -0
  12. package/dist-types/commands/DeleteArchiveCommand.d.ts +10 -0
  13. package/dist-types/commands/DeleteConnectionCommand.d.ts +10 -0
  14. package/dist-types/commands/DeleteEndpointCommand.d.ts +10 -0
  15. package/dist-types/commands/DeleteEventBusCommand.d.ts +7 -0
  16. package/dist-types/commands/DeletePartnerEventSourceCommand.d.ts +10 -0
  17. package/dist-types/commands/DeleteRuleCommand.d.ts +18 -0
  18. package/dist-types/commands/DescribeApiDestinationCommand.d.ts +7 -0
  19. package/dist-types/commands/DescribeArchiveCommand.d.ts +10 -0
  20. package/dist-types/commands/DescribeConnectionCommand.d.ts +7 -0
  21. package/dist-types/commands/DescribeEndpointCommand.d.ts +7 -0
  22. package/dist-types/commands/DescribeEventBusCommand.d.ts +7 -0
  23. package/dist-types/commands/DescribeEventSourceCommand.d.ts +10 -0
  24. package/dist-types/commands/DescribePartnerEventSourceCommand.d.ts +10 -0
  25. package/dist-types/commands/DescribeReplayCommand.d.ts +7 -0
  26. package/dist-types/commands/DescribeRuleCommand.d.ts +7 -0
  27. package/dist-types/commands/DisableRuleCommand.d.ts +18 -0
  28. package/dist-types/commands/EnableRuleCommand.d.ts +18 -0
  29. package/dist-types/commands/ListApiDestinationsCommand.d.ts +4 -0
  30. package/dist-types/commands/ListArchivesCommand.d.ts +7 -0
  31. package/dist-types/commands/ListConnectionsCommand.d.ts +4 -0
  32. package/dist-types/commands/ListEndpointsCommand.d.ts +4 -0
  33. package/dist-types/commands/ListEventBusesCommand.d.ts +4 -0
  34. package/dist-types/commands/ListEventSourcesCommand.d.ts +7 -0
  35. package/dist-types/commands/ListPartnerEventSourceAccountsCommand.d.ts +10 -0
  36. package/dist-types/commands/ListPartnerEventSourcesCommand.d.ts +7 -0
  37. package/dist-types/commands/ListReplaysCommand.d.ts +4 -0
  38. package/dist-types/commands/ListRuleNamesByTargetCommand.d.ts +7 -0
  39. package/dist-types/commands/ListRulesCommand.d.ts +7 -0
  40. package/dist-types/commands/ListTagsForResourceCommand.d.ts +7 -0
  41. package/dist-types/commands/ListTargetsByRuleCommand.d.ts +7 -0
  42. package/dist-types/commands/PutEventsCommand.d.ts +4 -0
  43. package/dist-types/commands/PutPartnerEventsCommand.d.ts +7 -0
  44. package/dist-types/commands/PutPermissionCommand.d.ts +16 -0
  45. package/dist-types/commands/PutRuleCommand.d.ts +25 -0
  46. package/dist-types/commands/PutTargetsCommand.d.ts +22 -0
  47. package/dist-types/commands/RemovePermissionCommand.d.ts +13 -0
  48. package/dist-types/commands/RemoveTargetsCommand.d.ts +18 -0
  49. package/dist-types/commands/StartReplayCommand.d.ts +17 -0
  50. package/dist-types/commands/TagResourceCommand.d.ts +18 -0
  51. package/dist-types/commands/TestEventPatternCommand.d.ts +7 -0
  52. package/dist-types/commands/UntagResourceCommand.d.ts +18 -0
  53. package/dist-types/commands/UpdateApiDestinationCommand.d.ts +14 -0
  54. package/dist-types/commands/UpdateArchiveCommand.d.ts +17 -0
  55. package/dist-types/commands/UpdateConnectionCommand.d.ts +14 -0
  56. package/dist-types/commands/UpdateEndpointCommand.d.ts +10 -0
  57. package/package.json +36 -41
@@ -31,6 +31,16 @@ export interface ListPartnerEventSourceAccountsCommandOutput extends ListPartner
31
31
  * @see {@link ListPartnerEventSourceAccountsCommandOutput} for command's `response` shape.
32
32
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
33
33
  *
34
+ * @throws {@link InternalException} (server fault)
35
+ * <p>This exception occurs due to unexpected causes.</p>
36
+ *
37
+ * @throws {@link OperationDisabledException} (client fault)
38
+ * <p>The operation you are attempting is not available in this region.</p>
39
+ *
40
+ * @throws {@link ResourceNotFoundException} (client fault)
41
+ * <p>An entity that you specified does not exist.</p>
42
+ *
43
+ *
34
44
  */
35
45
  export declare class ListPartnerEventSourceAccountsCommand extends $Command<ListPartnerEventSourceAccountsCommandInput, ListPartnerEventSourceAccountsCommandOutput, EventBridgeClientResolvedConfig> {
36
46
  readonly input: ListPartnerEventSourceAccountsCommandInput;
@@ -30,6 +30,13 @@ export interface ListPartnerEventSourcesCommandOutput extends ListPartnerEventSo
30
30
  * @see {@link ListPartnerEventSourcesCommandOutput} for command's `response` shape.
31
31
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalException} (server fault)
34
+ * <p>This exception occurs due to unexpected causes.</p>
35
+ *
36
+ * @throws {@link OperationDisabledException} (client fault)
37
+ * <p>The operation you are attempting is not available in this region.</p>
38
+ *
39
+ *
33
40
  */
34
41
  export declare class ListPartnerEventSourcesCommand extends $Command<ListPartnerEventSourcesCommandInput, ListPartnerEventSourcesCommandOutput, EventBridgeClientResolvedConfig> {
35
42
  readonly input: ListPartnerEventSourcesCommandInput;
@@ -30,6 +30,10 @@ export interface ListReplaysCommandOutput extends ListReplaysResponse, __Metadat
30
30
  * @see {@link ListReplaysCommandOutput} for command's `response` shape.
31
31
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalException} (server fault)
34
+ * <p>This exception occurs due to unexpected causes.</p>
35
+ *
36
+ *
33
37
  */
34
38
  export declare class ListReplaysCommand extends $Command<ListReplaysCommandInput, ListReplaysCommandOutput, EventBridgeClientResolvedConfig> {
35
39
  readonly input: ListReplaysCommandInput;
@@ -30,6 +30,13 @@ export interface ListRuleNamesByTargetCommandOutput extends ListRuleNamesByTarge
30
30
  * @see {@link ListRuleNamesByTargetCommandOutput} for command's `response` shape.
31
31
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalException} (server fault)
34
+ * <p>This exception occurs due to unexpected causes.</p>
35
+ *
36
+ * @throws {@link ResourceNotFoundException} (client fault)
37
+ * <p>An entity that you specified does not exist.</p>
38
+ *
39
+ *
33
40
  */
34
41
  export declare class ListRuleNamesByTargetCommand extends $Command<ListRuleNamesByTargetCommandInput, ListRuleNamesByTargetCommandOutput, EventBridgeClientResolvedConfig> {
35
42
  readonly input: ListRuleNamesByTargetCommandInput;
@@ -32,6 +32,13 @@ export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBea
32
32
  * @see {@link ListRulesCommandOutput} for command's `response` shape.
33
33
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
34
34
  *
35
+ * @throws {@link InternalException} (server fault)
36
+ * <p>This exception occurs due to unexpected causes.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>An entity that you specified does not exist.</p>
40
+ *
41
+ *
35
42
  */
36
43
  export declare class ListRulesCommand extends $Command<ListRulesCommandInput, ListRulesCommandOutput, EventBridgeClientResolvedConfig> {
37
44
  readonly input: ListRulesCommandInput;
@@ -30,6 +30,13 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
30
30
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
31
31
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalException} (server fault)
34
+ * <p>This exception occurs due to unexpected causes.</p>
35
+ *
36
+ * @throws {@link ResourceNotFoundException} (client fault)
37
+ * <p>An entity that you specified does not exist.</p>
38
+ *
39
+ *
33
40
  */
34
41
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, EventBridgeClientResolvedConfig> {
35
42
  readonly input: ListTagsForResourceCommandInput;
@@ -29,6 +29,13 @@ export interface ListTargetsByRuleCommandOutput extends ListTargetsByRuleRespons
29
29
  * @see {@link ListTargetsByRuleCommandOutput} for command's `response` shape.
30
30
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalException} (server fault)
33
+ * <p>This exception occurs due to unexpected causes.</p>
34
+ *
35
+ * @throws {@link ResourceNotFoundException} (client fault)
36
+ * <p>An entity that you specified does not exist.</p>
37
+ *
38
+ *
32
39
  */
33
40
  export declare class ListTargetsByRuleCommand extends $Command<ListTargetsByRuleCommandInput, ListTargetsByRuleCommandOutput, EventBridgeClientResolvedConfig> {
34
41
  readonly input: ListTargetsByRuleCommandInput;
@@ -32,6 +32,10 @@ export interface PutEventsCommandOutput extends PutEventsResponse, __MetadataBea
32
32
  * @see {@link PutEventsCommandOutput} for command's `response` shape.
33
33
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
34
34
  *
35
+ * @throws {@link InternalException} (server fault)
36
+ * <p>This exception occurs due to unexpected causes.</p>
37
+ *
38
+ *
35
39
  */
36
40
  export declare class PutEventsCommand extends $Command<PutEventsCommandInput, PutEventsCommandOutput, EventBridgeClientResolvedConfig> {
37
41
  readonly input: PutEventsCommandInput;
@@ -30,6 +30,13 @@ export interface PutPartnerEventsCommandOutput extends PutPartnerEventsResponse,
30
30
  * @see {@link PutPartnerEventsCommandOutput} for command's `response` shape.
31
31
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalException} (server fault)
34
+ * <p>This exception occurs due to unexpected causes.</p>
35
+ *
36
+ * @throws {@link OperationDisabledException} (client fault)
37
+ * <p>The operation you are attempting is not available in this region.</p>
38
+ *
39
+ *
33
40
  */
34
41
  export declare class PutPartnerEventsCommand extends $Command<PutPartnerEventsCommandInput, PutPartnerEventsCommandOutput, EventBridgeClientResolvedConfig> {
35
42
  readonly input: PutPartnerEventsCommandInput;
@@ -45,6 +45,22 @@ export interface PutPermissionCommandOutput extends __MetadataBearer {
45
45
  * @see {@link PutPermissionCommandOutput} for command's `response` shape.
46
46
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
47
47
  *
48
+ * @throws {@link ConcurrentModificationException} (client fault)
49
+ * <p>There is concurrent modification on a rule, target, archive, or replay.</p>
50
+ *
51
+ * @throws {@link InternalException} (server fault)
52
+ * <p>This exception occurs due to unexpected causes.</p>
53
+ *
54
+ * @throws {@link OperationDisabledException} (client fault)
55
+ * <p>The operation you are attempting is not available in this region.</p>
56
+ *
57
+ * @throws {@link PolicyLengthExceededException} (client fault)
58
+ * <p>The event bus policy is too long. For more information, see the limits.</p>
59
+ *
60
+ * @throws {@link ResourceNotFoundException} (client fault)
61
+ * <p>An entity that you specified does not exist.</p>
62
+ *
63
+ *
48
64
  */
49
65
  export declare class PutPermissionCommand extends $Command<PutPermissionCommandInput, PutPermissionCommandOutput, EventBridgeClientResolvedConfig> {
50
66
  readonly input: PutPermissionCommandInput;
@@ -68,6 +68,31 @@ export interface PutRuleCommandOutput extends PutRuleResponse, __MetadataBearer
68
68
  * @see {@link PutRuleCommandOutput} for command's `response` shape.
69
69
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
70
70
  *
71
+ * @throws {@link ConcurrentModificationException} (client fault)
72
+ * <p>There is concurrent modification on a rule, target, archive, or replay.</p>
73
+ *
74
+ * @throws {@link InternalException} (server fault)
75
+ * <p>This exception occurs due to unexpected causes.</p>
76
+ *
77
+ * @throws {@link InvalidEventPatternException} (client fault)
78
+ * <p>The event pattern is not valid.</p>
79
+ *
80
+ * @throws {@link LimitExceededException} (client fault)
81
+ * <p>The request failed because it attempted to create resource beyond the allowed service
82
+ * quota.</p>
83
+ *
84
+ * @throws {@link ManagedRuleException} (client fault)
85
+ * <p>This rule was created by an Amazon Web Services service on behalf of your account. It is managed by that
86
+ * service. If you see this error in response to <code>DeleteRule</code> or
87
+ * <code>RemoveTargets</code>, you can use the <code>Force</code> parameter in those calls to
88
+ * delete the rule or remove targets from the rule. You cannot modify these managed rules by
89
+ * using <code>DisableRule</code>, <code>EnableRule</code>, <code>PutTargets</code>,
90
+ * <code>PutRule</code>, <code>TagResource</code>, or <code>UntagResource</code>. </p>
91
+ *
92
+ * @throws {@link ResourceNotFoundException} (client fault)
93
+ * <p>An entity that you specified does not exist.</p>
94
+ *
95
+ *
71
96
  */
72
97
  export declare class PutRuleCommand extends $Command<PutRuleCommandInput, PutRuleCommandOutput, EventBridgeClientResolvedConfig> {
73
98
  readonly input: PutRuleCommandInput;
@@ -206,6 +206,28 @@ export interface PutTargetsCommandOutput extends PutTargetsResponse, __MetadataB
206
206
  * @see {@link PutTargetsCommandOutput} for command's `response` shape.
207
207
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
208
208
  *
209
+ * @throws {@link ConcurrentModificationException} (client fault)
210
+ * <p>There is concurrent modification on a rule, target, archive, or replay.</p>
211
+ *
212
+ * @throws {@link InternalException} (server fault)
213
+ * <p>This exception occurs due to unexpected causes.</p>
214
+ *
215
+ * @throws {@link LimitExceededException} (client fault)
216
+ * <p>The request failed because it attempted to create resource beyond the allowed service
217
+ * quota.</p>
218
+ *
219
+ * @throws {@link ManagedRuleException} (client fault)
220
+ * <p>This rule was created by an Amazon Web Services service on behalf of your account. It is managed by that
221
+ * service. If you see this error in response to <code>DeleteRule</code> or
222
+ * <code>RemoveTargets</code>, you can use the <code>Force</code> parameter in those calls to
223
+ * delete the rule or remove targets from the rule. You cannot modify these managed rules by
224
+ * using <code>DisableRule</code>, <code>EnableRule</code>, <code>PutTargets</code>,
225
+ * <code>PutRule</code>, <code>TagResource</code>, or <code>UntagResource</code>. </p>
226
+ *
227
+ * @throws {@link ResourceNotFoundException} (client fault)
228
+ * <p>An entity that you specified does not exist.</p>
229
+ *
230
+ *
209
231
  */
210
232
  export declare class PutTargetsCommand extends $Command<PutTargetsCommandInput, PutTargetsCommandOutput, EventBridgeClientResolvedConfig> {
211
233
  readonly input: PutTargetsCommandInput;
@@ -32,6 +32,19 @@ export interface RemovePermissionCommandOutput extends __MetadataBearer {
32
32
  * @see {@link RemovePermissionCommandOutput} for command's `response` shape.
33
33
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
34
34
  *
35
+ * @throws {@link ConcurrentModificationException} (client fault)
36
+ * <p>There is concurrent modification on a rule, target, archive, or replay.</p>
37
+ *
38
+ * @throws {@link InternalException} (server fault)
39
+ * <p>This exception occurs due to unexpected causes.</p>
40
+ *
41
+ * @throws {@link OperationDisabledException} (client fault)
42
+ * <p>The operation you are attempting is not available in this region.</p>
43
+ *
44
+ * @throws {@link ResourceNotFoundException} (client fault)
45
+ * <p>An entity that you specified does not exist.</p>
46
+ *
47
+ *
35
48
  */
36
49
  export declare class RemovePermissionCommand extends $Command<RemovePermissionCommandInput, RemovePermissionCommandOutput, EventBridgeClientResolvedConfig> {
37
50
  readonly input: RemovePermissionCommandInput;
@@ -38,6 +38,24 @@ export interface RemoveTargetsCommandOutput extends RemoveTargetsResponse, __Met
38
38
  * @see {@link RemoveTargetsCommandOutput} for command's `response` shape.
39
39
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
40
40
  *
41
+ * @throws {@link ConcurrentModificationException} (client fault)
42
+ * <p>There is concurrent modification on a rule, target, archive, or replay.</p>
43
+ *
44
+ * @throws {@link InternalException} (server fault)
45
+ * <p>This exception occurs due to unexpected causes.</p>
46
+ *
47
+ * @throws {@link ManagedRuleException} (client fault)
48
+ * <p>This rule was created by an Amazon Web Services service on behalf of your account. It is managed by that
49
+ * service. If you see this error in response to <code>DeleteRule</code> or
50
+ * <code>RemoveTargets</code>, you can use the <code>Force</code> parameter in those calls to
51
+ * delete the rule or remove targets from the rule. You cannot modify these managed rules by
52
+ * using <code>DisableRule</code>, <code>EnableRule</code>, <code>PutTargets</code>,
53
+ * <code>PutRule</code>, <code>TagResource</code>, or <code>UntagResource</code>. </p>
54
+ *
55
+ * @throws {@link ResourceNotFoundException} (client fault)
56
+ * <p>An entity that you specified does not exist.</p>
57
+ *
58
+ *
41
59
  */
42
60
  export declare class RemoveTargetsCommand extends $Command<RemoveTargetsCommandInput, RemoveTargetsCommandOutput, EventBridgeClientResolvedConfig> {
43
61
  readonly input: RemoveTargetsCommandInput;
@@ -37,6 +37,23 @@ export interface StartReplayCommandOutput extends StartReplayResponse, __Metadat
37
37
  * @see {@link StartReplayCommandOutput} for command's `response` shape.
38
38
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
39
39
  *
40
+ * @throws {@link InternalException} (server fault)
41
+ * <p>This exception occurs due to unexpected causes.</p>
42
+ *
43
+ * @throws {@link InvalidEventPatternException} (client fault)
44
+ * <p>The event pattern is not valid.</p>
45
+ *
46
+ * @throws {@link LimitExceededException} (client fault)
47
+ * <p>The request failed because it attempted to create resource beyond the allowed service
48
+ * quota.</p>
49
+ *
50
+ * @throws {@link ResourceAlreadyExistsException} (client fault)
51
+ * <p>The resource you are trying to create already exists.</p>
52
+ *
53
+ * @throws {@link ResourceNotFoundException} (client fault)
54
+ * <p>An entity that you specified does not exist.</p>
55
+ *
56
+ *
40
57
  */
41
58
  export declare class StartReplayCommand extends $Command<StartReplayCommandInput, StartReplayCommandOutput, EventBridgeClientResolvedConfig> {
42
59
  readonly input: StartReplayCommandInput;
@@ -39,6 +39,24 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
39
39
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
40
40
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
41
41
  *
42
+ * @throws {@link ConcurrentModificationException} (client fault)
43
+ * <p>There is concurrent modification on a rule, target, archive, or replay.</p>
44
+ *
45
+ * @throws {@link InternalException} (server fault)
46
+ * <p>This exception occurs due to unexpected causes.</p>
47
+ *
48
+ * @throws {@link ManagedRuleException} (client fault)
49
+ * <p>This rule was created by an Amazon Web Services service on behalf of your account. It is managed by that
50
+ * service. If you see this error in response to <code>DeleteRule</code> or
51
+ * <code>RemoveTargets</code>, you can use the <code>Force</code> parameter in those calls to
52
+ * delete the rule or remove targets from the rule. You cannot modify these managed rules by
53
+ * using <code>DisableRule</code>, <code>EnableRule</code>, <code>PutTargets</code>,
54
+ * <code>PutRule</code>, <code>TagResource</code>, or <code>UntagResource</code>. </p>
55
+ *
56
+ * @throws {@link ResourceNotFoundException} (client fault)
57
+ * <p>An entity that you specified does not exist.</p>
58
+ *
59
+ *
42
60
  */
43
61
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, EventBridgeClientResolvedConfig> {
44
62
  readonly input: TagResourceCommandInput;
@@ -33,6 +33,13 @@ export interface TestEventPatternCommandOutput extends TestEventPatternResponse,
33
33
  * @see {@link TestEventPatternCommandOutput} for command's `response` shape.
34
34
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
35
35
  *
36
+ * @throws {@link InternalException} (server fault)
37
+ * <p>This exception occurs due to unexpected causes.</p>
38
+ *
39
+ * @throws {@link InvalidEventPatternException} (client fault)
40
+ * <p>The event pattern is not valid.</p>
41
+ *
42
+ *
36
43
  */
37
44
  export declare class TestEventPatternCommand extends $Command<TestEventPatternCommandInput, TestEventPatternCommandOutput, EventBridgeClientResolvedConfig> {
38
45
  readonly input: TestEventPatternCommandInput;
@@ -30,6 +30,24 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
30
30
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
31
31
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
32
32
  *
33
+ * @throws {@link ConcurrentModificationException} (client fault)
34
+ * <p>There is concurrent modification on a rule, target, archive, or replay.</p>
35
+ *
36
+ * @throws {@link InternalException} (server fault)
37
+ * <p>This exception occurs due to unexpected causes.</p>
38
+ *
39
+ * @throws {@link ManagedRuleException} (client fault)
40
+ * <p>This rule was created by an Amazon Web Services service on behalf of your account. It is managed by that
41
+ * service. If you see this error in response to <code>DeleteRule</code> or
42
+ * <code>RemoveTargets</code>, you can use the <code>Force</code> parameter in those calls to
43
+ * delete the rule or remove targets from the rule. You cannot modify these managed rules by
44
+ * using <code>DisableRule</code>, <code>EnableRule</code>, <code>PutTargets</code>,
45
+ * <code>PutRule</code>, <code>TagResource</code>, or <code>UntagResource</code>. </p>
46
+ *
47
+ * @throws {@link ResourceNotFoundException} (client fault)
48
+ * <p>An entity that you specified does not exist.</p>
49
+ *
50
+ *
33
51
  */
34
52
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, EventBridgeClientResolvedConfig> {
35
53
  readonly input: UntagResourceCommandInput;
@@ -29,6 +29,20 @@ export interface UpdateApiDestinationCommandOutput extends UpdateApiDestinationR
29
29
  * @see {@link UpdateApiDestinationCommandOutput} for command's `response` shape.
30
30
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
31
31
  *
32
+ * @throws {@link ConcurrentModificationException} (client fault)
33
+ * <p>There is concurrent modification on a rule, target, archive, or replay.</p>
34
+ *
35
+ * @throws {@link InternalException} (server fault)
36
+ * <p>This exception occurs due to unexpected causes.</p>
37
+ *
38
+ * @throws {@link LimitExceededException} (client fault)
39
+ * <p>The request failed because it attempted to create resource beyond the allowed service
40
+ * quota.</p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>An entity that you specified does not exist.</p>
44
+ *
45
+ *
32
46
  */
33
47
  export declare class UpdateApiDestinationCommand extends $Command<UpdateApiDestinationCommandInput, UpdateApiDestinationCommandOutput, EventBridgeClientResolvedConfig> {
34
48
  readonly input: UpdateApiDestinationCommandInput;
@@ -29,6 +29,23 @@ export interface UpdateArchiveCommandOutput extends UpdateArchiveResponse, __Met
29
29
  * @see {@link UpdateArchiveCommandOutput} for command's `response` shape.
30
30
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
31
31
  *
32
+ * @throws {@link ConcurrentModificationException} (client fault)
33
+ * <p>There is concurrent modification on a rule, target, archive, or replay.</p>
34
+ *
35
+ * @throws {@link InternalException} (server fault)
36
+ * <p>This exception occurs due to unexpected causes.</p>
37
+ *
38
+ * @throws {@link InvalidEventPatternException} (client fault)
39
+ * <p>The event pattern is not valid.</p>
40
+ *
41
+ * @throws {@link LimitExceededException} (client fault)
42
+ * <p>The request failed because it attempted to create resource beyond the allowed service
43
+ * quota.</p>
44
+ *
45
+ * @throws {@link ResourceNotFoundException} (client fault)
46
+ * <p>An entity that you specified does not exist.</p>
47
+ *
48
+ *
32
49
  */
33
50
  export declare class UpdateArchiveCommand extends $Command<UpdateArchiveCommandInput, UpdateArchiveCommandOutput, EventBridgeClientResolvedConfig> {
34
51
  readonly input: UpdateArchiveCommandInput;
@@ -29,6 +29,20 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionResponse,
29
29
  * @see {@link UpdateConnectionCommandOutput} for command's `response` shape.
30
30
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
31
31
  *
32
+ * @throws {@link ConcurrentModificationException} (client fault)
33
+ * <p>There is concurrent modification on a rule, target, archive, or replay.</p>
34
+ *
35
+ * @throws {@link InternalException} (server fault)
36
+ * <p>This exception occurs due to unexpected causes.</p>
37
+ *
38
+ * @throws {@link LimitExceededException} (client fault)
39
+ * <p>The request failed because it attempted to create resource beyond the allowed service
40
+ * quota.</p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>An entity that you specified does not exist.</p>
44
+ *
45
+ *
32
46
  */
33
47
  export declare class UpdateConnectionCommand extends $Command<UpdateConnectionCommandInput, UpdateConnectionCommandOutput, EventBridgeClientResolvedConfig> {
34
48
  readonly input: UpdateConnectionCommandInput;
@@ -29,6 +29,16 @@ export interface UpdateEndpointCommandOutput extends UpdateEndpointResponse, __M
29
29
  * @see {@link UpdateEndpointCommandOutput} for command's `response` shape.
30
30
  * @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
31
31
  *
32
+ * @throws {@link ConcurrentModificationException} (client fault)
33
+ * <p>There is concurrent modification on a rule, target, archive, or replay.</p>
34
+ *
35
+ * @throws {@link InternalException} (server fault)
36
+ * <p>This exception occurs due to unexpected causes.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>An entity that you specified does not exist.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class UpdateEndpointCommand extends $Command<UpdateEndpointCommandInput, UpdateEndpointCommandOutput, EventBridgeClientResolvedConfig> {
34
44
  readonly input: UpdateEndpointCommandInput;
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.289.0",
4
+ "version": "3.292.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",
@@ -22,56 +22,51 @@
22
22
  "dependencies": {
23
23
  "@aws-crypto/sha256-browser": "3.0.0",
24
24
  "@aws-crypto/sha256-js": "3.0.0",
25
- "@aws-sdk/client-sts": "3.289.0",
26
- "@aws-sdk/config-resolver": "3.289.0",
27
- "@aws-sdk/credential-provider-node": "3.289.0",
28
- "@aws-sdk/fetch-http-handler": "3.289.0",
29
- "@aws-sdk/hash-node": "3.289.0",
30
- "@aws-sdk/invalid-dependency": "3.289.0",
31
- "@aws-sdk/middleware-content-length": "3.289.0",
32
- "@aws-sdk/middleware-endpoint": "3.289.0",
33
- "@aws-sdk/middleware-host-header": "3.289.0",
34
- "@aws-sdk/middleware-logger": "3.289.0",
35
- "@aws-sdk/middleware-recursion-detection": "3.289.0",
36
- "@aws-sdk/middleware-retry": "3.289.0",
37
- "@aws-sdk/middleware-serde": "3.289.0",
38
- "@aws-sdk/middleware-signing": "3.289.0",
39
- "@aws-sdk/middleware-stack": "3.289.0",
40
- "@aws-sdk/middleware-user-agent": "3.289.0",
41
- "@aws-sdk/node-config-provider": "3.289.0",
42
- "@aws-sdk/node-http-handler": "3.289.0",
43
- "@aws-sdk/protocol-http": "3.289.0",
44
- "@aws-sdk/signature-v4-multi-region": "3.289.0",
45
- "@aws-sdk/smithy-client": "3.289.0",
46
- "@aws-sdk/types": "3.289.0",
47
- "@aws-sdk/url-parser": "3.289.0",
48
- "@aws-sdk/util-base64": "3.208.0",
49
- "@aws-sdk/util-body-length-browser": "3.188.0",
50
- "@aws-sdk/util-body-length-node": "3.208.0",
51
- "@aws-sdk/util-defaults-mode-browser": "3.289.0",
52
- "@aws-sdk/util-defaults-mode-node": "3.289.0",
53
- "@aws-sdk/util-endpoints": "3.289.0",
54
- "@aws-sdk/util-retry": "3.289.0",
55
- "@aws-sdk/util-user-agent-browser": "3.289.0",
56
- "@aws-sdk/util-user-agent-node": "3.289.0",
57
- "@aws-sdk/util-utf8": "3.254.0",
25
+ "@aws-sdk/client-sts": "3.292.0",
26
+ "@aws-sdk/config-resolver": "3.292.0",
27
+ "@aws-sdk/credential-provider-node": "3.292.0",
28
+ "@aws-sdk/fetch-http-handler": "3.292.0",
29
+ "@aws-sdk/hash-node": "3.292.0",
30
+ "@aws-sdk/invalid-dependency": "3.292.0",
31
+ "@aws-sdk/middleware-content-length": "3.292.0",
32
+ "@aws-sdk/middleware-endpoint": "3.292.0",
33
+ "@aws-sdk/middleware-host-header": "3.292.0",
34
+ "@aws-sdk/middleware-logger": "3.292.0",
35
+ "@aws-sdk/middleware-recursion-detection": "3.292.0",
36
+ "@aws-sdk/middleware-retry": "3.292.0",
37
+ "@aws-sdk/middleware-serde": "3.292.0",
38
+ "@aws-sdk/middleware-signing": "3.292.0",
39
+ "@aws-sdk/middleware-stack": "3.292.0",
40
+ "@aws-sdk/middleware-user-agent": "3.292.0",
41
+ "@aws-sdk/node-config-provider": "3.292.0",
42
+ "@aws-sdk/node-http-handler": "3.292.0",
43
+ "@aws-sdk/protocol-http": "3.292.0",
44
+ "@aws-sdk/signature-v4-multi-region": "3.292.0",
45
+ "@aws-sdk/smithy-client": "3.292.0",
46
+ "@aws-sdk/types": "3.292.0",
47
+ "@aws-sdk/url-parser": "3.292.0",
48
+ "@aws-sdk/util-base64": "3.292.0",
49
+ "@aws-sdk/util-body-length-browser": "3.292.0",
50
+ "@aws-sdk/util-body-length-node": "3.292.0",
51
+ "@aws-sdk/util-defaults-mode-browser": "3.292.0",
52
+ "@aws-sdk/util-defaults-mode-node": "3.292.0",
53
+ "@aws-sdk/util-endpoints": "3.292.0",
54
+ "@aws-sdk/util-retry": "3.292.0",
55
+ "@aws-sdk/util-user-agent-browser": "3.292.0",
56
+ "@aws-sdk/util-user-agent-node": "3.292.0",
57
+ "@aws-sdk/util-utf8": "3.292.0",
58
58
  "tslib": "^2.3.1"
59
59
  },
60
60
  "devDependencies": {
61
- "@aws-sdk/service-client-documentation-generator": "3.208.0",
61
+ "@aws-sdk/service-client-documentation-generator": "3.292.0",
62
62
  "@tsconfig/node14": "1.0.3",
63
63
  "@types/node": "^14.14.31",
64
64
  "concurrently": "7.0.0",
65
65
  "downlevel-dts": "0.10.1",
66
66
  "rimraf": "3.0.2",
67
- "typedoc": "0.19.2",
67
+ "typedoc": "0.23.23",
68
68
  "typescript": "~4.6.2"
69
69
  },
70
- "overrides": {
71
- "typedoc": {
72
- "typescript": "~4.6.2"
73
- }
74
- },
75
70
  "engines": {
76
71
  "node": ">=14.0.0"
77
72
  },