@aws-sdk/client-cloudwatch-events 3.295.0 → 3.297.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/dist-types/CloudWatchEvents.d.ts +52 -0
  2. package/dist-types/CloudWatchEventsClient.d.ts +24 -4
  3. package/dist-types/commands/ActivateEventSourceCommand.d.ts +16 -0
  4. package/dist-types/commands/CancelReplayCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateApiDestinationCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateArchiveCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateConnectionCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateEventBusCommand.d.ts +16 -0
  9. package/dist-types/commands/CreatePartnerEventSourceCommand.d.ts +16 -0
  10. package/dist-types/commands/DeactivateEventSourceCommand.d.ts +16 -0
  11. package/dist-types/commands/DeauthorizeConnectionCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteApiDestinationCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteArchiveCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteConnectionCommand.d.ts +16 -0
  15. package/dist-types/commands/DeleteEventBusCommand.d.ts +16 -0
  16. package/dist-types/commands/DeletePartnerEventSourceCommand.d.ts +16 -0
  17. package/dist-types/commands/DeleteRuleCommand.d.ts +16 -0
  18. package/dist-types/commands/DescribeApiDestinationCommand.d.ts +16 -0
  19. package/dist-types/commands/DescribeArchiveCommand.d.ts +16 -0
  20. package/dist-types/commands/DescribeConnectionCommand.d.ts +16 -0
  21. package/dist-types/commands/DescribeEventBusCommand.d.ts +16 -0
  22. package/dist-types/commands/DescribeEventSourceCommand.d.ts +16 -0
  23. package/dist-types/commands/DescribePartnerEventSourceCommand.d.ts +16 -0
  24. package/dist-types/commands/DescribeReplayCommand.d.ts +16 -0
  25. package/dist-types/commands/DescribeRuleCommand.d.ts +16 -0
  26. package/dist-types/commands/DisableRuleCommand.d.ts +16 -0
  27. package/dist-types/commands/EnableRuleCommand.d.ts +16 -0
  28. package/dist-types/commands/ListApiDestinationsCommand.d.ts +16 -0
  29. package/dist-types/commands/ListArchivesCommand.d.ts +16 -0
  30. package/dist-types/commands/ListConnectionsCommand.d.ts +16 -0
  31. package/dist-types/commands/ListEventBusesCommand.d.ts +16 -0
  32. package/dist-types/commands/ListEventSourcesCommand.d.ts +16 -0
  33. package/dist-types/commands/ListPartnerEventSourceAccountsCommand.d.ts +16 -0
  34. package/dist-types/commands/ListPartnerEventSourcesCommand.d.ts +16 -0
  35. package/dist-types/commands/ListReplaysCommand.d.ts +16 -0
  36. package/dist-types/commands/ListRuleNamesByTargetCommand.d.ts +16 -0
  37. package/dist-types/commands/ListRulesCommand.d.ts +16 -0
  38. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  39. package/dist-types/commands/ListTargetsByRuleCommand.d.ts +16 -0
  40. package/dist-types/commands/PutEventsCommand.d.ts +16 -0
  41. package/dist-types/commands/PutPartnerEventsCommand.d.ts +16 -0
  42. package/dist-types/commands/PutPermissionCommand.d.ts +16 -0
  43. package/dist-types/commands/PutRuleCommand.d.ts +16 -0
  44. package/dist-types/commands/PutTargetsCommand.d.ts +16 -0
  45. package/dist-types/commands/RemovePermissionCommand.d.ts +16 -0
  46. package/dist-types/commands/RemoveTargetsCommand.d.ts +16 -0
  47. package/dist-types/commands/StartReplayCommand.d.ts +16 -0
  48. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  49. package/dist-types/commands/TestEventPatternCommand.d.ts +16 -0
  50. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  51. package/dist-types/commands/UpdateApiDestinationCommand.d.ts +16 -0
  52. package/dist-types/commands/UpdateArchiveCommand.d.ts +16 -0
  53. package/dist-types/commands/UpdateConnectionCommand.d.ts +16 -0
  54. package/dist-types/models/CloudWatchEventsServiceException.d.ts +2 -0
  55. package/dist-types/models/models_0.d.ts +406 -16
  56. package/package.json +29 -29
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
5
5
  import { DescribeArchiveRequest, DescribeArchiveResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeArchiveCommand}.
