@aws-sdk/client-cloudwatch 3.289.0 → 3.290.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 (39) hide show
  1. package/dist-types/commands/DeleteAlarmsCommand.d.ts +4 -0
  2. package/dist-types/commands/DeleteAnomalyDetectorCommand.d.ts +16 -0
  3. package/dist-types/commands/DeleteDashboardsCommand.d.ts +10 -0
  4. package/dist-types/commands/DeleteInsightRulesCommand.d.ts +7 -0
  5. package/dist-types/commands/DeleteMetricStreamCommand.d.ts +10 -0
  6. package/dist-types/commands/DescribeAlarmHistoryCommand.d.ts +4 -0
  7. package/dist-types/commands/DescribeAlarmsCommand.d.ts +4 -0
  8. package/dist-types/commands/DescribeAlarmsForMetricCommand.d.ts +1 -0
  9. package/dist-types/commands/DescribeAnomalyDetectorsCommand.d.ts +13 -0
  10. package/dist-types/commands/DescribeInsightRulesCommand.d.ts +4 -0
  11. package/dist-types/commands/DisableAlarmActionsCommand.d.ts +1 -0
  12. package/dist-types/commands/DisableInsightRulesCommand.d.ts +7 -0
  13. package/dist-types/commands/EnableAlarmActionsCommand.d.ts +1 -0
  14. package/dist-types/commands/EnableInsightRulesCommand.d.ts +10 -0
  15. package/dist-types/commands/GetDashboardCommand.d.ts +10 -0
  16. package/dist-types/commands/GetInsightRuleReportCommand.d.ts +10 -0
  17. package/dist-types/commands/GetMetricDataCommand.d.ts +4 -0
  18. package/dist-types/commands/GetMetricStatisticsCommand.d.ts +13 -0
  19. package/dist-types/commands/GetMetricStreamCommand.d.ts +16 -0
  20. package/dist-types/commands/GetMetricWidgetImageCommand.d.ts +1 -0
  21. package/dist-types/commands/ListDashboardsCommand.d.ts +7 -0
  22. package/dist-types/commands/ListManagedInsightRulesCommand.d.ts +10 -0
  23. package/dist-types/commands/ListMetricStreamsCommand.d.ts +13 -0
  24. package/dist-types/commands/ListMetricsCommand.d.ts +7 -0
  25. package/dist-types/commands/ListTagsForResourceCommand.d.ts +10 -0
  26. package/dist-types/commands/PutAnomalyDetectorCommand.d.ts +16 -0
  27. package/dist-types/commands/PutCompositeAlarmCommand.d.ts +4 -0
  28. package/dist-types/commands/PutDashboardCommand.d.ts +7 -0
  29. package/dist-types/commands/PutInsightRuleCommand.d.ts +10 -0
  30. package/dist-types/commands/PutManagedInsightRulesCommand.d.ts +7 -0
  31. package/dist-types/commands/PutMetricAlarmCommand.d.ts +4 -0
  32. package/dist-types/commands/PutMetricDataCommand.d.ts +13 -0
  33. package/dist-types/commands/PutMetricStreamCommand.d.ts +16 -0
  34. package/dist-types/commands/SetAlarmStateCommand.d.ts +7 -0
  35. package/dist-types/commands/StartMetricStreamsCommand.d.ts +10 -0
  36. package/dist-types/commands/StopMetricStreamsCommand.d.ts +10 -0
  37. package/dist-types/commands/TagResourceCommand.d.ts +13 -0
  38. package/dist-types/commands/UntagResourceCommand.d.ts +13 -0
  39. package/package.json +30 -30
