@aws-sdk/client-cloudwatch 3.40.0 → 3.45.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/CHANGELOG.md +44 -0
- package/dist-cjs/endpoints.js +17 -0
- package/dist-cjs/models/models_0.js +44 -27
- package/dist-cjs/protocols/Aws_query.js +146 -0
- package/dist-es/endpoints.js +17 -0
- package/dist-es/models/models_0.js +29 -16
- package/dist-es/protocols/Aws_query.js +322 -158
- package/dist-types/CloudWatch.d.ts +19 -5
- package/dist-types/commands/DeleteAlarmsCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAnomalyDetectorCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDashboardsCommand.d.ts +1 -1
- package/dist-types/commands/DeleteInsightRulesCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMetricStreamCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAlarmHistoryCommand.d.ts +4 -1
- package/dist-types/commands/DescribeAlarmsCommand.d.ts +4 -1
- package/dist-types/commands/DescribeAlarmsForMetricCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAnomalyDetectorsCommand.d.ts +8 -4
- package/dist-types/commands/DescribeInsightRulesCommand.d.ts +1 -1
- package/dist-types/commands/DisableAlarmActionsCommand.d.ts +1 -1
- package/dist-types/commands/DisableInsightRulesCommand.d.ts +1 -1
- package/dist-types/commands/EnableAlarmActionsCommand.d.ts +1 -1
- package/dist-types/commands/EnableInsightRulesCommand.d.ts +1 -1
- package/dist-types/commands/GetDashboardCommand.d.ts +1 -1
- package/dist-types/commands/GetInsightRuleReportCommand.d.ts +1 -1
- package/dist-types/commands/GetMetricDataCommand.d.ts +1 -1
- package/dist-types/commands/GetMetricStatisticsCommand.d.ts +1 -1
- package/dist-types/commands/GetMetricStreamCommand.d.ts +1 -1
- package/dist-types/commands/GetMetricWidgetImageCommand.d.ts +1 -1
- package/dist-types/commands/ListDashboardsCommand.d.ts +1 -1
- package/dist-types/commands/ListMetricStreamsCommand.d.ts +1 -1
- package/dist-types/commands/ListMetricsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutAnomalyDetectorCommand.d.ts +1 -1
- package/dist-types/commands/PutCompositeAlarmCommand.d.ts +5 -1
- package/dist-types/commands/PutDashboardCommand.d.ts +1 -1
- package/dist-types/commands/PutInsightRuleCommand.d.ts +1 -1
- package/dist-types/commands/PutMetricAlarmCommand.d.ts +2 -2
- package/dist-types/commands/PutMetricDataCommand.d.ts +1 -1
- package/dist-types/commands/PutMetricStreamCommand.d.ts +2 -2
- package/dist-types/commands/SetAlarmStateCommand.d.ts +1 -1
- package/dist-types/commands/StartMetricStreamsCommand.d.ts +1 -1
- package/dist-types/commands/StopMetricStreamsCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +432 -189
- package/dist-types/ts3.4/models/models_0.d.ts +109 -67
- package/package.json +6 -6
|
@@ -108,6 +108,9 @@ export declare class CloudWatch extends CloudWatchClient {
|
|
|
108
108
|
* <p>Retrieves the history for the specified alarm. You can filter the results by date range or item type.
|
|
109
109
|
* If an alarm name is not specified, the histories for either all metric alarms or all composite alarms are returned.</p>
|
|
110
110
|
* <p>CloudWatch retains the history of an alarm even if you delete the alarm.</p>
|
|
111
|
+
* <p>To use this operation and return information about a composite alarm, you must be signed on with
|
|
112
|
+
* the <code>cloudwatch:DescribeAlarmHistory</code> permission that is scoped to <code>*</code>. You can't return information
|
|
113
|
+
* about composite alarms if your <code>cloudwatch:DescribeAlarmHistory</code> permission has a narrower scope.</p>
|
|
111
114
|
*/
|
|
112
115
|
describeAlarmHistory(args: DescribeAlarmHistoryCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAlarmHistoryCommandOutput>;
|
|
113
116
|
describeAlarmHistory(args: DescribeAlarmHistoryCommandInput, cb: (err: any, data?: DescribeAlarmHistoryCommandOutput) => void): void;
|
|
@@ -115,6 +118,9 @@ export declare class CloudWatch extends CloudWatchClient {
|
|
|
115
118
|
/**
|
|
116
119
|
* <p>Retrieves the specified alarms. You can filter the results by specifying a prefix for the alarm
|
|
117
120
|
* name, the alarm state, or a prefix for any action.</p>
|
|
121
|
+
* <p>To use this operation and return information about composite alarms, you must be signed on with
|
|
122
|
+
* the <code>cloudwatch:DescribeAlarms</code> permission that is scoped to <code>*</code>. You can't return information
|
|
123
|
+
* about composite alarms if your <code>cloudwatch:DescribeAlarms</code> permission has a narrower scope.</p>
|
|
118
124
|
*/
|
|
119
125
|
describeAlarms(args: DescribeAlarmsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAlarmsCommandOutput>;
|
|
120
126
|
describeAlarms(args: DescribeAlarmsCommandInput, cb: (err: any, data?: DescribeAlarmsCommandOutput) => void): void;
|
|
@@ -130,9 +136,13 @@ export declare class CloudWatch extends CloudWatchClient {
|
|
|
130
136
|
describeAlarmsForMetric(args: DescribeAlarmsForMetricCommandInput, cb: (err: any, data?: DescribeAlarmsForMetricCommandOutput) => void): void;
|
|
131
137
|
describeAlarmsForMetric(args: DescribeAlarmsForMetricCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAlarmsForMetricCommandOutput) => void): void;
|
|
132
138
|
/**
|
|
133
|
-
* <p>Lists the anomaly detection models that you have created in your account.
|
|
134
|
-
*
|
|
135
|
-
*
|
|
139
|
+
* <p>Lists the anomaly detection models that you have created in your account.
|
|
140
|
+
* For single metric anomaly detectors,
|
|
141
|
+
* you can list all of the models in your account or filter the results
|
|
142
|
+
* to only the models that are related to a certain namespace, metric name, or metric dimension.
|
|
143
|
+
* For metric math anomaly detectors,
|
|
144
|
+
* you can list them by adding <code>METRIC_MATH</code> to the <code>AnomalyDetectorTypes</code> array.
|
|
145
|
+
* This will return all metric math anomaly detectors in your account.</p>
|
|
136
146
|
*/
|
|
137
147
|
describeAnomalyDetectors(args: DescribeAnomalyDetectorsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAnomalyDetectorsCommandOutput>;
|
|
138
148
|
describeAnomalyDetectors(args: DescribeAnomalyDetectorsCommandInput, cb: (err: any, data?: DescribeAnomalyDetectorsCommandOutput) => void): void;
|
|
@@ -439,6 +449,10 @@ export declare class CloudWatch extends CloudWatchClient {
|
|
|
439
449
|
* <p>When you update an existing alarm, its state is left unchanged, but the update
|
|
440
450
|
* completely overwrites the previous configuration of the alarm.</p>
|
|
441
451
|
*
|
|
452
|
+
* <p>To use this operation, you must be signed on with
|
|
453
|
+
* the <code>cloudwatch:PutCompositeAlarm</code> permission that is scoped to <code>*</code>. You can't create a
|
|
454
|
+
* composite alarms if your <code>cloudwatch:PutCompositeAlarm</code> permission has a narrower scope.</p>
|
|
455
|
+
*
|
|
442
456
|
* <p>If you are an IAM user, you must have <code>iam:CreateServiceLinkedRole</code> to create
|
|
443
457
|
* a composite alarm that has Systems Manager OpsItem actions.</p>
|
|
444
458
|
*/
|
|
@@ -506,7 +520,7 @@ export declare class CloudWatch extends CloudWatchClient {
|
|
|
506
520
|
*
|
|
507
521
|
*
|
|
508
522
|
* <p>The first time you create an alarm in the
|
|
509
|
-
* Management Console, the CLI, or by using the PutMetricAlarm API, CloudWatch
|
|
523
|
+
* Amazon Web Services Management Console, the CLI, or by using the PutMetricAlarm API, CloudWatch
|
|
510
524
|
* creates the necessary service-linked role for you. The service-linked roles
|
|
511
525
|
* are called <code>AWSServiceRoleForCloudWatchEvents</code> and
|
|
512
526
|
* <code>AWSServiceRoleForCloudWatchAlarms_ActionSSM</code>.
|
|
@@ -597,7 +611,7 @@ export declare class CloudWatch extends CloudWatchClient {
|
|
|
597
611
|
* <p>Creates or updates a metric stream. Metric streams can automatically stream CloudWatch metrics
|
|
598
612
|
* to Amazon Web Services destinations including
|
|
599
613
|
* Amazon S3 and to many third-party solutions.</p>
|
|
600
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Metric-Streams.html">
|
|
614
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Metric-Streams.html">
|
|
601
615
|
* Using Metric Streams</a>.</p>
|
|
602
616
|
* <p>To create a metric stream,
|
|
603
617
|
* you must be logged on to an account that has the <code>iam:PassRole</code> permission
|
|
@@ -35,7 +35,7 @@ export interface DeleteAlarmsCommandOutput extends __MetadataBearer {
|
|
|
35
35
|
*
|
|
36
36
|
* @see {@link DeleteAlarmsCommandInput} for command's `input` shape.
|
|
37
37
|
* @see {@link DeleteAlarmsCommandOutput} for command's `response` shape.
|
|
38
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
38
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
39
39
|
*
|
|
40
40
|
*/
|
|
41
41
|
export declare class DeleteAlarmsCommand extends $Command<DeleteAlarmsCommandInput, DeleteAlarmsCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DeleteAnomalyDetectorCommandOutput extends DeleteAnomalyDetecto
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteAnomalyDetectorCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteAnomalyDetectorCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteAnomalyDetectorCommand extends $Command<DeleteAnomalyDetectorCommandInput, DeleteAnomalyDetectorCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -22,7 +22,7 @@ export interface DeleteDashboardsCommandOutput extends DeleteDashboardsOutput, _
|
|
|
22
22
|
*
|
|
23
23
|
* @see {@link DeleteDashboardsCommandInput} for command's `input` shape.
|
|
24
24
|
* @see {@link DeleteDashboardsCommandOutput} for command's `response` shape.
|
|
25
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
25
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
28
28
|
export declare class DeleteDashboardsCommand extends $Command<DeleteDashboardsCommandInput, DeleteDashboardsCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -23,7 +23,7 @@ export interface DeleteInsightRulesCommandOutput extends DeleteInsightRulesOutpu
|
|
|
23
23
|
*
|
|
24
24
|
* @see {@link DeleteInsightRulesCommandInput} for command's `input` shape.
|
|
25
25
|
* @see {@link DeleteInsightRulesCommandOutput} for command's `response` shape.
|
|
26
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
26
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
27
27
|
*
|
|
28
28
|
*/
|
|
29
29
|
export declare class DeleteInsightRulesCommand extends $Command<DeleteInsightRulesCommandInput, DeleteInsightRulesCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DeleteMetricStreamCommandOutput extends DeleteMetricStreamOutpu
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteMetricStreamCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteMetricStreamCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteMetricStreamCommand extends $Command<DeleteMetricStreamCommandInput, DeleteMetricStreamCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -10,6 +10,9 @@ export interface DescribeAlarmHistoryCommandOutput extends DescribeAlarmHistoryO
|
|
|
10
10
|
* <p>Retrieves the history for the specified alarm. You can filter the results by date range or item type.
|
|
11
11
|
* If an alarm name is not specified, the histories for either all metric alarms or all composite alarms are returned.</p>
|
|
12
12
|
* <p>CloudWatch retains the history of an alarm even if you delete the alarm.</p>
|
|
13
|
+
* <p>To use this operation and return information about a composite alarm, you must be signed on with
|
|
14
|
+
* the <code>cloudwatch:DescribeAlarmHistory</code> permission that is scoped to <code>*</code>. You can't return information
|
|
15
|
+
* about composite alarms if your <code>cloudwatch:DescribeAlarmHistory</code> permission has a narrower scope.</p>
|
|
13
16
|
* @example
|
|
14
17
|
* Use a bare-bones client and the command you need to make an API call.
|
|
15
18
|
* ```javascript
|
|
@@ -22,7 +25,7 @@ export interface DescribeAlarmHistoryCommandOutput extends DescribeAlarmHistoryO
|
|
|
22
25
|
*
|
|
23
26
|
* @see {@link DescribeAlarmHistoryCommandInput} for command's `input` shape.
|
|
24
27
|
* @see {@link DescribeAlarmHistoryCommandOutput} for command's `response` shape.
|
|
25
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
28
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
26
29
|
*
|
|
27
30
|
*/
|
|
28
31
|
export declare class DescribeAlarmHistoryCommand extends $Command<DescribeAlarmHistoryCommandInput, DescribeAlarmHistoryCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -9,6 +9,9 @@ export interface DescribeAlarmsCommandOutput extends DescribeAlarmsOutput, __Met
|
|
|
9
9
|
/**
|
|
10
10
|
* <p>Retrieves the specified alarms. You can filter the results by specifying a prefix for the alarm
|
|
11
11
|
* name, the alarm state, or a prefix for any action.</p>
|
|
12
|
+
* <p>To use this operation and return information about composite alarms, you must be signed on with
|
|
13
|
+
* the <code>cloudwatch:DescribeAlarms</code> permission that is scoped to <code>*</code>. You can't return information
|
|
14
|
+
* about composite alarms if your <code>cloudwatch:DescribeAlarms</code> permission has a narrower scope.</p>
|
|
12
15
|
* @example
|
|
13
16
|
* Use a bare-bones client and the command you need to make an API call.
|
|
14
17
|
* ```javascript
|
|
@@ -21,7 +24,7 @@ export interface DescribeAlarmsCommandOutput extends DescribeAlarmsOutput, __Met
|
|
|
21
24
|
*
|
|
22
25
|
* @see {@link DescribeAlarmsCommandInput} for command's `input` shape.
|
|
23
26
|
* @see {@link DescribeAlarmsCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
27
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
25
28
|
*
|
|
26
29
|
*/
|
|
27
30
|
export declare class DescribeAlarmsCommand extends $Command<DescribeAlarmsCommandInput, DescribeAlarmsCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -24,7 +24,7 @@ export interface DescribeAlarmsForMetricCommandOutput extends DescribeAlarmsForM
|
|
|
24
24
|
*
|
|
25
25
|
* @see {@link DescribeAlarmsForMetricCommandInput} for command's `input` shape.
|
|
26
26
|
* @see {@link DescribeAlarmsForMetricCommandOutput} for command's `response` shape.
|
|
27
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
27
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
28
28
|
*
|
|
29
29
|
*/
|
|
30
30
|
export declare class DescribeAlarmsForMetricCommand extends $Command<DescribeAlarmsForMetricCommandInput, DescribeAlarmsForMetricCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -7,9 +7,13 @@ export interface DescribeAnomalyDetectorsCommandInput extends DescribeAnomalyDet
|
|
|
7
7
|
export interface DescribeAnomalyDetectorsCommandOutput extends DescribeAnomalyDetectorsOutput, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Lists the anomaly detection models that you have created in your account.
|
|
11
|
-
*
|
|
12
|
-
*
|
|
10
|
+
* <p>Lists the anomaly detection models that you have created in your account.
|
|
11
|
+
* For single metric anomaly detectors,
|
|
12
|
+
* you can list all of the models in your account or filter the results
|
|
13
|
+
* to only the models that are related to a certain namespace, metric name, or metric dimension.
|
|
14
|
+
* For metric math anomaly detectors,
|
|
15
|
+
* you can list them by adding <code>METRIC_MATH</code> to the <code>AnomalyDetectorTypes</code> array.
|
|
16
|
+
* This will return all metric math anomaly detectors in your account.</p>
|
|
13
17
|
* @example
|
|
14
18
|
* Use a bare-bones client and the command you need to make an API call.
|
|
15
19
|
* ```javascript
|
|
@@ -22,7 +26,7 @@ export interface DescribeAnomalyDetectorsCommandOutput extends DescribeAnomalyDe
|
|
|
22
26
|
*
|
|
23
27
|
* @see {@link DescribeAnomalyDetectorsCommandInput} for command's `input` shape.
|
|
24
28
|
* @see {@link DescribeAnomalyDetectorsCommandOutput} for command's `response` shape.
|
|
25
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
29
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
26
30
|
*
|
|
27
31
|
*/
|
|
28
32
|
export declare class DescribeAnomalyDetectorsCommand extends $Command<DescribeAnomalyDetectorsCommandInput, DescribeAnomalyDetectorsCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -23,7 +23,7 @@ export interface DescribeInsightRulesCommandOutput extends DescribeInsightRulesO
|
|
|
23
23
|
*
|
|
24
24
|
* @see {@link DescribeInsightRulesCommandInput} for command's `input` shape.
|
|
25
25
|
* @see {@link DescribeInsightRulesCommandOutput} for command's `response` shape.
|
|
26
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
26
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
27
27
|
*
|
|
28
28
|
*/
|
|
29
29
|
export declare class DescribeInsightRulesCommand extends $Command<DescribeInsightRulesCommandInput, DescribeInsightRulesCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -21,7 +21,7 @@ export interface DisableAlarmActionsCommandOutput extends __MetadataBearer {
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link DisableAlarmActionsCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link DisableAlarmActionsCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class DisableAlarmActionsCommand extends $Command<DisableAlarmActionsCommandInput, DisableAlarmActionsCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -21,7 +21,7 @@ export interface DisableInsightRulesCommandOutput extends DisableInsightRulesOut
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link DisableInsightRulesCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link DisableInsightRulesCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class DisableInsightRulesCommand extends $Command<DisableInsightRulesCommandInput, DisableInsightRulesCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface EnableAlarmActionsCommandOutput extends __MetadataBearer {
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link EnableAlarmActionsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link EnableAlarmActionsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class EnableAlarmActionsCommand extends $Command<EnableAlarmActionsCommandInput, EnableAlarmActionsCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface EnableInsightRulesCommandOutput extends EnableInsightRulesOutpu
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link EnableInsightRulesCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link EnableInsightRulesCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class EnableInsightRulesCommand extends $Command<EnableInsightRulesCommandInput, EnableInsightRulesCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -23,7 +23,7 @@ export interface GetDashboardCommandOutput extends GetDashboardOutput, __Metadat
|
|
|
23
23
|
*
|
|
24
24
|
* @see {@link GetDashboardCommandInput} for command's `input` shape.
|
|
25
25
|
* @see {@link GetDashboardCommandOutput} for command's `response` shape.
|
|
26
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
26
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
27
27
|
*
|
|
28
28
|
*/
|
|
29
29
|
export declare class GetDashboardCommand extends $Command<GetDashboardCommandInput, GetDashboardCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -56,7 +56,7 @@ export interface GetInsightRuleReportCommandOutput extends GetInsightRuleReportO
|
|
|
56
56
|
*
|
|
57
57
|
* @see {@link GetInsightRuleReportCommandInput} for command's `input` shape.
|
|
58
58
|
* @see {@link GetInsightRuleReportCommandOutput} for command's `response` shape.
|
|
59
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
59
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
60
60
|
*
|
|
61
61
|
*/
|
|
62
62
|
export declare class GetInsightRuleReportCommand extends $Command<GetInsightRuleReportCommandInput, GetInsightRuleReportCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -55,7 +55,7 @@ export interface GetMetricDataCommandOutput extends GetMetricDataOutput, __Metad
|
|
|
55
55
|
*
|
|
56
56
|
* @see {@link GetMetricDataCommandInput} for command's `input` shape.
|
|
57
57
|
* @see {@link GetMetricDataCommandOutput} for command's `response` shape.
|
|
58
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
58
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
59
59
|
*
|
|
60
60
|
*/
|
|
61
61
|
export declare class GetMetricDataCommand extends $Command<GetMetricDataCommandInput, GetMetricDataCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -71,7 +71,7 @@ export interface GetMetricStatisticsCommandOutput extends GetMetricStatisticsOut
|
|
|
71
71
|
*
|
|
72
72
|
* @see {@link GetMetricStatisticsCommandInput} for command's `input` shape.
|
|
73
73
|
* @see {@link GetMetricStatisticsCommandOutput} for command's `response` shape.
|
|
74
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
74
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
75
75
|
*
|
|
76
76
|
*/
|
|
77
77
|
export declare class GetMetricStatisticsCommand extends $Command<GetMetricStatisticsCommandInput, GetMetricStatisticsCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface GetMetricStreamCommandOutput extends GetMetricStreamOutput, __M
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GetMetricStreamCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GetMetricStreamCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GetMetricStreamCommand extends $Command<GetMetricStreamCommandInput, GetMetricStreamCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -37,7 +37,7 @@ export interface GetMetricWidgetImageCommandOutput extends GetMetricWidgetImageO
|
|
|
37
37
|
*
|
|
38
38
|
* @see {@link GetMetricWidgetImageCommandInput} for command's `input` shape.
|
|
39
39
|
* @see {@link GetMetricWidgetImageCommandOutput} for command's `response` shape.
|
|
40
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
40
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
41
41
|
*
|
|
42
42
|
*/
|
|
43
43
|
export declare class GetMetricWidgetImageCommand extends $Command<GetMetricWidgetImageCommandInput, GetMetricWidgetImageCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -28,7 +28,7 @@ export interface ListDashboardsCommandOutput extends ListDashboardsOutput, __Met
|
|
|
28
28
|
*
|
|
29
29
|
* @see {@link ListDashboardsCommandInput} for command's `input` shape.
|
|
30
30
|
* @see {@link ListDashboardsCommandOutput} for command's `response` shape.
|
|
31
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
31
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
32
32
|
*
|
|
33
33
|
*/
|
|
34
34
|
export declare class ListDashboardsCommand extends $Command<ListDashboardsCommandInput, ListDashboardsCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListMetricStreamsCommandOutput extends ListMetricStreamsOutput,
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListMetricStreamsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListMetricStreamsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListMetricStreamsCommand extends $Command<ListMetricStreamsCommandInput, ListMetricStreamsCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -33,7 +33,7 @@ export interface ListMetricsCommandOutput extends ListMetricsOutput, __MetadataB
|
|
|
33
33
|
*
|
|
34
34
|
* @see {@link ListMetricsCommandInput} for command's `input` shape.
|
|
35
35
|
* @see {@link ListMetricsCommandOutput} for command's `response` shape.
|
|
36
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
36
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
37
37
|
*
|
|
38
38
|
*/
|
|
39
39
|
export declare class ListMetricsCommand extends $Command<ListMetricsCommandInput, ListMetricsCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -21,7 +21,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -22,7 +22,7 @@ export interface PutAnomalyDetectorCommandOutput extends PutAnomalyDetectorOutpu
|
|
|
22
22
|
*
|
|
23
23
|
* @see {@link PutAnomalyDetectorCommandInput} for command's `input` shape.
|
|
24
24
|
* @see {@link PutAnomalyDetectorCommandOutput} for command's `response` shape.
|
|
25
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
25
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
28
28
|
export declare class PutAnomalyDetectorCommand extends $Command<PutAnomalyDetectorCommandInput, PutAnomalyDetectorCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -41,6 +41,10 @@ export interface PutCompositeAlarmCommandOutput extends __MetadataBearer {
|
|
|
41
41
|
* <p>When you update an existing alarm, its state is left unchanged, but the update
|
|
42
42
|
* completely overwrites the previous configuration of the alarm.</p>
|
|
43
43
|
*
|
|
44
|
+
* <p>To use this operation, you must be signed on with
|
|
45
|
+
* the <code>cloudwatch:PutCompositeAlarm</code> permission that is scoped to <code>*</code>. You can't create a
|
|
46
|
+
* composite alarms if your <code>cloudwatch:PutCompositeAlarm</code> permission has a narrower scope.</p>
|
|
47
|
+
*
|
|
44
48
|
* <p>If you are an IAM user, you must have <code>iam:CreateServiceLinkedRole</code> to create
|
|
45
49
|
* a composite alarm that has Systems Manager OpsItem actions.</p>
|
|
46
50
|
* @example
|
|
@@ -55,7 +59,7 @@ export interface PutCompositeAlarmCommandOutput extends __MetadataBearer {
|
|
|
55
59
|
*
|
|
56
60
|
* @see {@link PutCompositeAlarmCommandInput} for command's `input` shape.
|
|
57
61
|
* @see {@link PutCompositeAlarmCommandOutput} for command's `response` shape.
|
|
58
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
62
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
59
63
|
*
|
|
60
64
|
*/
|
|
61
65
|
export declare class PutCompositeAlarmCommand extends $Command<PutCompositeAlarmCommandInput, PutCompositeAlarmCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -33,7 +33,7 @@ export interface PutDashboardCommandOutput extends PutDashboardOutput, __Metadat
|
|
|
33
33
|
*
|
|
34
34
|
* @see {@link PutDashboardCommandInput} for command's `input` shape.
|
|
35
35
|
* @see {@link PutDashboardCommandOutput} for command's `response` shape.
|
|
36
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
36
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
37
37
|
*
|
|
38
38
|
*/
|
|
39
39
|
export declare class PutDashboardCommand extends $Command<PutDashboardCommandInput, PutDashboardCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -24,7 +24,7 @@ export interface PutInsightRuleCommandOutput extends PutInsightRuleOutput, __Met
|
|
|
24
24
|
*
|
|
25
25
|
* @see {@link PutInsightRuleCommandInput} for command's `input` shape.
|
|
26
26
|
* @see {@link PutInsightRuleCommandOutput} for command's `response` shape.
|
|
27
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
27
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
28
28
|
*
|
|
29
29
|
*/
|
|
30
30
|
export declare class PutInsightRuleCommand extends $Command<PutInsightRuleCommandInput, PutInsightRuleCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -38,7 +38,7 @@ export interface PutMetricAlarmCommandOutput extends __MetadataBearer {
|
|
|
38
38
|
*
|
|
39
39
|
*
|
|
40
40
|
* <p>The first time you create an alarm in the
|
|
41
|
-
* Management Console, the CLI, or by using the PutMetricAlarm API, CloudWatch
|
|
41
|
+
* Amazon Web Services Management Console, the CLI, or by using the PutMetricAlarm API, CloudWatch
|
|
42
42
|
* creates the necessary service-linked role for you. The service-linked roles
|
|
43
43
|
* are called <code>AWSServiceRoleForCloudWatchEvents</code> and
|
|
44
44
|
* <code>AWSServiceRoleForCloudWatchAlarms_ActionSSM</code>.
|
|
@@ -83,7 +83,7 @@ export interface PutMetricAlarmCommandOutput extends __MetadataBearer {
|
|
|
83
83
|
*
|
|
84
84
|
* @see {@link PutMetricAlarmCommandInput} for command's `input` shape.
|
|
85
85
|
* @see {@link PutMetricAlarmCommandOutput} for command's `response` shape.
|
|
86
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
86
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
87
87
|
*
|
|
88
88
|
*/
|
|
89
89
|
export declare class PutMetricAlarmCommand extends $Command<PutMetricAlarmCommandInput, PutMetricAlarmCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -64,7 +64,7 @@ export interface PutMetricDataCommandOutput extends __MetadataBearer {
|
|
|
64
64
|
*
|
|
65
65
|
* @see {@link PutMetricDataCommandInput} for command's `input` shape.
|
|
66
66
|
* @see {@link PutMetricDataCommandOutput} for command's `response` shape.
|
|
67
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
67
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
68
68
|
*
|
|
69
69
|
*/
|
|
70
70
|
export declare class PutMetricDataCommand extends $Command<PutMetricDataCommandInput, PutMetricDataCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -10,7 +10,7 @@ export interface PutMetricStreamCommandOutput extends PutMetricStreamOutput, __M
|
|
|
10
10
|
* <p>Creates or updates a metric stream. Metric streams can automatically stream CloudWatch metrics
|
|
11
11
|
* to Amazon Web Services destinations including
|
|
12
12
|
* Amazon S3 and to many third-party solutions.</p>
|
|
13
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Metric-Streams.html">
|
|
13
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Metric-Streams.html">
|
|
14
14
|
* Using Metric Streams</a>.</p>
|
|
15
15
|
* <p>To create a metric stream,
|
|
16
16
|
* you must be logged on to an account that has the <code>iam:PassRole</code> permission
|
|
@@ -47,7 +47,7 @@ export interface PutMetricStreamCommandOutput extends PutMetricStreamOutput, __M
|
|
|
47
47
|
*
|
|
48
48
|
* @see {@link PutMetricStreamCommandInput} for command's `input` shape.
|
|
49
49
|
* @see {@link PutMetricStreamCommandOutput} for command's `response` shape.
|
|
50
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
50
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
51
51
|
*
|
|
52
52
|
*/
|
|
53
53
|
export declare class PutMetricStreamCommand extends $Command<PutMetricStreamCommandInput, PutMetricStreamCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -35,7 +35,7 @@ export interface SetAlarmStateCommandOutput extends __MetadataBearer {
|
|
|
35
35
|
*
|
|
36
36
|
* @see {@link SetAlarmStateCommandInput} for command's `input` shape.
|
|
37
37
|
* @see {@link SetAlarmStateCommandOutput} for command's `response` shape.
|
|
38
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
38
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
39
39
|
*
|
|
40
40
|
*/
|
|
41
41
|
export declare class SetAlarmStateCommand extends $Command<SetAlarmStateCommandInput, SetAlarmStateCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface StartMetricStreamsCommandOutput extends StartMetricStreamsOutpu
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link StartMetricStreamsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link StartMetricStreamsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class StartMetricStreamsCommand extends $Command<StartMetricStreamsCommandInput, StartMetricStreamsCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface StopMetricStreamsCommandOutput extends StopMetricStreamsOutput,
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link StopMetricStreamsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link StopMetricStreamsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class StopMetricStreamsCommand extends $Command<StopMetricStreamsCommandInput, StopMetricStreamsCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -30,7 +30,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
30
30
|
*
|
|
31
31
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
32
32
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
33
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
33
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
34
34
|
*
|
|
35
35
|
*/
|
|
36
36
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CloudWatchClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CloudWatchClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CloudWatchClientResolvedConfig> {
|