8
10
  */
9
11
  export interface DescribeArchiveCommandInput extends DescribeArchiveRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeArchiveCommand}.
13
17
  */
14
18
  export interface DescribeArchiveCommandOutput extends DescribeArchiveResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves details about an 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 DescribeArchiveCommandOutput extends DescribeArchiveResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeArchiveCommandInput - {@link DescribeArchiveCommandInput}
34
+ * @returns {@link DescribeArchiveCommandOutput}
28
35
  * @see {@link DescribeArchiveCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeArchiveCommandOutput} for command's `response` shape.
30
37
  * @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
@@ -43,11 +50,20 @@ export interface DescribeArchiveCommandOutput extends DescribeArchiveResponse, _
43
50
  export declare class DescribeArchiveCommand extends $Command<DescribeArchiveCommandInput, DescribeArchiveCommandOutput, CloudWatchEventsClientResolvedConfig> {
44
51
  readonly input: DescribeArchiveCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: DescribeArchiveCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeArchiveCommandInput, DescribeArchiveCommandOutput>;
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 { DescribeConnectionRequest, DescribeConnectionResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeConnectionCommand}.
8
10
  */
9
11
  export interface DescribeConnectionCommandInput extends DescribeConnectionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeConnectionCommand}.
13
17
  */
14
18
  export interface DescribeConnectionCommandOutput extends DescribeConnectionResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves details about 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 DescribeConnectionCommandOutput extends DescribeConnectionRespo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeConnectionCommandInput - {@link DescribeConnectionCommandInput}
34
+ * @returns {@link DescribeConnectionCommandOutput}
28
35
  * @see {@link DescribeConnectionCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeConnectionCommandOutput} for command's `response` shape.
30
37
  * @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
@@ -40,11 +47,20 @@ export interface DescribeConnectionCommandOutput extends DescribeConnectionRespo
40
47
  export declare class DescribeConnectionCommand extends $Command<DescribeConnectionCommandInput, DescribeConnectionCommandOutput, CloudWatchEventsClientResolvedConfig> {
41
48
  readonly input: DescribeConnectionCommandInput;
42
49
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
50
+ /**
51
+ * @public
52
+ */
43
53
  constructor(input: DescribeConnectionCommandInput);
44
54
  /**
45
55
  * @internal
46
56
  */
47
57
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeConnectionCommandInput, DescribeConnectionCommandOutput>;
58
+ /**
59
+ * @internal
60
+ */
48
61
  private serialize;
62
+ /**
63
+ * @internal
64
+ */
49
65
  private deserialize;
50
66
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
5
5
  import { DescribeEventBusRequest, DescribeEventBusResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeEventBusCommand}.
8
10
  */
9
11
  export interface DescribeEventBusCommandInput extends DescribeEventBusRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeEventBusCommand}.
13
17
  */
14
18
  export interface DescribeEventBusCommandOutput extends DescribeEventBusResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Displays details about an event bus in your account. This can include the external Amazon Web Services
18
23
  * accounts that are permitted to write events to your default event bus, and the associated
19
24
  * policy. For custom event buses and partner event buses, it displays the name, ARN, policy,
@@ -31,6 +36,8 @@ export interface DescribeEventBusCommandOutput extends DescribeEventBusResponse,
31
36
  * const response = await client.send(command);
