@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.
- package/dist-types/commands/ActivateEventSourceCommand.d.ts +16 -0
- package/dist-types/commands/CancelReplayCommand.d.ts +14 -0
- package/dist-types/commands/CreateApiDestinationCommand.d.ts +14 -0
- package/dist-types/commands/CreateArchiveCommand.d.ts +20 -0
- package/dist-types/commands/CreateConnectionCommand.d.ts +11 -0
- package/dist-types/commands/CreateEndpointCommand.d.ts +11 -0
- package/dist-types/commands/CreateEventBusCommand.d.ts +23 -0
- package/dist-types/commands/CreatePartnerEventSourceCommand.d.ts +17 -0
- package/dist-types/commands/DeactivateEventSourceCommand.d.ts +16 -0
- package/dist-types/commands/DeauthorizeConnectionCommand.d.ts +10 -0
- package/dist-types/commands/DeleteApiDestinationCommand.d.ts +10 -0
- package/dist-types/commands/DeleteArchiveCommand.d.ts +10 -0
- package/dist-types/commands/DeleteConnectionCommand.d.ts +10 -0
- package/dist-types/commands/DeleteEndpointCommand.d.ts +10 -0
- package/dist-types/commands/DeleteEventBusCommand.d.ts +7 -0
- package/dist-types/commands/DeletePartnerEventSourceCommand.d.ts +10 -0
- package/dist-types/commands/DeleteRuleCommand.d.ts +18 -0
- package/dist-types/commands/DescribeApiDestinationCommand.d.ts +7 -0
- package/dist-types/commands/DescribeArchiveCommand.d.ts +10 -0
- package/dist-types/commands/DescribeConnectionCommand.d.ts +7 -0
- package/dist-types/commands/DescribeEndpointCommand.d.ts +7 -0
- package/dist-types/commands/DescribeEventBusCommand.d.ts +7 -0
- package/dist-types/commands/DescribeEventSourceCommand.d.ts +10 -0
- package/dist-types/commands/DescribePartnerEventSourceCommand.d.ts +10 -0
- package/dist-types/commands/DescribeReplayCommand.d.ts +7 -0
- package/dist-types/commands/DescribeRuleCommand.d.ts +7 -0
- package/dist-types/commands/DisableRuleCommand.d.ts +18 -0
- package/dist-types/commands/EnableRuleCommand.d.ts +18 -0
- package/dist-types/commands/ListApiDestinationsCommand.d.ts +4 -0
- package/dist-types/commands/ListArchivesCommand.d.ts +7 -0
- package/dist-types/commands/ListConnectionsCommand.d.ts +4 -0
- package/dist-types/commands/ListEndpointsCommand.d.ts +4 -0
- package/dist-types/commands/ListEventBusesCommand.d.ts +4 -0
- package/dist-types/commands/ListEventSourcesCommand.d.ts +7 -0
- package/dist-types/commands/ListPartnerEventSourceAccountsCommand.d.ts +10 -0
- package/dist-types/commands/ListPartnerEventSourcesCommand.d.ts +7 -0
- package/dist-types/commands/ListReplaysCommand.d.ts +4 -0
- package/dist-types/commands/ListRuleNamesByTargetCommand.d.ts +7 -0
- package/dist-types/commands/ListRulesCommand.d.ts +7 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +7 -0
- package/dist-types/commands/ListTargetsByRuleCommand.d.ts +7 -0
- package/dist-types/commands/PutEventsCommand.d.ts +4 -0
- package/dist-types/commands/PutPartnerEventsCommand.d.ts +7 -0
- package/dist-types/commands/PutPermissionCommand.d.ts +16 -0
- package/dist-types/commands/PutRuleCommand.d.ts +25 -0
- package/dist-types/commands/PutTargetsCommand.d.ts +22 -0
- package/dist-types/commands/RemovePermissionCommand.d.ts +13 -0
- package/dist-types/commands/RemoveTargetsCommand.d.ts +18 -0
- package/dist-types/commands/StartReplayCommand.d.ts +17 -0
- package/dist-types/commands/TagResourceCommand.d.ts +18 -0
- package/dist-types/commands/TestEventPatternCommand.d.ts +7 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +18 -0
- package/dist-types/commands/UpdateApiDestinationCommand.d.ts +14 -0
- package/dist-types/commands/UpdateArchiveCommand.d.ts +17 -0
- package/dist-types/commands/UpdateConnectionCommand.d.ts +14 -0
- package/dist-types/commands/UpdateEndpointCommand.d.ts +10 -0
- package/package.json +36 -41
|
@@ -30,6 +30,22 @@ export interface ActivateEventSourceCommandOutput extends __MetadataBearer {
|
|
|
30
30
|
* @see {@link ActivateEventSourceCommandOutput} 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 InvalidStateException} (client fault)
|
|
40
|
+
* <p>The specified state is not a valid state for an event source.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link OperationDisabledException} (client fault)
|
|
43
|
+
* <p>The operation you are attempting is not available in this region.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
|
+
* <p>An entity that you specified does not exist.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
33
49
|
*/
|
|
34
50
|
export declare class ActivateEventSourceCommand extends $Command<ActivateEventSourceCommandInput, ActivateEventSourceCommandOutput, EventBridgeClientResolvedConfig> {
|
|
35
51
|
readonly input: ActivateEventSourceCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface CancelReplayCommandOutput extends CancelReplayResponse, __Metad
|
|
|
29
29
|
* @see {@link CancelReplayCommandOutput} 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 IllegalStatusException} (client fault)
|
|
36
|
+
* <p>An error occurred because a replay can be canceled only when the state is Running or
|
|
37
|
+
* Starting.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalException} (server fault)
|
|
40
|
+
* <p>This exception occurs due to unexpected causes.</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 CancelReplayCommand extends $Command<CancelReplayCommandInput, CancelReplayCommandOutput, EventBridgeClientResolvedConfig> {
|
|
34
48
|
readonly input: CancelReplayCommandInput;
|
|
@@ -30,6 +30,20 @@ export interface CreateApiDestinationCommandOutput extends CreateApiDestinationR
|
|
|
30
30
|
* @see {@link CreateApiDestinationCommandOutput} 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 LimitExceededException} (client fault)
|
|
37
|
+
* <p>The request failed because it attempted to create resource beyond the allowed service
|
|
38
|
+
* quota.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
41
|
+
* <p>The resource you are trying to create already exists.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
44
|
+
* <p>An entity that you specified does not exist.</p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
33
47
|
*/
|
|
34
48
|
export declare class CreateApiDestinationCommand extends $Command<CreateApiDestinationCommandInput, CreateApiDestinationCommandOutput, EventBridgeClientResolvedConfig> {
|
|
35
49
|
readonly input: CreateApiDestinationCommandInput;
|
|
@@ -33,6 +33,26 @@ export interface CreateArchiveCommandOutput extends CreateArchiveResponse, __Met
|
|
|
33
33
|
* @see {@link CreateArchiveCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
37
|
+
* <p>There is concurrent modification on a rule, target, archive, or replay.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalException} (server fault)
|
|
40
|
+
* <p>This exception occurs due to unexpected causes.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidEventPatternException} (client fault)
|
|
43
|
+
* <p>The event pattern is not valid.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
46
|
+
* <p>The request failed because it attempted to create resource beyond the allowed service
|
|
47
|
+
* quota.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
50
|
+
* <p>The resource you are trying to create already exists.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
53
|
+
* <p>An entity that you specified does not exist.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
36
56
|
*/
|
|
37
57
|
export declare class CreateArchiveCommand extends $Command<CreateArchiveCommandInput, CreateArchiveCommandOutput, EventBridgeClientResolvedConfig> {
|
|
38
58
|
readonly input: CreateArchiveCommandInput;
|
|
@@ -30,6 +30,17 @@ export interface CreateConnectionCommandOutput extends CreateConnectionResponse,
|
|
|
30
30
|
* @see {@link CreateConnectionCommandOutput} 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 LimitExceededException} (client fault)
|
|
37
|
+
* <p>The request failed because it attempted to create resource beyond the allowed service
|
|
38
|
+
* quota.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
41
|
+
* <p>The resource you are trying to create already exists.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
33
44
|
*/
|
|
34
45
|
export declare class CreateConnectionCommand extends $Command<CreateConnectionCommandInput, CreateConnectionCommandOutput, EventBridgeClientResolvedConfig> {
|
|
35
46
|
readonly input: CreateConnectionCommandInput;
|
|
@@ -31,6 +31,17 @@ export interface CreateEndpointCommandOutput extends CreateEndpointResponse, __M
|
|
|
31
31
|
* @see {@link CreateEndpointCommandOutput} 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 LimitExceededException} (client fault)
|
|
38
|
+
* <p>The request failed because it attempted to create resource beyond the allowed service
|
|
39
|
+
* quota.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
42
|
+
* <p>The resource you are trying to create already exists.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
34
45
|
*/
|
|
35
46
|
export declare class CreateEndpointCommand extends $Command<CreateEndpointCommandInput, CreateEndpointCommandOutput, EventBridgeClientResolvedConfig> {
|
|
36
47
|
readonly input: CreateEndpointCommandInput;
|
|
@@ -31,6 +31,29 @@ export interface CreateEventBusCommandOutput extends CreateEventBusResponse, __M
|
|
|
31
31
|
* @see {@link CreateEventBusCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
35
|
+
* <p>There is concurrent modification on a rule, target, archive, or replay.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalException} (server fault)
|
|
38
|
+
* <p>This exception occurs due to unexpected causes.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidStateException} (client fault)
|
|
41
|
+
* <p>The specified state is not a valid state for an event source.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
44
|
+
* <p>The request failed because it attempted to create resource beyond the allowed service
|
|
45
|
+
* quota.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link OperationDisabledException} (client fault)
|
|
48
|
+
* <p>The operation you are attempting is not available in this region.</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
|
+
*
|
|
34
57
|
*/
|
|
35
58
|
export declare class CreateEventBusCommand extends $Command<CreateEventBusCommandInput, CreateEventBusCommandOutput, EventBridgeClientResolvedConfig> {
|
|
36
59
|
readonly input: CreateEventBusCommandInput;
|
|
@@ -52,6 +52,23 @@ export interface CreatePartnerEventSourceCommandOutput extends CreatePartnerEven
|
|
|
52
52
|
* @see {@link CreatePartnerEventSourceCommandOutput} for command's `response` shape.
|
|
53
53
|
* @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
|
|
54
54
|
*
|
|
55
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
56
|
+
* <p>There is concurrent modification on a rule, target, archive, or replay.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link InternalException} (server fault)
|
|
59
|
+
* <p>This exception occurs due to unexpected causes.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
62
|
+
* <p>The request failed because it attempted to create resource beyond the allowed service
|
|
63
|
+
* quota.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link OperationDisabledException} (client fault)
|
|
66
|
+
* <p>The operation you are attempting is not available in this region.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
69
|
+
* <p>The resource you are trying to create already exists.</p>
|
|
70
|
+
*
|
|
71
|
+
*
|
|
55
72
|
*/
|
|
56
73
|
export declare class CreatePartnerEventSourceCommand extends $Command<CreatePartnerEventSourceCommandInput, CreatePartnerEventSourceCommandOutput, EventBridgeClientResolvedConfig> {
|
|
57
74
|
readonly input: CreatePartnerEventSourceCommandInput;
|
|
@@ -33,6 +33,22 @@ export interface DeactivateEventSourceCommandOutput extends __MetadataBearer {
|
|
|
33
33
|
* @see {@link DeactivateEventSourceCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
37
|
+
* <p>There is concurrent modification on a rule, target, archive, or replay.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalException} (server fault)
|
|
40
|
+
* <p>This exception occurs due to unexpected causes.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidStateException} (client fault)
|
|
43
|
+
* <p>The specified state is not a valid state for an event source.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link OperationDisabledException} (client fault)
|
|
46
|
+
* <p>The operation you are attempting is not available in this region.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
49
|
+
* <p>An entity that you specified does not exist.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
36
52
|
*/
|
|
37
53
|
export declare class DeactivateEventSourceCommand extends $Command<DeactivateEventSourceCommandInput, DeactivateEventSourceCommandOutput, EventBridgeClientResolvedConfig> {
|
|
38
54
|
readonly input: DeactivateEventSourceCommandInput;
|
|
@@ -30,6 +30,16 @@ export interface DeauthorizeConnectionCommandOutput extends DeauthorizeConnectio
|
|
|
30
30
|
* @see {@link DeauthorizeConnectionCommandOutput} 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 ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>An entity that you specified does not exist.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
*/
|
|
34
44
|
export declare class DeauthorizeConnectionCommand extends $Command<DeauthorizeConnectionCommandInput, DeauthorizeConnectionCommandOutput, EventBridgeClientResolvedConfig> {
|
|
35
45
|
readonly input: DeauthorizeConnectionCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface DeleteApiDestinationCommandOutput extends DeleteApiDestinationR
|
|
|
29
29
|
* @see {@link DeleteApiDestinationCommandOutput} 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 DeleteApiDestinationCommand extends $Command<DeleteApiDestinationCommandInput, DeleteApiDestinationCommandOutput, EventBridgeClientResolvedConfig> {
|
|
34
44
|
readonly input: DeleteApiDestinationCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface DeleteArchiveCommandOutput extends DeleteArchiveResponse, __Met
|
|
|
29
29
|
* @see {@link DeleteArchiveCommandOutput} 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 DeleteArchiveCommand extends $Command<DeleteArchiveCommandInput, DeleteArchiveCommandOutput, EventBridgeClientResolvedConfig> {
|
|
34
44
|
readonly input: DeleteArchiveCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface DeleteConnectionCommandOutput extends DeleteConnectionResponse,
|
|
|
29
29
|
* @see {@link DeleteConnectionCommandOutput} 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 DeleteConnectionCommand extends $Command<DeleteConnectionCommandInput, DeleteConnectionCommandOutput, EventBridgeClientResolvedConfig> {
|
|
34
44
|
readonly input: DeleteConnectionCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface DeleteEndpointCommandOutput extends DeleteEndpointResponse, __M
|
|
|
29
29
|
* @see {@link DeleteEndpointCommandOutput} 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 DeleteEndpointCommand extends $Command<DeleteEndpointCommandInput, DeleteEndpointCommandOutput, EventBridgeClientResolvedConfig> {
|
|
34
44
|
readonly input: DeleteEndpointCommandInput;
|
|
@@ -30,6 +30,13 @@ export interface DeleteEventBusCommandOutput extends __MetadataBearer {
|
|
|
30
30
|
* @see {@link DeleteEventBusCommandOutput} 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
|
+
*
|
|
33
40
|
*/
|
|
34
41
|
export declare class DeleteEventBusCommand extends $Command<DeleteEventBusCommandInput, DeleteEventBusCommandOutput, EventBridgeClientResolvedConfig> {
|
|
35
42
|
readonly input: DeleteEventBusCommandInput;
|
|
@@ -33,6 +33,16 @@ export interface DeletePartnerEventSourceCommandOutput extends __MetadataBearer
|
|
|
33
33
|
* @see {@link DeletePartnerEventSourceCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
37
|
+
* <p>There is concurrent modification on a rule, target, archive, or replay.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalException} (server fault)
|
|
40
|
+
* <p>This exception occurs due to unexpected causes.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link OperationDisabledException} (client fault)
|
|
43
|
+
* <p>The operation you are attempting is not available in this region.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
36
46
|
*/
|
|
37
47
|
export declare class DeletePartnerEventSourceCommand extends $Command<DeletePartnerEventSourceCommandInput, DeletePartnerEventSourceCommandOutput, EventBridgeClientResolvedConfig> {
|
|
38
48
|
readonly input: DeletePartnerEventSourceCommandInput;
|
|
@@ -39,6 +39,24 @@ export interface DeleteRuleCommandOutput extends __MetadataBearer {
|
|
|
39
39
|
* @see {@link DeleteRuleCommandOutput} 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 DeleteRuleCommand extends $Command<DeleteRuleCommandInput, DeleteRuleCommandOutput, EventBridgeClientResolvedConfig> {
|
|
44
62
|
readonly input: DeleteRuleCommandInput;
|
|
@@ -29,6 +29,13 @@ export interface DescribeApiDestinationCommandOutput extends DescribeApiDestinat
|
|
|
29
29
|
* @see {@link DescribeApiDestinationCommandOutput} 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 DescribeApiDestinationCommand extends $Command<DescribeApiDestinationCommandInput, DescribeApiDestinationCommandOutput, EventBridgeClientResolvedConfig> {
|
|
34
41
|
readonly input: DescribeApiDestinationCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface DescribeArchiveCommandOutput extends DescribeArchiveResponse, _
|
|
|
29
29
|
* @see {@link DescribeArchiveCommandOutput} 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 ResourceAlreadyExistsException} (client fault)
|
|
36
|
+
* <p>The resource you are trying to create already exists.</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 DescribeArchiveCommand extends $Command<DescribeArchiveCommandInput, DescribeArchiveCommandOutput, EventBridgeClientResolvedConfig> {
|
|
34
44
|
readonly input: DescribeArchiveCommandInput;
|
|
@@ -29,6 +29,13 @@ export interface DescribeConnectionCommandOutput extends DescribeConnectionRespo
|
|
|
29
29
|
* @see {@link DescribeConnectionCommandOutput} 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 DescribeConnectionCommand extends $Command<DescribeConnectionCommandInput, DescribeConnectionCommandOutput, EventBridgeClientResolvedConfig> {
|
|
34
41
|
readonly input: DescribeConnectionCommandInput;
|
|
@@ -29,6 +29,13 @@ export interface DescribeEndpointCommandOutput extends DescribeEndpointResponse,
|
|
|
29
29
|
* @see {@link DescribeEndpointCommandOutput} 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 DescribeEndpointCommand extends $Command<DescribeEndpointCommandInput, DescribeEndpointCommandOutput, EventBridgeClientResolvedConfig> {
|
|
34
41
|
readonly input: DescribeEndpointCommandInput;
|
|
@@ -35,6 +35,13 @@ export interface DescribeEventBusCommandOutput extends DescribeEventBusResponse,
|
|
|
35
35
|
* @see {@link DescribeEventBusCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link InternalException} (server fault)
|
|
39
|
+
* <p>This exception occurs due to unexpected causes.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>An entity that you specified does not exist.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
38
45
|
*/
|
|
39
46
|
export declare class DescribeEventBusCommand extends $Command<DescribeEventBusCommandInput, DescribeEventBusCommandOutput, EventBridgeClientResolvedConfig> {
|
|
40
47
|
readonly input: DescribeEventBusCommandInput;
|
|
@@ -30,6 +30,16 @@ export interface DescribeEventSourceCommandOutput extends DescribeEventSourceRes
|
|
|
30
30
|
* @see {@link DescribeEventSourceCommandOutput} 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
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>An entity that you specified does not exist.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
*/
|
|
34
44
|
export declare class DescribeEventSourceCommand extends $Command<DescribeEventSourceCommandInput, DescribeEventSourceCommandOutput, EventBridgeClientResolvedConfig> {
|
|
35
45
|
readonly input: DescribeEventSourceCommandInput;
|
|
@@ -32,6 +32,16 @@ export interface DescribePartnerEventSourceCommandOutput extends DescribePartner
|
|
|
32
32
|
* @see {@link DescribePartnerEventSourceCommandOutput} 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 OperationDisabledException} (client fault)
|
|
39
|
+
* <p>The operation you are attempting is not available in this region.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>An entity that you specified does not exist.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
35
45
|
*/
|
|
36
46
|
export declare class DescribePartnerEventSourceCommand extends $Command<DescribePartnerEventSourceCommandInput, DescribePartnerEventSourceCommandOutput, EventBridgeClientResolvedConfig> {
|
|
37
47
|
readonly input: DescribePartnerEventSourceCommandInput;
|
|
@@ -37,6 +37,13 @@ export interface DescribeReplayCommandOutput extends DescribeReplayResponse, __M
|
|
|
37
37
|
* @see {@link DescribeReplayCommandOutput} 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 ResourceNotFoundException} (client fault)
|
|
44
|
+
* <p>An entity that you specified does not exist.</p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
40
47
|
*/
|
|
41
48
|
export declare class DescribeReplayCommand extends $Command<DescribeReplayCommandInput, DescribeReplayCommandOutput, EventBridgeClientResolvedConfig> {
|
|
42
49
|
readonly input: DescribeReplayCommandInput;
|
|
@@ -31,6 +31,13 @@ export interface DescribeRuleCommandOutput extends DescribeRuleResponse, __Metad
|
|
|
31
31
|
* @see {@link DescribeRuleCommandOutput} 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 ResourceNotFoundException} (client fault)
|
|
38
|
+
* <p>An entity that you specified does not exist.</p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
34
41
|
*/
|
|
35
42
|
export declare class DescribeRuleCommand extends $Command<DescribeRuleCommandInput, DescribeRuleCommandOutput, EventBridgeClientResolvedConfig> {
|
|
36
43
|
readonly input: DescribeRuleCommandInput;
|
|
@@ -32,6 +32,24 @@ export interface DisableRuleCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* @see {@link DisableRuleCommandOutput} 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 ManagedRuleException} (client fault)
|
|
42
|
+
* <p>This rule was created by an Amazon Web Services service on behalf of your account. It is managed by that
|
|
43
|
+
* service. If you see this error in response to <code>DeleteRule</code> or
|
|
44
|
+
* <code>RemoveTargets</code>, you can use the <code>Force</code> parameter in those calls to
|
|
45
|
+
* delete the rule or remove targets from the rule. You cannot modify these managed rules by
|
|
46
|
+
* using <code>DisableRule</code>, <code>EnableRule</code>, <code>PutTargets</code>,
|
|
47
|
+
* <code>PutRule</code>, <code>TagResource</code>, or <code>UntagResource</code>. </p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
50
|
+
* <p>An entity that you specified does not exist.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
35
53
|
*/
|
|
36
54
|
export declare class DisableRuleCommand extends $Command<DisableRuleCommandInput, DisableRuleCommandOutput, EventBridgeClientResolvedConfig> {
|
|
37
55
|
readonly input: DisableRuleCommandInput;
|
|
@@ -31,6 +31,24 @@ export interface EnableRuleCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* @see {@link EnableRuleCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link EventBridgeClientResolvedConfig | config} for EventBridgeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
35
|
+
* <p>There is concurrent modification on a rule, target, archive, or replay.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalException} (server fault)
|
|
38
|
+
* <p>This exception occurs due to unexpected causes.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ManagedRuleException} (client fault)
|
|
41
|
+
* <p>This rule was created by an Amazon Web Services service on behalf of your account. It is managed by that
|
|
42
|
+
* service. If you see this error in response to <code>DeleteRule</code> or
|
|
43
|
+
* <code>RemoveTargets</code>, you can use the <code>Force</code> parameter in those calls to
|
|
44
|
+
* delete the rule or remove targets from the rule. You cannot modify these managed rules by
|
|
45
|
+
* using <code>DisableRule</code>, <code>EnableRule</code>, <code>PutTargets</code>,
|
|
46
|
+
* <code>PutRule</code>, <code>TagResource</code>, or <code>UntagResource</code>. </p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
49
|
+
* <p>An entity that you specified does not exist.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
34
52
|
*/
|
|
35
53
|
export declare class EnableRuleCommand extends $Command<EnableRuleCommandInput, EnableRuleCommandOutput, EventBridgeClientResolvedConfig> {
|
|
36
54
|
readonly input: EnableRuleCommandInput;
|
|
@@ -29,6 +29,10 @@ export interface ListApiDestinationsCommandOutput extends ListApiDestinationsRes
|
|
|
29
29
|
* @see {@link ListApiDestinationsCommandOutput} 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
|
+
*
|
|
32
36
|
*/
|
|
33
37
|
export declare class ListApiDestinationsCommand extends $Command<ListApiDestinationsCommandInput, ListApiDestinationsCommandOutput, EventBridgeClientResolvedConfig> {
|
|
34
38
|
readonly input: ListApiDestinationsCommandInput;
|
|
@@ -30,6 +30,13 @@ export interface ListArchivesCommandOutput extends ListArchivesResponse, __Metad
|
|
|
30
30
|
* @see {@link ListArchivesCommandOutput} 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 ListArchivesCommand extends $Command<ListArchivesCommandInput, ListArchivesCommandOutput, EventBridgeClientResolvedConfig> {
|
|
35
42
|
readonly input: ListArchivesCommandInput;
|
|
@@ -29,6 +29,10 @@ export interface ListConnectionsCommandOutput extends ListConnectionsResponse, _
|
|
|
29
29
|
* @see {@link ListConnectionsCommandOutput} 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
|
+
*
|
|
32
36
|
*/
|
|
33
37
|
export declare class ListConnectionsCommand extends $Command<ListConnectionsCommandInput, ListConnectionsCommandOutput, EventBridgeClientResolvedConfig> {
|
|
34
38
|
readonly input: ListConnectionsCommandInput;
|
|
@@ -29,6 +29,10 @@ export interface ListEndpointsCommandOutput extends ListEndpointsResponse, __Met
|
|
|
29
29
|
* @see {@link ListEndpointsCommandOutput} 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
|
+
*
|
|
32
36
|
*/
|
|
33
37
|
export declare class ListEndpointsCommand extends $Command<ListEndpointsCommandInput, ListEndpointsCommandOutput, EventBridgeClientResolvedConfig> {
|
|
34
38
|
readonly input: ListEndpointsCommandInput;
|
|
@@ -30,6 +30,10 @@ export interface ListEventBusesCommandOutput extends ListEventBusesResponse, __M
|
|
|
30
30
|
* @see {@link ListEventBusesCommandOutput} 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 ListEventBusesCommand extends $Command<ListEventBusesCommandInput, ListEventBusesCommandOutput, EventBridgeClientResolvedConfig> {
|
|
35
39
|
readonly input: ListEventBusesCommandInput;
|
|
@@ -30,6 +30,13 @@ export interface ListEventSourcesCommandOutput extends ListEventSourcesResponse,
|
|
|
30
30
|
* @see {@link ListEventSourcesCommandOutput} 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 ListEventSourcesCommand extends $Command<ListEventSourcesCommandInput, ListEventSourcesCommandOutput, EventBridgeClientResolvedConfig> {
|
|
35
42
|
readonly input: ListEventSourcesCommandInput;
|