@aws-sdk/client-cloudwatch-events 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.
- package/dist-types/CloudWatchEvents.d.ts +52 -0
- package/dist-types/CloudWatchEventsClient.d.ts +24 -4
- package/dist-types/commands/ActivateEventSourceCommand.d.ts +16 -0
- package/dist-types/commands/CancelReplayCommand.d.ts +16 -0
- package/dist-types/commands/CreateApiDestinationCommand.d.ts +16 -0
- package/dist-types/commands/CreateArchiveCommand.d.ts +16 -0
- package/dist-types/commands/CreateConnectionCommand.d.ts +16 -0
- package/dist-types/commands/CreateEventBusCommand.d.ts +16 -0
- package/dist-types/commands/CreatePartnerEventSourceCommand.d.ts +16 -0
- package/dist-types/commands/DeactivateEventSourceCommand.d.ts +16 -0
- package/dist-types/commands/DeauthorizeConnectionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApiDestinationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteArchiveCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConnectionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEventBusCommand.d.ts +16 -0
- package/dist-types/commands/DeletePartnerEventSourceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRuleCommand.d.ts +16 -0
- package/dist-types/commands/DescribeApiDestinationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeArchiveCommand.d.ts +16 -0
- package/dist-types/commands/DescribeConnectionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEventBusCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEventSourceCommand.d.ts +16 -0
- package/dist-types/commands/DescribePartnerEventSourceCommand.d.ts +16 -0
- package/dist-types/commands/DescribeReplayCommand.d.ts +16 -0
- package/dist-types/commands/DescribeRuleCommand.d.ts +16 -0
- package/dist-types/commands/DisableRuleCommand.d.ts +16 -0
- package/dist-types/commands/EnableRuleCommand.d.ts +16 -0
- package/dist-types/commands/ListApiDestinationsCommand.d.ts +16 -0
- package/dist-types/commands/ListArchivesCommand.d.ts +16 -0
- package/dist-types/commands/ListConnectionsCommand.d.ts +16 -0
- package/dist-types/commands/ListEventBusesCommand.d.ts +16 -0
- package/dist-types/commands/ListEventSourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListPartnerEventSourceAccountsCommand.d.ts +16 -0
- package/dist-types/commands/ListPartnerEventSourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListReplaysCommand.d.ts +16 -0
- package/dist-types/commands/ListRuleNamesByTargetCommand.d.ts +16 -0
- package/dist-types/commands/ListRulesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListTargetsByRuleCommand.d.ts +16 -0
- package/dist-types/commands/PutEventsCommand.d.ts +16 -0
- package/dist-types/commands/PutPartnerEventsCommand.d.ts +16 -0
- package/dist-types/commands/PutPermissionCommand.d.ts +16 -0
- package/dist-types/commands/PutRuleCommand.d.ts +16 -0
- package/dist-types/commands/PutTargetsCommand.d.ts +16 -0
- package/dist-types/commands/RemovePermissionCommand.d.ts +16 -0
- package/dist-types/commands/RemoveTargetsCommand.d.ts +16 -0
- package/dist-types/commands/StartReplayCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/TestEventPatternCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApiDestinationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateArchiveCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConnectionCommand.d.ts +16 -0
- package/dist-types/models/CloudWatchEventsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +406 -16
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
|
|
5
5
|
import { CreateArchiveRequest, CreateArchiveResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateArchiveCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateArchiveCommandInput extends CreateArchiveRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateArchiveCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateArchiveCommandOutput extends CreateArchiveResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an archive of events with the specified settings. When you create an archive,
|
|
18
23
|
* incoming events might not immediately start being sent to the archive. Allow a short period of
|
|
19
24
|
* time for changes to take effect. If you do not specify a pattern to filter events sent to the
|
|
@@ -29,6 +34,8 @@ export interface CreateArchiveCommandOutput extends CreateArchiveResponse, __Met
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param CreateArchiveCommandInput - {@link CreateArchiveCommandInput}
|
|
38
|
+
* @returns {@link CreateArchiveCommandOutput}
|
|
32
39
|
* @see {@link CreateArchiveCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link CreateArchiveCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface CreateArchiveCommandOutput extends CreateArchiveResponse, __Met
|
|
|
57
64
|
export declare class CreateArchiveCommand extends $Command<CreateArchiveCommandInput, CreateArchiveCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
58
65
|
readonly input: CreateArchiveCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: CreateArchiveCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateArchiveCommandInput, CreateArchiveCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
|
|
5
5
|
import { CreateConnectionRequest, CreateConnectionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateConnectionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateConnectionCommandInput extends CreateConnectionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateConnectionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateConnectionCommandOutput extends CreateConnectionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a connection. A connection defines the authorization type and credentials to use
|
|
18
23
|
* for authorization with an API destination HTTP endpoint.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateConnectionCommandOutput extends CreateConnectionResponse,
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateConnectionCommandInput - {@link CreateConnectionCommandInput}
|
|
35
|
+
* @returns {@link CreateConnectionCommandOutput}
|
|
29
36
|
* @see {@link CreateConnectionCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateConnectionCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -45,11 +52,20 @@ export interface CreateConnectionCommandOutput extends CreateConnectionResponse,
|
|
|
45
52
|
export declare class CreateConnectionCommand extends $Command<CreateConnectionCommandInput, CreateConnectionCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
46
53
|
readonly input: CreateConnectionCommandInput;
|
|
47
54
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
48
58
|
constructor(input: CreateConnectionCommandInput);
|
|
49
59
|
/**
|
|
50
60
|
* @internal
|
|
51
61
|
*/
|
|
52
62
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateConnectionCommandInput, CreateConnectionCommandOutput>;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
53
66
|
private serialize;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
54
70
|
private deserialize;
|
|
55
71
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
|
|
5
5
|
import { CreateEventBusRequest, CreateEventBusResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateEventBusCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateEventBusCommandInput extends CreateEventBusRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateEventBusCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateEventBusCommandOutput extends CreateEventBusResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a new event bus within your account. This can be a custom event bus which you can
|
|
18
23
|
* use to receive events from your custom applications and services, or it can be a partner event
|
|
19
24
|
* bus which can be matched to a partner event source.</p>
|
|
@@ -27,6 +32,8 @@ export interface CreateEventBusCommandOutput extends CreateEventBusResponse, __M
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param CreateEventBusCommandInput - {@link CreateEventBusCommandInput}
|
|
36
|
+
* @returns {@link CreateEventBusCommandOutput}
|
|
30
37
|
* @see {@link CreateEventBusCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link CreateEventBusCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface CreateEventBusCommandOutput extends CreateEventBusResponse, __M
|
|
|
58
65
|
export declare class CreateEventBusCommand extends $Command<CreateEventBusCommandInput, CreateEventBusCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
59
66
|
readonly input: CreateEventBusCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: CreateEventBusCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateEventBusCommandInput, CreateEventBusCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
66
79
|
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
67
83
|
private deserialize;
|
|
68
84
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
|
|
5
5
|
import { CreatePartnerEventSourceRequest, CreatePartnerEventSourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreatePartnerEventSourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreatePartnerEventSourceCommandInput extends CreatePartnerEventSourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreatePartnerEventSourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreatePartnerEventSourceCommandOutput extends CreatePartnerEventSourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Called by an SaaS partner to create a partner event source. This operation is not used by
|
|
18
23
|
* Amazon Web Services customers.</p>
|
|
19
24
|
* <p>Each partner event source can be used by one Amazon Web Services account to create a matching partner
|
|
@@ -48,6 +53,8 @@ export interface CreatePartnerEventSourceCommandOutput extends CreatePartnerEven
|
|
|
48
53
|
* const response = await client.send(command);
|
|
49
54
|
* ```
|
|
50
55
|
*
|
|
56
|
+
* @param CreatePartnerEventSourceCommandInput - {@link CreatePartnerEventSourceCommandInput}
|
|
57
|
+
* @returns {@link CreatePartnerEventSourceCommandOutput}
|
|
51
58
|
* @see {@link CreatePartnerEventSourceCommandInput} for command's `input` shape.
|
|
52
59
|
* @see {@link CreatePartnerEventSourceCommandOutput} for command's `response` shape.
|
|
53
60
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -73,11 +80,20 @@ export interface CreatePartnerEventSourceCommandOutput extends CreatePartnerEven
|
|
|
73
80
|
export declare class CreatePartnerEventSourceCommand extends $Command<CreatePartnerEventSourceCommandInput, CreatePartnerEventSourceCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
74
81
|
readonly input: CreatePartnerEventSourceCommandInput;
|
|
75
82
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
76
86
|
constructor(input: CreatePartnerEventSourceCommandInput);
|
|
77
87
|
/**
|
|
78
88
|
* @internal
|
|
79
89
|
*/
|
|
80
90
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreatePartnerEventSourceCommandInput, CreatePartnerEventSourceCommandOutput>;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
81
94
|
private serialize;
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
*/
|
|
82
98
|
private deserialize;
|
|
83
99
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
|
|
5
5
|
import { DeactivateEventSourceRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeactivateEventSourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeactivateEventSourceCommandInput extends DeactivateEventSourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeactivateEventSourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeactivateEventSourceCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>You can use this operation to temporarily stop receiving events from the specified partner
|
|
18
23
|
* event source. The matching event bus is not deleted. </p>
|
|
19
24
|
* <p>When you deactivate a partner event source, the source goes into PENDING state. If it
|
|
@@ -29,6 +34,8 @@ export interface DeactivateEventSourceCommandOutput extends __MetadataBearer {
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param DeactivateEventSourceCommandInput - {@link DeactivateEventSourceCommandInput}
|
|
38
|
+
* @returns {@link DeactivateEventSourceCommandOutput}
|
|
32
39
|
* @see {@link DeactivateEventSourceCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link DeactivateEventSourceCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface DeactivateEventSourceCommandOutput extends __MetadataBearer {
|
|
|
53
60
|
export declare class DeactivateEventSourceCommand extends $Command<DeactivateEventSourceCommandInput, DeactivateEventSourceCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
54
61
|
readonly input: DeactivateEventSourceCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: DeactivateEventSourceCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeactivateEventSourceCommandInput, DeactivateEventSourceCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
|
|
5
5
|
import { DeauthorizeConnectionRequest, DeauthorizeConnectionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeauthorizeConnectionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeauthorizeConnectionCommandInput extends DeauthorizeConnectionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeauthorizeConnectionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeauthorizeConnectionCommandOutput extends DeauthorizeConnectionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes all authorization parameters from the connection. This lets you remove the secret
|
|
18
23
|
* from the connection so you can reuse it without having to create a new connection.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeauthorizeConnectionCommandOutput extends DeauthorizeConnectio
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeauthorizeConnectionCommandInput - {@link DeauthorizeConnectionCommandInput}
|
|
35
|
+
* @returns {@link DeauthorizeConnectionCommandOutput}
|
|
29
36
|
* @see {@link DeauthorizeConnectionCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeauthorizeConnectionCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface DeauthorizeConnectionCommandOutput extends DeauthorizeConnectio
|
|
|
44
51
|
export declare class DeauthorizeConnectionCommand extends $Command<DeauthorizeConnectionCommandInput, DeauthorizeConnectionCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
45
52
|
readonly input: DeauthorizeConnectionCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: DeauthorizeConnectionCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeauthorizeConnectionCommandInput, DeauthorizeConnectionCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
|
|
5
5
|
import { DeleteApiDestinationRequest, DeleteApiDestinationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteApiDestinationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteApiDestinationCommandInput extends DeleteApiDestinationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteApiDestinationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteApiDestinationCommandOutput extends DeleteApiDestinationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified API destination.</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 DeleteApiDestinationCommandOutput extends DeleteApiDestinationR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteApiDestinationCommandInput - {@link DeleteApiDestinationCommandInput}
|
|
34
|
+
* @returns {@link DeleteApiDestinationCommandOutput}
|
|
28
35
|
* @see {@link DeleteApiDestinationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteApiDestinationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DeleteApiDestinationCommandOutput extends DeleteApiDestinationR
|
|
|
43
50
|
export declare class DeleteApiDestinationCommand extends $Command<DeleteApiDestinationCommandInput, DeleteApiDestinationCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
44
51
|
readonly input: DeleteApiDestinationCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DeleteApiDestinationCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApiDestinationCommandInput, DeleteApiDestinationCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
|
|
5
5
|
import { DeleteArchiveRequest, DeleteArchiveResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteArchiveCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteArchiveCommandInput extends DeleteArchiveRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteArchiveCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteArchiveCommandOutput extends DeleteArchiveResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified archive.</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 DeleteArchiveCommandOutput extends DeleteArchiveResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteArchiveCommandInput - {@link DeleteArchiveCommandInput}
|
|
34
|
+
* @returns {@link DeleteArchiveCommandOutput}
|
|
28
35
|
* @see {@link DeleteArchiveCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteArchiveCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DeleteArchiveCommandOutput extends DeleteArchiveResponse, __Met
|
|
|
43
50
|
export declare class DeleteArchiveCommand extends $Command<DeleteArchiveCommandInput, DeleteArchiveCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
44
51
|
readonly input: DeleteArchiveCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DeleteArchiveCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteArchiveCommandInput, DeleteArchiveCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
|
|
5
5
|
import { DeleteConnectionRequest, DeleteConnectionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteConnectionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteConnectionCommandInput extends DeleteConnectionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteConnectionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteConnectionCommandOutput extends DeleteConnectionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes 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 DeleteConnectionCommandOutput extends DeleteConnectionResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteConnectionCommandInput - {@link DeleteConnectionCommandInput}
|
|
34
|
+
* @returns {@link DeleteConnectionCommandOutput}
|
|
28
35
|
* @see {@link DeleteConnectionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteConnectionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DeleteConnectionCommandOutput extends DeleteConnectionResponse,
|
|
|
43
50
|
export declare class DeleteConnectionCommand extends $Command<DeleteConnectionCommandInput, DeleteConnectionCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
44
51
|
readonly input: DeleteConnectionCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DeleteConnectionCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteConnectionCommandInput, DeleteConnectionCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
|
|
5
5
|
import { DeleteEventBusRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteEventBusCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteEventBusCommandInput extends DeleteEventBusRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteEventBusCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteEventBusCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified custom event bus or partner event bus. All rules associated with
|
|
18
23
|
* this event bus need to be deleted. You can't delete your account's default event bus.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteEventBusCommandOutput extends __MetadataBearer {
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteEventBusCommandInput - {@link DeleteEventBusCommandInput}
|
|
35
|
+
* @returns {@link DeleteEventBusCommandOutput}
|
|
29
36
|
* @see {@link DeleteEventBusCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteEventBusCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface DeleteEventBusCommandOutput extends __MetadataBearer {
|
|
|
41
48
|
export declare class DeleteEventBusCommand extends $Command<DeleteEventBusCommandInput, DeleteEventBusCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
42
49
|
readonly input: DeleteEventBusCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: DeleteEventBusCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEventBusCommandInput, DeleteEventBusCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
|
|
5
5
|
import { DeletePartnerEventSourceRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeletePartnerEventSourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeletePartnerEventSourceCommandInput extends DeletePartnerEventSourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeletePartnerEventSourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeletePartnerEventSourceCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This operation is used by SaaS partners to delete a partner event source. This operation
|
|
18
23
|
* is not used by Amazon Web Services customers.</p>
|
|
19
24
|
* <p>When you delete an event source, the status of the corresponding partner event bus in the
|
|
@@ -29,6 +34,8 @@ export interface DeletePartnerEventSourceCommandOutput extends __MetadataBearer
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param DeletePartnerEventSourceCommandInput - {@link DeletePartnerEventSourceCommandInput}
|
|
38
|
+
* @returns {@link DeletePartnerEventSourceCommandOutput}
|
|
32
39
|
* @see {@link DeletePartnerEventSourceCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link DeletePartnerEventSourceCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface DeletePartnerEventSourceCommandOutput extends __MetadataBearer
|
|
|
47
54
|
export declare class DeletePartnerEventSourceCommand extends $Command<DeletePartnerEventSourceCommandInput, DeletePartnerEventSourceCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
48
55
|
readonly input: DeletePartnerEventSourceCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: DeletePartnerEventSourceCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePartnerEventSourceCommandInput, DeletePartnerEventSourceCommandOutput>;
|
|
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 { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
|
|
5
5
|
import { DeleteRuleRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteRuleCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteRuleCommandInput extends DeleteRuleRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteRuleCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteRuleCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified rule.</p>
|
|
18
23
|
* <p>Before you can delete the rule, you must remove all targets, using <a href="https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_RemoveTargets.html">RemoveTargets</a>.</p>
|
|
19
24
|
*
|
|
@@ -38,6 +43,8 @@ export interface DeleteRuleCommandOutput extends __MetadataBearer {
|
|
|
38
43
|
* const response = await client.send(command);
|
|
39
44
|
* ```
|
|
40
45
|
*
|
|
46
|
+
* @param DeleteRuleCommandInput - {@link DeleteRuleCommandInput}
|
|
47
|
+
* @returns {@link DeleteRuleCommandOutput}
|
|
41
48
|
* @see {@link DeleteRuleCommandInput} for command's `input` shape.
|
|
42
49
|
* @see {@link DeleteRuleCommandOutput} for command's `response` shape.
|
|
43
50
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -64,11 +71,20 @@ export interface DeleteRuleCommandOutput extends __MetadataBearer {
|
|
|
64
71
|
export declare class DeleteRuleCommand extends $Command<DeleteRuleCommandInput, DeleteRuleCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
65
72
|
readonly input: DeleteRuleCommandInput;
|
|
66
73
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
67
77
|
constructor(input: DeleteRuleCommandInput);
|
|
68
78
|
/**
|
|
69
79
|
* @internal
|
|
70
80
|
*/
|
|
71
81
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRuleCommandInput, DeleteRuleCommandOutput>;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
72
85
|
private serialize;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
73
89
|
private deserialize;
|
|
74
90
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
|
|
5
5
|
import { DescribeApiDestinationRequest, DescribeApiDestinationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeApiDestinationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeApiDestinationCommandInput extends DescribeApiDestinationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeApiDestinationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeApiDestinationCommandOutput extends DescribeApiDestinationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves details about an API destination.</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 DescribeApiDestinationCommandOutput extends DescribeApiDestinat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeApiDestinationCommandInput - {@link DescribeApiDestinationCommandInput}
|
|
34
|
+
* @returns {@link DescribeApiDestinationCommandOutput}
|
|
28
35
|
* @see {@link DescribeApiDestinationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeApiDestinationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface DescribeApiDestinationCommandOutput extends DescribeApiDestinat
|
|
|
40
47
|
export declare class DescribeApiDestinationCommand extends $Command<DescribeApiDestinationCommandInput, DescribeApiDestinationCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
41
48
|
readonly input: DescribeApiDestinationCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: DescribeApiDestinationCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeApiDestinationCommandInput, DescribeApiDestinationCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|