32
37
  * ```
33
38
  *
39
+ * @param DescribeEventBusCommandInput - {@link DescribeEventBusCommandInput}
40
+ * @returns {@link DescribeEventBusCommandOutput}
34
41
  * @see {@link DescribeEventBusCommandInput} for command's `input` shape.
35
42
  * @see {@link DescribeEventBusCommandOutput} for command's `response` shape.
36
43
  * @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
@@ -46,11 +53,20 @@ export interface DescribeEventBusCommandOutput extends DescribeEventBusResponse,
46
53
  export declare class DescribeEventBusCommand extends $Command<DescribeEventBusCommandInput, DescribeEventBusCommandOutput, CloudWatchEventsClientResolvedConfig> {
47
54
  readonly input: DescribeEventBusCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: DescribeEventBusCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEventBusCommandInput, DescribeEventBusCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
5
5
  import { DescribeEventSourceRequest, DescribeEventSourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeEventSourceCommand}.
8
10
  */
9
11
  export interface DescribeEventSourceCommandInput extends DescribeEventSourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeEventSourceCommand}.
13
17
  */
14
18
  export interface DescribeEventSourceCommandOutput extends DescribeEventSourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation lists details about a partner event source that is shared with your
18
23
  * account.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface DescribeEventSourceCommandOutput extends DescribeEventSourceRes
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param DescribeEventSourceCommandInput - {@link DescribeEventSourceCommandInput}
35
+ * @returns {@link DescribeEventSourceCommandOutput}
29
36
  * @see {@link DescribeEventSourceCommandInput} for command's `input` shape.
30
37
  * @see {@link DescribeEventSourceCommandOutput} for command's `response` shape.
31
38
  * @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
@@ -44,11 +51,20 @@ export interface DescribeEventSourceCommandOutput extends DescribeEventSourceRes
44
51
  export declare class DescribeEventSourceCommand extends $Command<DescribeEventSourceCommandInput, DescribeEventSourceCommandOutput, CloudWatchEventsClientResolvedConfig> {
45
52
  readonly input: DescribeEventSourceCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: DescribeEventSourceCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEventSourceCommandInput, DescribeEventSourceCommandOutput>;
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 { DescribePartnerEventSourceRequest, DescribePartnerEventSourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribePartnerEventSourceCommand}.
8
10
  */
9
11
  export interface DescribePartnerEventSourceCommandInput extends DescribePartnerEventSourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribePartnerEventSourceCommand}.
13
17
  */
14
18
  export interface DescribePartnerEventSourceCommandOutput extends DescribePartnerEventSourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>An SaaS partner can use this operation to list details about a partner event source that
18
23
  * they have created. Amazon Web Services customers do not use this operation. Instead, Amazon Web Services customers can use <a href="https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_DescribeEventSource.html">DescribeEventSource</a>
19
24
  * to see details about a partner event source that is
@@ -28,6 +33,8 @@ export interface DescribePartnerEventSourceCommandOutput extends DescribePartner
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param DescribePartnerEventSourceCommandInput - {@link DescribePartnerEventSourceCommandInput}
37
+ * @returns {@link DescribePartnerEventSourceCommandOutput}
31
38
  * @see {@link DescribePartnerEventSourceCommandInput} for command's `input` shape.
32
39
  * @see {@link DescribePartnerEventSourceCommandOutput} for command's `response` shape.
33
40
  * @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
@@ -46,11 +53,20 @@ export interface DescribePartnerEventSourceCommandOutput extends DescribePartner
46
53
  export declare class DescribePartnerEventSourceCommand extends $Command<DescribePartnerEventSourceCommandInput, DescribePartnerEventSourceCommandOutput, CloudWatchEventsClientResolvedConfig> {
47
54
  readonly input: DescribePartnerEventSourceCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: DescribePartnerEventSourceCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribePartnerEventSourceCommandInput, DescribePartnerEventSourceCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
5
5
  import { DescribeReplayRequest, DescribeReplayResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeReplayCommand}.
8
10
  */
9
11
  export interface DescribeReplayCommandInput extends DescribeReplayRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeReplayCommand}.
13
17
  */
14
18
  export interface DescribeReplayCommandOutput extends DescribeReplayResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves details about a replay. Use <code>DescribeReplay</code> to determine the
18
23
  * progress of a running replay. A replay processes events to replay based on the time in the
19
24
  * event, and replays them using 1 minute intervals. If you use <code>StartReplay</code> and
@@ -33,6 +38,8 @@ export interface DescribeReplayCommandOutput extends DescribeReplayResponse, __M
33
38
  * const response = await client.send(command);
34
39
  * ```
35
40
  *