@@ -44,6 +44,10 @@ export interface DeleteAlarmsCommandOutput extends __MetadataBearer {
44
44
  * @see {@link DeleteAlarmsCommandOutput} for command's `response` shape.
45
45
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
46
46
  *
47
+ * @throws {@link ResourceNotFound} (client fault)
48
+ * <p>The named resource does not exist.</p>
49
+ *
50
+ *
47
51
  */
48
52
  export declare class DeleteAlarmsCommand extends $Command<DeleteAlarmsCommandInput, DeleteAlarmsCommandOutput, CloudWatchClientResolvedConfig> {
49
53
  readonly input: DeleteAlarmsCommandInput;
@@ -37,6 +37,22 @@ export interface DeleteAnomalyDetectorCommandOutput extends DeleteAnomalyDetecto
37
37
  * @see {@link DeleteAnomalyDetectorCommandOutput} for command's `response` shape.
38
38
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
39
39
  *
40
+ * @throws {@link InternalServiceFault} (server fault)
41
+ * <p>Request processing has failed due to some unknown error, exception, or failure.</p>
42
+ *
43
+ * @throws {@link InvalidParameterCombinationException} (client fault)
44
+ * <p>Parameters were used together that cannot be used together.</p>
45
+ *
46
+ * @throws {@link InvalidParameterValueException} (client fault)
47
+ * <p>The value of an input parameter is bad or out-of-range.</p>
48
+ *
49
+ * @throws {@link MissingRequiredParameterException} (client fault)
50
+ * <p>An input parameter that is required is missing.</p>
51
+ *
52
+ * @throws {@link ResourceNotFoundException} (client fault)
53
+ * <p>The named resource does not exist.</p>
54
+ *
55
+ *
40
56
  */
41
57
  export declare class DeleteAnomalyDetectorCommand extends $Command<DeleteAnomalyDetectorCommandInput, DeleteAnomalyDetectorCommandOutput, CloudWatchClientResolvedConfig> {
42
58
  readonly input: DeleteAnomalyDetectorCommandInput;
@@ -31,6 +31,16 @@ export interface DeleteDashboardsCommandOutput extends DeleteDashboardsOutput, _
31
31
  * @see {@link DeleteDashboardsCommandOutput} for command's `response` shape.
32
32
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
33
33
  *
34
+ * @throws {@link DashboardNotFoundError} (client fault)
35
+ * <p>The specified dashboard does not exist.</p>
36
+ *
37
+ * @throws {@link InternalServiceFault} (server fault)
38
+ * <p>Request processing has failed due to some unknown error, exception, or failure.</p>
39
+ *
40
+ * @throws {@link InvalidParameterValueException} (client fault)
41
+ * <p>The value of an input parameter is bad or out-of-range.</p>
42
+ *
43
+ *
34
44
  */
35
45
  export declare class DeleteDashboardsCommand extends $Command<DeleteDashboardsCommandInput, DeleteDashboardsCommandOutput, CloudWatchClientResolvedConfig> {
36
46
  readonly input: DeleteDashboardsCommandInput;
@@ -32,6 +32,13 @@ export interface DeleteInsightRulesCommandOutput extends DeleteInsightRulesOutpu
32
32
  * @see {@link DeleteInsightRulesCommandOutput} for command's `response` shape.
33
33
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
34
34
  *
35
+ * @throws {@link InvalidParameterValueException} (client fault)
36
+ * <p>The value of an input parameter is bad or out-of-range.</p>
37
+ *
38
+ * @throws {@link MissingRequiredParameterException} (client fault)
39
+ * <p>An input parameter that is required is missing.</p>
40
+ *
41
+ *
35
42
  */
36
43
  export declare class DeleteInsightRulesCommand extends $Command<DeleteInsightRulesCommandInput, DeleteInsightRulesCommandOutput, CloudWatchClientResolvedConfig> {
37
44
  readonly input: DeleteInsightRulesCommandInput;
@@ -29,6 +29,16 @@ export interface DeleteMetricStreamCommandOutput extends DeleteMetricStreamOutpu
29
29
  * @see {@link DeleteMetricStreamCommandOutput} for command's `response` shape.
30
30
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServiceFault} (server fault)
33
+ * <p>Request processing has failed due to some unknown error, exception, or failure.</p>
34
+ *
35
+ * @throws {@link InvalidParameterValueException} (client fault)
36
+ * <p>The value of an input parameter is bad or out-of-range.</p>
37
+ *
38
+ * @throws {@link MissingRequiredParameterException} (client fault)
39
+ * <p>An input parameter that is required is missing.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class DeleteMetricStreamCommand extends $Command<DeleteMetricStreamCommandInput, DeleteMetricStreamCommandOutput, CloudWatchClientResolvedConfig> {
34
44
  readonly input: DeleteMetricStreamCommandInput;
@@ -34,6 +34,10 @@ export interface DescribeAlarmHistoryCommandOutput extends DescribeAlarmHistoryO
34
34
  * @see {@link DescribeAlarmHistoryCommandOutput} for command's `response` shape.
35
35
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
36
36
  *
37
+ * @throws {@link InvalidNextToken} (client fault)
38
+ * <p>The next token specified is invalid.</p>
39
+ *
40
+ *
37
41
  */
38
42
  export declare class DescribeAlarmHistoryCommand extends $Command<DescribeAlarmHistoryCommandInput, DescribeAlarmHistoryCommandOutput, CloudWatchClientResolvedConfig> {
39
43
  readonly input: DescribeAlarmHistoryCommandInput;
@@ -33,6 +33,10 @@ export interface DescribeAlarmsCommandOutput extends DescribeAlarmsOutput, __Met
33
33
  * @see {@link DescribeAlarmsCommandOutput} for command's `response` shape.
34
34
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
35
35
  *
36
+ * @throws {@link InvalidNextToken} (client fault)
37
+ * <p>The next token specified is invalid.</p>
38
+ *
39
+ *
36
40
  */
37
41
  export declare class DescribeAlarmsCommand extends $Command<DescribeAlarmsCommandInput, DescribeAlarmsCommandOutput, CloudWatchClientResolvedConfig> {
38
42
  readonly input: DescribeAlarmsCommandInput;
@@ -33,6 +33,7 @@ export interface DescribeAlarmsForMetricCommandOutput extends DescribeAlarmsForM
33
33
  * @see {@link DescribeAlarmsForMetricCommandOutput} for command's `response` shape.
34
34
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
35
35
  *
36
+ *
36
37
  */
37
38
  export declare class DescribeAlarmsForMetricCommand extends $Command<DescribeAlarmsForMetricCommandInput, DescribeAlarmsForMetricCommandOutput, CloudWatchClientResolvedConfig> {
38
39
  readonly input: DescribeAlarmsForMetricCommandInput;
@@ -35,6 +35,19 @@ export interface DescribeAnomalyDetectorsCommandOutput extends DescribeAnomalyDe
35
35
  * @see {@link DescribeAnomalyDetectorsCommandOutput} for command's `response` shape.
36
36
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
37
37
  *
38
+ * @throws {@link InternalServiceFault} (server fault)
39
+ * <p>Request processing has failed due to some unknown error, exception, or failure.</p>
40
+ *
41
+ * @throws {@link InvalidNextToken} (client fault)
42
+ * <p>The next token specified is invalid.</p>
43
+ *
44
+ * @throws {@link InvalidParameterCombinationException} (client fault)
45
+ * <p>Parameters were used together that cannot be used together.</p>
46
+ *
47
+ * @throws {@link InvalidParameterValueException} (client fault)
48
+ * <p>The value of an input parameter is bad or out-of-range.</p>
49
+ *
50
+ *
38
51
  */
39
52
  export declare class DescribeAnomalyDetectorsCommand extends $Command<DescribeAnomalyDetectorsCommandInput, DescribeAnomalyDetectorsCommandOutput, CloudWatchClientResolvedConfig> {
40
53
  readonly input: DescribeAnomalyDetectorsCommandInput;
@@ -31,6 +31,10 @@ export interface DescribeInsightRulesCommandOutput extends DescribeInsightRulesO
31
31
  * @see {@link DescribeInsightRulesCommandOutput} for command's `response` shape.
32
32
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
33
33
  *
34
+ * @throws {@link InvalidNextToken} (client fault)
35
+ * <p>The next token specified is invalid.</p>
36
+ *
37
+ *
34
38
  */
35
39
  export declare class DescribeInsightRulesCommand extends $Command<DescribeInsightRulesCommandInput, DescribeInsightRulesCommandOutput, CloudWatchClientResolvedConfig> {
36
40
  readonly input: DescribeInsightRulesCommandInput;
@@ -30,6 +30,7 @@ export interface DisableAlarmActionsCommandOutput extends __MetadataBearer {
30
30
  * @see {@link DisableAlarmActionsCommandOutput} for command's `response` shape.
31
31
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
32
32
  *
33
+ *
33
34
  */
34
35
  export declare class DisableAlarmActionsCommand extends $Command<DisableAlarmActionsCommandInput, DisableAlarmActionsCommandOutput, CloudWatchClientResolvedConfig> {
35
36
  readonly input: DisableAlarmActionsCommandInput;
@@ -30,6 +30,13 @@ export interface DisableInsightRulesCommandOutput extends DisableInsightRulesOut
30
30
  * @see {@link DisableInsightRulesCommandOutput} for command's `response` shape.
31
31
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
32
32
  *
33
+ * @throws {@link InvalidParameterValueException} (client fault)
34
+ * <p>The value of an input parameter is bad or out-of-range.</p>
35
+ *
36
+ * @throws {@link MissingRequiredParameterException} (client fault)
37
+ * <p>An input parameter that is required is missing.</p>
38
+ *
39
+ *
33
40
  */
34
41
  export declare class DisableInsightRulesCommand extends $Command<DisableInsightRulesCommandInput, DisableInsightRulesCommandOutput, CloudWatchClientResolvedConfig> {
35
42
  readonly input: DisableInsightRulesCommandInput;
@@ -29,6 +29,7 @@ export interface EnableAlarmActionsCommandOutput extends __MetadataBearer {
29
29
  * @see {@link EnableAlarmActionsCommandOutput} for command's `response` shape.
30
30
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
31
31
  *
32
+ *
32
33
  */
33
34
  export declare class EnableAlarmActionsCommand extends $Command<EnableAlarmActionsCommandInput, EnableAlarmActionsCommandOutput, CloudWatchClientResolvedConfig> {
34
35
  readonly input: EnableAlarmActionsCommandInput;
@@ -29,6 +29,16 @@ export interface EnableInsightRulesCommandOutput extends EnableInsightRulesOutpu
29
29
  * @see {@link EnableInsightRulesCommandOutput} for command's `response` shape.
30
30
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
31
31
  *
32
+ * @throws {@link InvalidParameterValueException} (client fault)
33
+ * <p>The value of an input parameter is bad or out-of-range.</p>
34
+ *
35
+ * @throws {@link LimitExceededException} (client fault)
36
+ * <p>The operation exceeded one or more limits.</p>
37
+ *
38
+ * @throws {@link MissingRequiredParameterException} (client fault)
39
+ * <p>An input parameter that is required is missing.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class EnableInsightRulesCommand extends $Command<EnableInsightRulesCommandInput, EnableInsightRulesCommandOutput, CloudWatchClientResolvedConfig> {
34
44
  readonly input: EnableInsightRulesCommandInput;
@@ -32,6 +32,16 @@ export interface GetDashboardCommandOutput extends GetDashboardOutput, __Metadat
32
32
  * @see {@link GetDashboardCommandOutput} for command's `response` shape.
33
33
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
34
34
  *
35
+ * @throws {@link DashboardNotFoundError} (client fault)
36
+ * <p>The specified dashboard does not exist.</p>
37
+ *
38
+ * @throws {@link InternalServiceFault} (server fault)
39
+ * <p>Request processing has failed due to some unknown error, exception, or failure.</p>
40
+ *
41
+ * @throws {@link InvalidParameterValueException} (client fault)
42
+ * <p>The value of an input parameter is bad or out-of-range.</p>
43
+ *
44
+ *
35
45
  */
36
46
  export declare class GetDashboardCommand extends $Command<GetDashboardCommandInput, GetDashboardCommandOutput, CloudWatchClientResolvedConfig> {
37
47
  readonly input: GetDashboardCommandInput;
@@ -65,6 +65,16 @@ export interface GetInsightRuleReportCommandOutput extends GetInsightRuleReportO
65
65
  * @see {@link GetInsightRuleReportCommandOutput} for command's `response` shape.
66
66
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
67
67
  *
68
+ * @throws {@link InvalidParameterValueException} (client fault)
69
+ * <p>The value of an input parameter is bad or out-of-range.</p>
70
+ *
71
+ * @throws {@link MissingRequiredParameterException} (client fault)
72
+ * <p>An input parameter that is required is missing.</p>
73
+ *
74
+ * @throws {@link ResourceNotFoundException} (client fault)
75
+ * <p>The named resource does not exist.</p>
76
+ *
77
+ *
68
78
  */
69
79
  export declare class GetInsightRuleReportCommand extends $Command<GetInsightRuleReportCommandInput, GetInsightRuleReportCommandOutput, CloudWatchClientResolvedConfig> {
70
80
  readonly input: GetInsightRuleReportCommandInput;
@@ -76,6 +76,10 @@ export interface GetMetricDataCommandOutput extends GetMetricDataOutput, __Metad
76
76
  * @see {@link GetMetricDataCommandOutput} for command's `response` shape.
77
77
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
78
78
  *
79
+ * @throws {@link InvalidNextToken} (client fault)
80
+ * <p>The next token specified is invalid.</p>
81
+ *
82
+ *
79
83
  */
80
84
  export declare class GetMetricDataCommand extends $Command<GetMetricDataCommandInput, GetMetricDataCommandOutput, CloudWatchClientResolvedConfig> {
81
85
  readonly input: GetMetricDataCommandInput;
@@ -75,6 +75,19 @@ export interface GetMetricStatisticsCommandOutput extends GetMetricStatisticsOut
75
75
  * @see {@link GetMetricStatisticsCommandOutput} for command's `response` shape.
76
76
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
77
77
  *
78
+ * @throws {@link InternalServiceFault} (server fault)
79
+ * <p>Request processing has failed due to some unknown error, exception, or failure.</p>
80
+ *
81
+ * @throws {@link InvalidParameterCombinationException} (client fault)
82
+ * <p>Parameters were used together that cannot be used together.</p>
83
+ *
84
+ * @throws {@link InvalidParameterValueException} (client fault)
85
+ * <p>The value of an input parameter is bad or out-of-range.</p>
86
+ *
87
+ * @throws {@link MissingRequiredParameterException} (client fault)
88
+ * <p>An input parameter that is required is missing.</p>
89
+ *
90
+ *
78
91
  */
79
92
  export declare class GetMetricStatisticsCommand extends $Command<GetMetricStatisticsCommandInput, GetMetricStatisticsCommandOutput, CloudWatchClientResolvedConfig> {
80
93
  readonly input: GetMetricStatisticsCommandInput;
@@ -29,6 +29,22 @@ export interface GetMetricStreamCommandOutput extends GetMetricStreamOutput, __M
29
29
  * @see {@link GetMetricStreamCommandOutput} for command's `response` shape.
30
30
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServiceFault} (server fault)
33
+ * <p>Request processing has failed due to some unknown error, exception, or failure.</p>
34
+ *
35
+ * @throws {@link InvalidParameterCombinationException} (client fault)
36
+ * <p>Parameters were used together that cannot be used together.</p>
37
+ *
38
+ * @throws {@link InvalidParameterValueException} (client fault)
39
+ * <p>The value of an input parameter is bad or out-of-range.</p>
40
+ *
41
+ * @throws {@link MissingRequiredParameterException} (client fault)
42
+ * <p>An input parameter that is required is missing.</p>
43
+ *
44
+ * @throws {@link ResourceNotFoundException} (client fault)
45
+ * <p>The named resource does not exist.</p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class GetMetricStreamCommand extends $Command<GetMetricStreamCommandInput, GetMetricStreamCommandOutput, CloudWatchClientResolvedConfig> {
34
50
  readonly input: GetMetricStreamCommandInput;
@@ -44,6 +44,7 @@ export interface GetMetricWidgetImageCommandOutput extends GetMetricWidgetImageO
44
44
  * @see {@link GetMetricWidgetImageCommandOutput} for command's `response` shape.
45
45
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
46
46
  *
47
+ *
47
48
  */
48
49
  export declare class GetMetricWidgetImageCommand extends $Command<GetMetricWidgetImageCommandInput, GetMetricWidgetImageCommandOutput, CloudWatchClientResolvedConfig> {
49
50
  readonly input: GetMetricWidgetImageCommandInput;
@@ -37,6 +37,13 @@ export interface ListDashboardsCommandOutput extends ListDashboardsOutput, __Met
37
37
  * @see {@link ListDashboardsCommandOutput} for command's `response` shape.
38
38
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
39
39
  *
40
+ * @throws {@link InternalServiceFault} (server fault)
41
+ * <p>Request processing has failed due to some unknown error, exception, or failure.</p>
42
+ *
43
+ * @throws {@link InvalidParameterValueException} (client fault)
44
+ * <p>The value of an input parameter is bad or out-of-range.</p>
45
+ *
46
+ *
40
47
  */
41
48
  export declare class ListDashboardsCommand extends $Command<ListDashboardsCommandInput, ListDashboardsCommandOutput, CloudWatchClientResolvedConfig> {
42
49
  readonly input: ListDashboardsCommandInput;
@@ -35,6 +35,16 @@ export interface ListManagedInsightRulesCommandOutput extends ListManagedInsight
35
35
  * @see {@link ListManagedInsightRulesCommandOutput} for command's `response` shape.
36
36
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
37
37
  *
38
+ * @throws {@link InvalidNextToken} (client fault)
39
+ * <p>The next token specified is invalid.</p>
40
+ *
41
+ * @throws {@link InvalidParameterValueException} (client fault)
42
+ * <p>The value of an input parameter is bad or out-of-range.</p>
43
+ *
44
+ * @throws {@link MissingRequiredParameterException} (client fault)
45
+ * <p>An input parameter that is required is missing.</p>
46
+ *
47
+ *
38
48
  */
39
49
  export declare class ListManagedInsightRulesCommand extends $Command<ListManagedInsightRulesCommandInput, ListManagedInsightRulesCommandOutput, CloudWatchClientResolvedConfig> {
40
50
  readonly input: ListManagedInsightRulesCommandInput;
@@ -29,6 +29,19 @@ export interface ListMetricStreamsCommandOutput extends ListMetricStreamsOutput,
29
29
  * @see {@link ListMetricStreamsCommandOutput} for command's `response` shape.
30
30
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServiceFault} (server fault)
33
+ * <p>Request processing has failed due to some unknown error, exception, or failure.</p>
34
+ *
35
+ * @throws {@link InvalidNextToken} (client fault)
36
+ * <p>The next token specified is invalid.</p>
37
+ *
38
+ * @throws {@link InvalidParameterValueException} (client fault)
39
+ * <p>The value of an input parameter is bad or out-of-range.</p>
40
+ *
41
+ * @throws {@link MissingRequiredParameterException} (client fault)
42
+ * <p>An input parameter that is required is missing.</p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class ListMetricStreamsCommand extends $Command<ListMetricStreamsCommandInput, ListMetricStreamsCommandOutput, CloudWatchClientResolvedConfig> {
34
47
  readonly input: ListMetricStreamsCommandInput;
@@ -41,6 +41,13 @@ export interface ListMetricsCommandOutput extends ListMetricsOutput, __MetadataB
41
41
  * @see {@link ListMetricsCommandOutput} for command's `response` shape.
42
42
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
43
43
  *
44
+ * @throws {@link InternalServiceFault} (server fault)
45
+ * <p>Request processing has failed due to some unknown error, exception, or failure.</p>
46
+ *
47
+ * @throws {@link InvalidParameterValueException} (client fault)
48
+ * <p>The value of an input parameter is bad or out-of-range.</p>
49
+ *
50
+ *
44
51
  */
45
52
  export declare class ListMetricsCommand extends $Command<ListMetricsCommandInput, ListMetricsCommandOutput, CloudWatchClientResolvedConfig> {
46
53
  readonly input: ListMetricsCommandInput;
@@ -30,6 +30,16 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
30
30
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
31
31
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalServiceFault} (server fault)
34
+ * <p>Request processing has failed due to some unknown error, exception, or failure.</p>
35
+ *
36
+ * @throws {@link InvalidParameterValueException} (client fault)
37
+ * <p>The value of an input parameter is bad or out-of-range.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The named resource does not exist.</p>
41
+ *
42
+ *
33
43
  */
34
44
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CloudWatchClientResolvedConfig> {
35
45
  readonly input: ListTagsForResourceCommandInput;
@@ -31,6 +31,22 @@ export interface PutAnomalyDetectorCommandOutput extends PutAnomalyDetectorOutpu
31
31
  * @see {@link PutAnomalyDetectorCommandOutput} for command's `response` shape.
32
32
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
33
33
  *
34
+ * @throws {@link InternalServiceFault} (server fault)
35
+ * <p>Request processing has failed due to some unknown error, exception, or failure.</p>
36
+ *
37
+ * @throws {@link InvalidParameterCombinationException} (client fault)
38
+ * <p>Parameters were used together that cannot be used together.</p>
39
+ *
40
+ * @throws {@link InvalidParameterValueException} (client fault)
41
+ * <p>The value of an input parameter is bad or out-of-range.</p>
42
+ *
43
+ * @throws {@link LimitExceededException} (client fault)
44
+ * <p>The operation exceeded one or more limits.</p>
45
+ *
46
+ * @throws {@link MissingRequiredParameterException} (client fault)
47
+ * <p>An input parameter that is required is missing.</p>
48
+ *
49
+ *
34
50
  */
35
51
  export declare class PutAnomalyDetectorCommand extends $Command<PutAnomalyDetectorCommandInput, PutAnomalyDetectorCommandOutput, CloudWatchClientResolvedConfig> {
36
52
  readonly input: PutAnomalyDetectorCommandInput;
@@ -67,6 +67,10 @@ export interface PutCompositeAlarmCommandOutput extends __MetadataBearer {
67
67
  * @see {@link PutCompositeAlarmCommandOutput} for command's `response` shape.
68
68
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
69
69
  *
70
+ * @throws {@link LimitExceededFault} (client fault)
71
+ * <p>The quota for alarms for this customer has already been reached.</p>
72
+ *
73
+ *
70
74
  */
71
75
  export declare class PutCompositeAlarmCommand extends $Command<PutCompositeAlarmCommandInput, PutCompositeAlarmCommandOutput, CloudWatchClientResolvedConfig> {
72
76
  readonly input: PutCompositeAlarmCommandInput;
@@ -42,6 +42,13 @@ export interface PutDashboardCommandOutput extends PutDashboardOutput, __Metadat
42
42
  * @see {@link PutDashboardCommandOutput} for command's `response` shape.
43
43
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
44
44
  *
45
+ * @throws {@link DashboardInvalidInputError} (client fault)
46
+ * <p>Some part of the dashboard data is invalid.</p>
47
+ *
48
+ * @throws {@link InternalServiceFault} (server fault)
49
+ * <p>Request processing has failed due to some unknown error, exception, or failure.</p>
50
+ *
51
+ *
45
52
  */
46
53
  export declare class PutDashboardCommand extends $Command<PutDashboardCommandInput, PutDashboardCommandOutput, CloudWatchClientResolvedConfig> {
47
54
  readonly input: PutDashboardCommandInput;
@@ -33,6 +33,16 @@ export interface PutInsightRuleCommandOutput extends PutInsightRuleOutput, __Met
33
33
  * @see {@link PutInsightRuleCommandOutput} for command's `response` shape.
34
34
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
35
35
  *
36
+ * @throws {@link InvalidParameterValueException} (client fault)
37
+ * <p>The value of an input parameter is bad or out-of-range.</p>
38
+ *
39
+ * @throws {@link LimitExceededException} (client fault)
40
+ * <p>The operation exceeded one or more limits.</p>
41
+ *
42
+ * @throws {@link MissingRequiredParameterException} (client fault)
43
+ * <p>An input parameter that is required is missing.</p>
44
+ *
45
+ *
36
46
  */
37
47
  export declare class PutInsightRuleCommand extends $Command<PutInsightRuleCommandInput, PutInsightRuleCommandOutput, CloudWatchClientResolvedConfig> {
38
48
  readonly input: PutInsightRuleCommandInput;
@@ -45,6 +45,13 @@ export interface PutManagedInsightRulesCommandOutput extends PutManagedInsightRu
45
45
  * @see {@link PutManagedInsightRulesCommandOutput} for command's `response` shape.
46
46
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
47
47
  *
48
+ * @throws {@link InvalidParameterValueException} (client fault)
49
+ * <p>The value of an input parameter is bad or out-of-range.</p>
50
+ *
51
+ * @throws {@link MissingRequiredParameterException} (client fault)
52
+ * <p>An input parameter that is required is missing.</p>
53
+ *
54
+ *
48
55
  */
49
56
  export declare class PutManagedInsightRulesCommand extends $Command<PutManagedInsightRulesCommandInput, PutManagedInsightRulesCommandOutput, CloudWatchClientResolvedConfig> {
50
57
  readonly input: PutManagedInsightRulesCommandInput;
@@ -80,6 +80,10 @@ export interface PutMetricAlarmCommandOutput extends __MetadataBearer {
80
80
  * @see {@link PutMetricAlarmCommandOutput} for command's `response` shape.
81
81
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
82
82
  *
83
+ * @throws {@link LimitExceededFault} (client fault)
84
+ * <p>The quota for alarms for this customer has already been reached.</p>
85
+ *
86
+ *
83
87
  */
84
88
  export declare class PutMetricAlarmCommand extends $Command<PutMetricAlarmCommandInput, PutMetricAlarmCommandOutput, CloudWatchClientResolvedConfig> {
85
89
  readonly input: PutMetricAlarmCommandInput;
@@ -71,6 +71,19 @@ export interface PutMetricDataCommandOutput extends __MetadataBearer {
71
71
  * @see {@link PutMetricDataCommandOutput} for command's `response` shape.
72
72
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
73
73
  *
74
+ * @throws {@link InternalServiceFault} (server fault)
75
+ * <p>Request processing has failed due to some unknown error, exception, or failure.</p>
76
+ *
77
+ * @throws {@link InvalidParameterCombinationException} (client fault)
78
+ * <p>Parameters were used together that cannot be used together.</p>
79
+ *
80
+ * @throws {@link InvalidParameterValueException} (client fault)
81
+ * <p>The value of an input parameter is bad or out-of-range.</p>
82
+ *
83
+ * @throws {@link MissingRequiredParameterException} (client fault)
84
+ * <p>An input parameter that is required is missing.</p>
85
+ *
86
+ *
74
87
  */
75
88
  export declare class PutMetricDataCommand extends $Command<PutMetricDataCommandInput, PutMetricDataCommandOutput, CloudWatchClientResolvedConfig> {
76
89
  readonly input: PutMetricDataCommandInput;
@@ -62,6 +62,22 @@ export interface PutMetricStreamCommandOutput extends PutMetricStreamOutput, __M
62
62
  * @see {@link PutMetricStreamCommandOutput} for command's `response` shape.
63
63
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
64
64
  *
65
+ * @throws {@link ConcurrentModificationException} (client fault)
66
+ * <p>More than one process tried to modify a resource at the same time.</p>
67
+ *
68
+ * @throws {@link InternalServiceFault} (server fault)
69
+ * <p>Request processing has failed due to some unknown error, exception, or failure.</p>
70
+ *
71
+ * @throws {@link InvalidParameterCombinationException} (client fault)
72
+ * <p>Parameters were used together that cannot be used together.</p>
73
+ *
74
+ * @throws {@link InvalidParameterValueException} (client fault)
75
+ * <p>The value of an input parameter is bad or out-of-range.</p>
76
+ *
77
+ * @throws {@link MissingRequiredParameterException} (client fault)
78
+ * <p>An input parameter that is required is missing.</p>
79
+ *
80
+ *
65
81
  */
66
82
  export declare class PutMetricStreamCommand extends $Command<PutMetricStreamCommandInput, PutMetricStreamCommandOutput, CloudWatchClientResolvedConfig> {
67
83
  readonly input: PutMetricStreamCommandInput;
@@ -44,6 +44,13 @@ export interface SetAlarmStateCommandOutput extends __MetadataBearer {
44
44
  * @see {@link SetAlarmStateCommandOutput} for command's `response` shape.
45
45
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
46
46
  *
47
+ * @throws {@link InvalidFormatFault} (client fault)
48
+ * <p>Data was not syntactically valid JSON.</p>
49
+ *
50
+ * @throws {@link ResourceNotFound} (client fault)
51
+ * <p>The named resource does not exist.</p>
52
+ *
53
+ *
47
54
  */
48
55
  export declare class SetAlarmStateCommand extends $Command<SetAlarmStateCommandInput, SetAlarmStateCommandOutput, CloudWatchClientResolvedConfig> {
49
56
  readonly input: SetAlarmStateCommandInput;
@@ -29,6 +29,16 @@ export interface StartMetricStreamsCommandOutput extends StartMetricStreamsOutpu
29
29
  * @see {@link StartMetricStreamsCommandOutput} for command's `response` shape.
30
30
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServiceFault} (server fault)
33
+ * <p>Request processing has failed due to some unknown error, exception, or failure.</p>
34
+ *
35
+ * @throws {@link InvalidParameterValueException} (client fault)
36
+ * <p>The value of an input parameter is bad or out-of-range.</p>
37
+ *
38
+ * @throws {@link MissingRequiredParameterException} (client fault)
39
+ * <p>An input parameter that is required is missing.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class StartMetricStreamsCommand extends $Command<StartMetricStreamsCommandInput, StartMetricStreamsCommandOutput, CloudWatchClientResolvedConfig> {
34
44
  readonly input: StartMetricStreamsCommandInput;
@@ -29,6 +29,16 @@ export interface StopMetricStreamsCommandOutput extends StopMetricStreamsOutput,
29
29
  * @see {@link StopMetricStreamsCommandOutput} for command's `response` shape.
30
30
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServiceFault} (server fault)
33
+ * <p>Request processing has failed due to some unknown error, exception, or failure.</p>
34
+ *
35
+ * @throws {@link InvalidParameterValueException} (client fault)
36
+ * <p>The value of an input parameter is bad or out-of-range.</p>
37
+ *
38
+ * @throws {@link MissingRequiredParameterException} (client fault)
39
+ * <p>An input parameter that is required is missing.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class StopMetricStreamsCommand extends $Command<StopMetricStreamsCommandInput, StopMetricStreamsCommandOutput, CloudWatchClientResolvedConfig> {
34
44
  readonly input: StopMetricStreamsCommandInput;
@@ -39,6 +39,19 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
39
39
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
40
40
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
41
41
  *
42
+ * @throws {@link ConcurrentModificationException} (client fault)
43
+ * <p>More than one process tried to modify a resource at the same time.</p>
44
+ *
45
+ * @throws {@link InternalServiceFault} (server fault)
46
+ * <p>Request processing has failed due to some unknown error, exception, or failure.</p>
47
+ *
48
+ * @throws {@link InvalidParameterValueException} (client fault)
49
+ * <p>The value of an input parameter is bad or out-of-range.</p>
50
+ *
51
+ * @throws {@link ResourceNotFoundException} (client fault)
52
+ * <p>The named resource does not exist.</p>
53
+ *
54
+ *
42
55
  */
43
56
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CloudWatchClientResolvedConfig> {
44
57
  readonly input: TagResourceCommandInput;
@@ -29,6 +29,19 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
29
29
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
30
  * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape.
31
31
  *
32
+ * @throws {@link ConcurrentModificationException} (client fault)
33
+ * <p>More than one process tried to modify a resource at the same time.</p>
34
+ *
35
+ * @throws {@link InternalServiceFault} (server fault)
36
+ * <p>Request processing has failed due to some unknown error, exception, or failure.</p>
37
+ *
38
+ * @throws {@link InvalidParameterValueException} (client fault)
39
+ * <p>The value of an input parameter is bad or out-of-range.</p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>The named resource does not exist.</p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CloudWatchClientResolvedConfig> {
34
47
  readonly input: UntagResourceCommandInput;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudwatch",
3
3
  "description": "AWS SDK for JavaScript Cloudwatch Client for Node.js, Browser and React Native",
4
- "version": "3.289.0",
4
+ "version": "3.290.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,39 +20,39 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.289.0",
24
- "@aws-sdk/config-resolver": "3.289.0",
25
- "@aws-sdk/credential-provider-node": "3.289.0",
26
- "@aws-sdk/fetch-http-handler": "3.289.0",
27
- "@aws-sdk/hash-node": "3.289.0",
28
- "@aws-sdk/invalid-dependency": "3.289.0",
29
- "@aws-sdk/middleware-content-length": "3.289.0",
30
- "@aws-sdk/middleware-endpoint": "3.289.0",
31
- "@aws-sdk/middleware-host-header": "3.289.0",
32
- "@aws-sdk/middleware-logger": "3.289.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.289.0",
34
- "@aws-sdk/middleware-retry": "3.289.0",
35
- "@aws-sdk/middleware-serde": "3.289.0",
36
- "@aws-sdk/middleware-signing": "3.289.0",
37
- "@aws-sdk/middleware-stack": "3.289.0",
38
- "@aws-sdk/middleware-user-agent": "3.289.0",
39
- "@aws-sdk/node-config-provider": "3.289.0",
40
- "@aws-sdk/node-http-handler": "3.289.0",
41
- "@aws-sdk/protocol-http": "3.289.0",
42
- "@aws-sdk/smithy-client": "3.289.0",
43
- "@aws-sdk/types": "3.289.0",
44
- "@aws-sdk/url-parser": "3.289.0",
23
+ "@aws-sdk/client-sts": "3.290.0",
24
+ "@aws-sdk/config-resolver": "3.290.0",
25
+ "@aws-sdk/credential-provider-node": "3.290.0",
26
+ "@aws-sdk/fetch-http-handler": "3.290.0",
27
+ "@aws-sdk/hash-node": "3.290.0",
28
+ "@aws-sdk/invalid-dependency": "3.290.0",
29
+ "@aws-sdk/middleware-content-length": "3.290.0",
30
+ "@aws-sdk/middleware-endpoint": "3.290.0",
31
+ "@aws-sdk/middleware-host-header": "3.290.0",
32
+ "@aws-sdk/middleware-logger": "3.290.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.290.0",
34
+ "@aws-sdk/middleware-retry": "3.290.0",
35
+ "@aws-sdk/middleware-serde": "3.290.0",
36
+ "@aws-sdk/middleware-signing": "3.290.0",
37
+ "@aws-sdk/middleware-stack": "3.290.0",
38
+ "@aws-sdk/middleware-user-agent": "3.290.0",
39
+ "@aws-sdk/node-config-provider": "3.290.0",
40
+ "@aws-sdk/node-http-handler": "3.290.0",
41
+ "@aws-sdk/protocol-http": "3.290.0",
42
+ "@aws-sdk/smithy-client": "3.290.0",
43
+ "@aws-sdk/types": "3.290.0",
44
+ "@aws-sdk/url-parser": "3.290.0",
45
45
  "@aws-sdk/util-base64": "3.208.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.289.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.289.0",
50
- "@aws-sdk/util-endpoints": "3.289.0",
51
- "@aws-sdk/util-retry": "3.289.0",
52
- "@aws-sdk/util-user-agent-browser": "3.289.0",
53
- "@aws-sdk/util-user-agent-node": "3.289.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.290.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.290.0",
50
+ "@aws-sdk/util-endpoints": "3.290.0",
51
+ "@aws-sdk/util-retry": "3.290.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.290.0",
53
+ "@aws-sdk/util-user-agent-node": "3.290.0",
54
54
  "@aws-sdk/util-utf8": "3.254.0",
55
- "@aws-sdk/util-waiter": "3.289.0",
55
+ "@aws-sdk/util-waiter": "3.290.0",
56
56
  "fast-xml-parser": "4.1.2",
57
57
  "tslib": "^2.3.1"
58
58
  },