@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 { RemovePermissionRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RemovePermissionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RemovePermissionCommandInput extends RemovePermissionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RemovePermissionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RemovePermissionCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Revokes the permission of another Amazon Web Services account to be able to put events to the specified
|
|
18
23
|
* event bus. Specify the account to revoke by the <code>StatementId</code> value that you
|
|
19
24
|
* associated with the account when you granted it permission with <code>PutPermission</code>.
|
|
@@ -28,6 +33,8 @@ export interface RemovePermissionCommandOutput extends __MetadataBearer {
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param RemovePermissionCommandInput - {@link RemovePermissionCommandInput}
|
|
37
|
+
* @returns {@link RemovePermissionCommandOutput}
|
|
31
38
|
* @see {@link RemovePermissionCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link RemovePermissionCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface RemovePermissionCommandOutput extends __MetadataBearer {
|
|
|
49
56
|
export declare class RemovePermissionCommand extends $Command<RemovePermissionCommandInput, RemovePermissionCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
50
57
|
readonly input: RemovePermissionCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: RemovePermissionCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemovePermissionCommandInput, RemovePermissionCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
|
|
5
5
|
import { RemoveTargetsRequest, RemoveTargetsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RemoveTargetsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RemoveTargetsCommandInput extends RemoveTargetsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RemoveTargetsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RemoveTargetsCommandOutput extends RemoveTargetsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes the specified targets from the specified rule. When the rule is triggered, those
|
|
18
23
|
* targets are no longer be invoked.</p>
|
|
19
24
|
*
|
|
@@ -33,6 +38,8 @@ export interface RemoveTargetsCommandOutput extends RemoveTargetsResponse, __Met
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param RemoveTargetsCommandInput - {@link RemoveTargetsCommandInput}
|
|
42
|
+
* @returns {@link RemoveTargetsCommandOutput}
|
|
36
43
|
* @see {@link RemoveTargetsCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link RemoveTargetsCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface RemoveTargetsCommandOutput extends RemoveTargetsResponse, __Met
|
|
|
59
66
|
export declare class RemoveTargetsCommand extends $Command<RemoveTargetsCommandInput, RemoveTargetsCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
60
67
|
readonly input: RemoveTargetsCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: RemoveTargetsCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveTargetsCommandInput, RemoveTargetsCommandOutput>;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
67
80
|
private serialize;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
68
84
|
private deserialize;
|
|
69
85
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
|
|
5
5
|
import { StartReplayRequest, StartReplayResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartReplayCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartReplayCommandInput extends StartReplayRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartReplayCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartReplayCommandOutput extends StartReplayResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Starts the specified replay. Events are not necessarily replayed in the exact same order
|
|
18
23
|
* that they were added to the archive. A replay processes events to replay based on the time in
|
|
19
24
|
* the event, and replays them using 1 minute intervals. If you specify an
|
|
@@ -33,6 +38,8 @@ export interface StartReplayCommandOutput extends StartReplayResponse, __Metadat
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param StartReplayCommandInput - {@link StartReplayCommandInput}
|
|
42
|
+
* @returns {@link StartReplayCommandOutput}
|
|
36
43
|
* @see {@link StartReplayCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link StartReplayCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface StartReplayCommandOutput extends StartReplayResponse, __Metadat
|
|
|
58
65
|
export declare class StartReplayCommand extends $Command<StartReplayCommandInput, StartReplayCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
59
66
|
readonly input: StartReplayCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: StartReplayCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartReplayCommandInput, StartReplayCommandOutput>;
|
|
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Assigns one or more tags (key-value pairs) to the specified EventBridge resource. Tags can
|
|
18
23
|
* help you organize and categorize your resources. You can also use them to scope user
|
|
19
24
|
* permissions by granting a user permission to access or change only resources with certain tag
|
|
@@ -35,6 +40,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
35
40
|
* const response = await client.send(command);
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
43
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
44
|
+
* @returns {@link TagResourceCommandOutput}
|
|
38
45
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
39
46
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
40
47
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -61,11 +68,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
61
68
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
62
69
|
readonly input: TagResourceCommandInput;
|
|
63
70
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
64
74
|
constructor(input: TagResourceCommandInput);
|
|
65
75
|
/**
|
|
66
76
|
* @internal
|
|
67
77
|
*/
|
|
68
78
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
69
82
|
private serialize;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
70
86
|
private deserialize;
|
|
71
87
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
|
|
5
5
|
import { TestEventPatternRequest, TestEventPatternResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TestEventPatternCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TestEventPatternCommandInput extends TestEventPatternRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TestEventPatternCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TestEventPatternCommandOutput extends TestEventPatternResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Tests whether the specified event pattern matches the provided event.</p>
|
|
18
23
|
* <p>Most services in Amazon Web Services treat : or / as the same character in Amazon Resource Names (ARNs).
|
|
19
24
|
* However, EventBridge uses an exact match in event patterns and rules. Be sure to use the
|
|
@@ -29,6 +34,8 @@ export interface TestEventPatternCommandOutput extends TestEventPatternResponse,
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param TestEventPatternCommandInput - {@link TestEventPatternCommandInput}
|
|
38
|
+
* @returns {@link TestEventPatternCommandOutput}
|
|
32
39
|
* @see {@link TestEventPatternCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link TestEventPatternCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface TestEventPatternCommandOutput extends TestEventPatternResponse,
|
|
|
44
51
|
export declare class TestEventPatternCommand extends $Command<TestEventPatternCommandInput, TestEventPatternCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
45
52
|
readonly input: TestEventPatternCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: TestEventPatternCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TestEventPatternCommandInput, TestEventPatternCommandOutput>;
|
|
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 { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes one or more tags from the specified EventBridge resource. In Amazon EventBridge
|
|
18
23
|
* (CloudWatch Events), rules and event buses can be tagged.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
35
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
29
36
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
52
59
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
53
60
|
readonly input: UntagResourceCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: UntagResourceCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
|
|
5
5
|
import { UpdateApiDestinationRequest, UpdateApiDestinationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateApiDestinationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateApiDestinationCommandInput extends UpdateApiDestinationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateApiDestinationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateApiDestinationCommandOutput extends UpdateApiDestinationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates 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 UpdateApiDestinationCommandOutput extends UpdateApiDestinationR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateApiDestinationCommandInput - {@link UpdateApiDestinationCommandInput}
|
|
34
|
+
* @returns {@link UpdateApiDestinationCommandOutput}
|
|
28
35
|
* @see {@link UpdateApiDestinationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateApiDestinationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface UpdateApiDestinationCommandOutput extends UpdateApiDestinationR
|
|
|
47
54
|
export declare class UpdateApiDestinationCommand extends $Command<UpdateApiDestinationCommandInput, UpdateApiDestinationCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
48
55
|
readonly input: UpdateApiDestinationCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: UpdateApiDestinationCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateApiDestinationCommandInput, UpdateApiDestinationCommandOutput>;
|
|
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 { UpdateArchiveRequest, UpdateArchiveResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateArchiveCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateArchiveCommandInput extends UpdateArchiveRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateArchiveCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateArchiveCommandOutput extends UpdateArchiveResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates 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 UpdateArchiveCommandOutput extends UpdateArchiveResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateArchiveCommandInput - {@link UpdateArchiveCommandInput}
|
|
34
|
+
* @returns {@link UpdateArchiveCommandOutput}
|
|
28
35
|
* @see {@link UpdateArchiveCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateArchiveCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface UpdateArchiveCommandOutput extends UpdateArchiveResponse, __Met
|
|
|
50
57
|
export declare class UpdateArchiveCommand extends $Command<UpdateArchiveCommandInput, UpdateArchiveCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
51
58
|
readonly input: UpdateArchiveCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: UpdateArchiveCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateArchiveCommandInput, UpdateArchiveCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
|
|
5
5
|
import { UpdateConnectionRequest, UpdateConnectionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateConnectionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateConnectionCommandInput extends UpdateConnectionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateConnectionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateConnectionCommandOutput extends UpdateConnectionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates settings for a connection.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateConnectionCommandInput - {@link UpdateConnectionCommandInput}
|
|
34
|
+
* @returns {@link UpdateConnectionCommandOutput}
|
|
28
35
|
* @see {@link UpdateConnectionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateConnectionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionResponse,
|
|
|
47
54
|
export declare class UpdateConnectionCommand extends $Command<UpdateConnectionCommandInput, UpdateConnectionCommandOutput, CloudWatchEventsClientResolvedConfig> {
|
|
48
55
|
readonly input: UpdateConnectionCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: UpdateConnectionCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateConnectionCommandInput, UpdateConnectionCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from CloudWatchEvents service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class CloudWatchEventsServiceException extends __ServiceException {
|