41
+ * @param DescribeReplayCommandInput - {@link DescribeReplayCommandInput}
42
+ * @returns {@link DescribeReplayCommandOutput}
36
43
  * @see {@link DescribeReplayCommandInput} for command's `input` shape.
37
44
  * @see {@link DescribeReplayCommandOutput} for command's `response` shape.
38
45
  * @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
@@ -48,11 +55,20 @@ export interface DescribeReplayCommandOutput extends DescribeReplayResponse, __M
48
55
  export declare class DescribeReplayCommand extends $Command<DescribeReplayCommandInput, DescribeReplayCommandOutput, CloudWatchEventsClientResolvedConfig> {
49
56
  readonly input: DescribeReplayCommandInput;
50
57
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
58
+ /**
59
+ * @public
60
+ */
51
61
  constructor(input: DescribeReplayCommandInput);
52
62
  /**
53
63
  * @internal
54
64
  */
55
65
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeReplayCommandInput, DescribeReplayCommandOutput>;
66
+ /**
67
+ * @internal
68
+ */
56
69
  private serialize;
70
+ /**
71
+ * @internal
72
+ */
57
73
  private deserialize;
58
74
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
5
5
  import { DescribeRuleRequest, DescribeRuleResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeRuleCommand}.
8
10
  */
9
11
  export interface DescribeRuleCommandInput extends DescribeRuleRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeRuleCommand}.
13
17
  */
14
18
  export interface DescribeRuleCommandOutput extends DescribeRuleResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Describes the specified rule.</p>
18
23
  * <p>DescribeRule does not list the targets of a rule. To see the targets associated with a
19
24
  * rule, use <a href="https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_ListTargetsByRule.html">ListTargetsByRule</a>.</p>
@@ -27,6 +32,8 @@ export interface DescribeRuleCommandOutput extends DescribeRuleResponse, __Metad
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param DescribeRuleCommandInput - {@link DescribeRuleCommandInput}
36
+ * @returns {@link DescribeRuleCommandOutput}
30
37
  * @see {@link DescribeRuleCommandInput} for command's `input` shape.
31
38
  * @see {@link DescribeRuleCommandOutput} for command's `response` shape.
32
39
  * @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
@@ -42,11 +49,20 @@ export interface DescribeRuleCommandOutput extends DescribeRuleResponse, __Metad
42
49
  export declare class DescribeRuleCommand extends $Command<DescribeRuleCommandInput, DescribeRuleCommandOutput, CloudWatchEventsClientResolvedConfig> {
43
50
  readonly input: DescribeRuleCommandInput;
44
51
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
52
+ /**
53
+ * @public
54
+ */
45
55
  constructor(input: DescribeRuleCommandInput);
46
56
  /**
47
57
  * @internal
48
58
  */
49
59
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeRuleCommandInput, DescribeRuleCommandOutput>;
60
+ /**
61
+ * @internal
62
+ */
50
63
  private serialize;
64
+ /**
65
+ * @internal
66
+ */
51
67
  private deserialize;
52
68
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
5
5
  import { DisableRuleRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DisableRuleCommand}.
8
10
  */
9
11
  export interface DisableRuleCommandInput extends DisableRuleRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DisableRuleCommand}.
13
17
  */
14
18
  export interface DisableRuleCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Disables the specified rule. A disabled rule won't match any events, and won't
18
23
  * self-trigger if it has a schedule expression.</p>
19
24
  *
@@ -29,6 +34,8 @@ export interface DisableRuleCommandOutput extends __MetadataBearer {
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param DisableRuleCommandInput - {@link DisableRuleCommandInput}
38
+ * @returns {@link DisableRuleCommandOutput}
32
39
  * @see {@link DisableRuleCommandInput} for command's `input` shape.
33
40
  * @see {@link DisableRuleCommandOutput} for command's `response` shape.
34
41
  * @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
@@ -55,11 +62,20 @@ export interface DisableRuleCommandOutput extends __MetadataBearer {
55
62
  export declare class DisableRuleCommand extends $Command<DisableRuleCommandInput, DisableRuleCommandOutput, CloudWatchEventsClientResolvedConfig> {
56
63
  readonly input: DisableRuleCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: DisableRuleCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisableRuleCommandInput, DisableRuleCommandOutput>;
73
+ /**
74
+ * @internal
75
+ */
63
76
  private serialize;
77
+ /**
78
+ * @internal
79
+ */
64
80
  private deserialize;
65
81
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
5
5
  import { EnableRuleRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link EnableRuleCommand}.
8
10
  */
9
11
  export interface EnableRuleCommandInput extends EnableRuleRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link EnableRuleCommand}.
13
17
  */
14
18
  export interface EnableRuleCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Enables the specified rule. If the rule does not exist, the operation fails.</p>
18
23
  *
19
24
  * <p>When you enable a rule, incoming events might not immediately start matching to a newly
@@ -28,6 +33,8 @@ export interface EnableRuleCommandOutput extends __MetadataBearer {
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param EnableRuleCommandInput - {@link EnableRuleCommandInput}
37
+ * @returns {@link EnableRuleCommandOutput}
31
38
  * @see {@link EnableRuleCommandInput} for command's `input` shape.
32
39
  * @see {@link EnableRuleCommandOutput} for command's `response` shape.
33
40
  * @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
@@ -54,11 +61,20 @@ export interface EnableRuleCommandOutput extends __MetadataBearer {
54
61
  export declare class EnableRuleCommand extends $Command<EnableRuleCommandInput, EnableRuleCommandOutput, CloudWatchEventsClientResolvedConfig> {
55
62
  readonly input: EnableRuleCommandInput;
56
63
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
57
67
  constructor(input: EnableRuleCommandInput);
58
68
  /**
59
69
  * @internal
60
70
  */
61
71
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EnableRuleCommandInput, EnableRuleCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
62
75
  private serialize;
76
+ /**
77
+ * @internal
78
+ */
63
79
  private deserialize;
64
80
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
5
5
  import { ListApiDestinationsRequest, ListApiDestinationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListApiDestinationsCommand}.
8
10
  */
9
11
  export interface ListApiDestinationsCommandInput extends ListApiDestinationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListApiDestinationsCommand}.
13
17
  */
14
18
  export interface ListApiDestinationsCommandOutput extends ListApiDestinationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves a list of API destination in the account in the current Region.</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 ListApiDestinationsCommandOutput extends ListApiDestinationsRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListApiDestinationsCommandInput - {@link ListApiDestinationsCommandInput}
34
+ * @returns {@link ListApiDestinationsCommandOutput}
28
35
  * @see {@link ListApiDestinationsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListApiDestinationsCommandOutput} for command's `response` shape.
30
37
  * @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
@@ -37,11 +44,20 @@ export interface ListApiDestinationsCommandOutput extends ListApiDestinationsRes
37
44
  export declare class ListApiDestinationsCommand extends $Command<ListApiDestinationsCommandInput, ListApiDestinationsCommandOutput, CloudWatchEventsClientResolvedConfig> {
38
45
  readonly input: ListApiDestinationsCommandInput;
39
46
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
47
+ /**
48
+ * @public
49
+ */
40
50
  constructor(input: ListApiDestinationsCommandInput);
41
51
  /**
42
52
  * @internal
43
53
  */
44
54
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApiDestinationsCommandInput, ListApiDestinationsCommandOutput>;
55
+ /**
56
+ * @internal
57
+ */
45
58
  private serialize;
59
+ /**
60
+ * @internal
61
+ */
46
62
  private deserialize;
47
63
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
5
5
  import { ListArchivesRequest, ListArchivesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListArchivesCommand}.
8
10
  */
9
11
  export interface ListArchivesCommandInput extends ListArchivesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListArchivesCommand}.
13
17
  */
14
18
  export interface ListArchivesCommandOutput extends ListArchivesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists your archives. You can either list all the archives or you can provide a prefix to
18
23
  * match to the archive names. Filter parameters are exclusive.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListArchivesCommandOutput extends ListArchivesResponse, __Metad
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListArchivesCommandInput - {@link ListArchivesCommandInput}
35
+ * @returns {@link ListArchivesCommandOutput}
29
36
  * @see {@link ListArchivesCommandInput} for command's `input` shape.
30
37
  * @see {@link ListArchivesCommandOutput} for command's `response` shape.
31
38
  * @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
@@ -41,11 +48,20 @@ export interface ListArchivesCommandOutput extends ListArchivesResponse, __Metad
41
48
  export declare class ListArchivesCommand extends $Command<ListArchivesCommandInput, ListArchivesCommandOutput, CloudWatchEventsClientResolvedConfig> {
42
49
  readonly input: ListArchivesCommandInput;
43
50
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
51
+ /**
52
+ * @public
53
+ */
44
54
  constructor(input: ListArchivesCommandInput);
45
55
  /**
46
56
  * @internal
47
57
  */
48
58
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListArchivesCommandInput, ListArchivesCommandOutput>;
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 { ListConnectionsRequest, ListConnectionsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListConnectionsCommand}.
8
10
  */
9
11
  export interface ListConnectionsCommandInput extends ListConnectionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListConnectionsCommand}.
13
17
  */
14
18
  export interface ListConnectionsCommandOutput extends ListConnectionsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves a list of connections from the account.</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 ListConnectionsCommandOutput extends ListConnectionsResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListConnectionsCommandInput - {@link ListConnectionsCommandInput}
34
+ * @returns {@link ListConnectionsCommandOutput}
28
35
  * @see {@link ListConnectionsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListConnectionsCommandOutput} for command's `response` shape.
30
37
  * @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
@@ -37,11 +44,20 @@ export interface ListConnectionsCommandOutput extends ListConnectionsResponse, _
37
44
  export declare class ListConnectionsCommand extends $Command<ListConnectionsCommandInput, ListConnectionsCommandOutput, CloudWatchEventsClientResolvedConfig> {
38
45
  readonly input: ListConnectionsCommandInput;
39
46
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
47
+ /**
48
+ * @public
49
+ */
40
50
  constructor(input: ListConnectionsCommandInput);
41
51
  /**
42
52
  * @internal
43
53
  */
44
54
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListConnectionsCommandInput, ListConnectionsCommandOutput>;
55
+ /**
56
+ * @internal
57
+ */
45
58
  private serialize;
59
+ /**
60
+ * @internal
61
+ */
46
62
  private deserialize;
47
63
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient";
5
5
  import { ListEventBusesRequest, ListEventBusesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListEventBusesCommand}.
8
10
  */
9
11
  export interface ListEventBusesCommandInput extends ListEventBusesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListEventBusesCommand}.
13
17
  */
14
18
  export interface ListEventBusesCommandOutput extends ListEventBusesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists all the event buses in your account, including the default event bus, custom event
18
23
  * buses, and partner event buses.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListEventBusesCommandOutput extends ListEventBusesResponse, __M
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListEventBusesCommandInput - {@link ListEventBusesCommandInput}
35
+ * @returns {@link ListEventBusesCommandOutput}
29
36
  * @see {@link ListEventBusesCommandInput} for command's `input` shape.
30
37
  * @see {@link ListEventBusesCommandOutput} for command's `response` shape.
31
38
  * @see {@link CloudWatchEventsClientResolvedConfig | config} for CloudWatchEventsClient's `config` shape.
@@ -38,11 +45,20 @@ export interface ListEventBusesCommandOutput extends ListEventBusesResponse, __M
38
45
  export declare class ListEventBusesCommand extends $Command<ListEventBusesCommandInput, ListEventBusesCommandOutput, CloudWatchEventsClientResolvedConfig> {
39
46
  readonly input: ListEventBusesCommandInput;
40
47
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
48
+ /**
49
+ * @public
50
+ */
41
51
  constructor(input: ListEventBusesCommandInput);
42
52
  /**
43
53
  * @internal
44
54
  */
45
55
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudWatchEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEventBusesCommandInput, ListEventBusesCommandOutput>;
56
+ /**
57
+ * @internal
58
+ */
46
59
  private serialize;
60
+ /**
61
+ * @internal
62
+ */
47
63
  private deserialize;
48
64
  }