@aws-sdk/client-rum 3.296.0 → 3.298.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/commands/BatchCreateRumMetricDefinitionsCommand.js +2 -3
- package/dist-cjs/commands/BatchDeleteRumMetricDefinitionsCommand.js +2 -3
- package/dist-cjs/commands/BatchGetRumMetricDefinitionsCommand.js +2 -3
- package/dist-cjs/commands/CreateAppMonitorCommand.js +2 -3
- package/dist-cjs/commands/DeleteAppMonitorCommand.js +2 -3
- package/dist-cjs/commands/DeleteRumMetricsDestinationCommand.js +2 -3
- package/dist-cjs/commands/GetAppMonitorCommand.js +2 -3
- package/dist-cjs/commands/GetAppMonitorDataCommand.js +2 -3
- package/dist-cjs/commands/ListAppMonitorsCommand.js +2 -3
- package/dist-cjs/commands/ListRumMetricsDestinationsCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-cjs/commands/PutRumEventsCommand.js +2 -3
- package/dist-cjs/commands/PutRumMetricsDestinationCommand.js +2 -3
- package/dist-cjs/commands/TagResourceCommand.js +2 -3
- package/dist-cjs/commands/UntagResourceCommand.js +2 -3
- package/dist-cjs/commands/UpdateAppMonitorCommand.js +2 -3
- package/dist-cjs/commands/UpdateRumMetricDefinitionCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -202
- package/dist-es/commands/BatchCreateRumMetricDefinitionsCommand.js +2 -3
- package/dist-es/commands/BatchDeleteRumMetricDefinitionsCommand.js +2 -3
- package/dist-es/commands/BatchGetRumMetricDefinitionsCommand.js +2 -3
- package/dist-es/commands/CreateAppMonitorCommand.js +2 -3
- package/dist-es/commands/DeleteAppMonitorCommand.js +2 -3
- package/dist-es/commands/DeleteRumMetricsDestinationCommand.js +2 -3
- package/dist-es/commands/GetAppMonitorCommand.js +2 -3
- package/dist-es/commands/GetAppMonitorDataCommand.js +2 -3
- package/dist-es/commands/ListAppMonitorsCommand.js +2 -3
- package/dist-es/commands/ListRumMetricsDestinationsCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-es/commands/PutRumEventsCommand.js +2 -3
- package/dist-es/commands/PutRumMetricsDestinationCommand.js +2 -3
- package/dist-es/commands/TagResourceCommand.js +2 -3
- package/dist-es/commands/UntagResourceCommand.js +2 -3
- package/dist-es/commands/UpdateAppMonitorCommand.js +2 -3
- package/dist-es/commands/UpdateRumMetricDefinitionCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -150
- package/dist-types/RUM.d.ts +18 -0
- package/dist-types/RUMClient.d.ts +24 -4
- package/dist-types/commands/BatchCreateRumMetricDefinitionsCommand.d.ts +16 -0
- package/dist-types/commands/BatchDeleteRumMetricDefinitionsCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetRumMetricDefinitionsCommand.d.ts +16 -0
- package/dist-types/commands/CreateAppMonitorCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAppMonitorCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRumMetricsDestinationCommand.d.ts +16 -0
- package/dist-types/commands/GetAppMonitorCommand.d.ts +16 -0
- package/dist-types/commands/GetAppMonitorDataCommand.d.ts +16 -0
- package/dist-types/commands/ListAppMonitorsCommand.d.ts +16 -0
- package/dist-types/commands/ListRumMetricsDestinationsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutRumEventsCommand.d.ts +16 -0
- package/dist-types/commands/PutRumMetricsDestinationCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAppMonitorCommand.d.ts +16 -0
- package/dist-types/commands/UpdateRumMetricDefinitionCommand.d.ts +16 -0
- package/dist-types/models/RUMServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +182 -245
- package/dist-types/pagination/BatchGetRumMetricDefinitionsPaginator.d.ts +3 -0
- package/dist-types/pagination/GetAppMonitorDataPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAppMonitorsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRumMetricsDestinationsPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -134
- package/package.json +4 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { PutRumMetricsDestinationRequest, PutRumMetricsDestinationResponse } from "../models/models_0";
|
|
5
5
|
import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutRumMetricsDestinationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutRumMetricsDestinationCommandInput extends PutRumMetricsDestinationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutRumMetricsDestinationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutRumMetricsDestinationCommandOutput extends PutRumMetricsDestinationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates or updates a destination to receive extended metrics from CloudWatch RUM. You can send
|
|
18
23
|
* extended metrics to CloudWatch or to a CloudWatch Evidently experiment.</p>
|
|
19
24
|
* <p>For more information about extended metrics, see <a href="https://docs.aws.amazon.com/cloudwatchrum/latest/APIReference/API_BatchCreateRumMetricDefinitions.html">BatchCreateRumMetricDefinitions</a>.</p>
|
|
@@ -27,6 +32,8 @@ export interface PutRumMetricsDestinationCommandOutput extends PutRumMetricsDest
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param PutRumMetricsDestinationCommandInput - {@link PutRumMetricsDestinationCommandInput}
|
|
36
|
+
* @returns {@link PutRumMetricsDestinationCommandOutput}
|
|
30
37
|
* @see {@link PutRumMetricsDestinationCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link PutRumMetricsDestinationCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface PutRumMetricsDestinationCommandOutput extends PutRumMetricsDest
|
|
|
54
61
|
export declare class PutRumMetricsDestinationCommand extends $Command<PutRumMetricsDestinationCommandInput, PutRumMetricsDestinationCommandOutput, RUMClientResolvedConfig> {
|
|
55
62
|
readonly input: PutRumMetricsDestinationCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: PutRumMetricsDestinationCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutRumMetricsDestinationCommandInput, PutRumMetricsDestinationCommandOutput>;
|
|
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
5
5
|
import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Assigns one or more tags (key-value pairs) to the specified CloudWatch RUM resource. Currently,
|
|
18
23
|
* the only resources that
|
|
19
24
|
* can be tagged app monitors.</p>
|
|
@@ -38,6 +43,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
38
43
|
* const response = await client.send(command);
|
|
39
44
|
* ```
|
|
40
45
|
*
|
|
46
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
47
|
+
* @returns {@link TagResourceCommandOutput}
|
|
41
48
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
42
49
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
43
50
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
56
63
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, RUMClientResolvedConfig> {
|
|
57
64
|
readonly input: TagResourceCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: TagResourceCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
5
5
|
import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes one or more tags from the specified resource.</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 UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
43
50
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, RUMClientResolvedConfig> {
|
|
44
51
|
readonly input: UntagResourceCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: UntagResourceCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
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 { UpdateAppMonitorRequest, UpdateAppMonitorResponse } from "../models/models_0";
|
|
5
5
|
import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateAppMonitorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateAppMonitorCommandInput extends UpdateAppMonitorRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateAppMonitorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateAppMonitorCommandOutput extends UpdateAppMonitorResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the configuration of an existing app monitor. When you use this operation, only the parts of the app monitor
|
|
18
23
|
* configuration that you specify in this operation are changed. For any parameters that you omit, the existing
|
|
19
24
|
* values are kept.</p>
|
|
@@ -35,6 +40,8 @@ export interface UpdateAppMonitorCommandOutput extends UpdateAppMonitorResponse,
|
|
|
35
40
|
* const response = await client.send(command);
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
43
|
+
* @param UpdateAppMonitorCommandInput - {@link UpdateAppMonitorCommandInput}
|
|
44
|
+
* @returns {@link UpdateAppMonitorCommandOutput}
|
|
38
45
|
* @see {@link UpdateAppMonitorCommandInput} for command's `input` shape.
|
|
39
46
|
* @see {@link UpdateAppMonitorCommandOutput} for command's `response` shape.
|
|
40
47
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
@@ -62,11 +69,20 @@ export interface UpdateAppMonitorCommandOutput extends UpdateAppMonitorResponse,
|
|
|
62
69
|
export declare class UpdateAppMonitorCommand extends $Command<UpdateAppMonitorCommandInput, UpdateAppMonitorCommandOutput, RUMClientResolvedConfig> {
|
|
63
70
|
readonly input: UpdateAppMonitorCommandInput;
|
|
64
71
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
65
75
|
constructor(input: UpdateAppMonitorCommandInput);
|
|
66
76
|
/**
|
|
67
77
|
* @internal
|
|
68
78
|
*/
|
|
69
79
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAppMonitorCommandInput, UpdateAppMonitorCommandOutput>;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
70
83
|
private serialize;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
71
87
|
private deserialize;
|
|
72
88
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateRumMetricDefinitionRequest, UpdateRumMetricDefinitionResponse } from "../models/models_0";
|
|
5
5
|
import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateRumMetricDefinitionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateRumMetricDefinitionCommandInput extends UpdateRumMetricDefinitionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateRumMetricDefinitionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateRumMetricDefinitionCommandOutput extends UpdateRumMetricDefinitionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Modifies one existing metric definition for CloudWatch RUM extended metrics. For
|
|
18
23
|
* more information about extended metrics, see <a href="https://docs.aws.amazon.com/cloudwatchrum/latest/APIReference/API_BatchCreateRumMetricsDefinitions.html">BatchCreateRumMetricsDefinitions</a>.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UpdateRumMetricDefinitionCommandOutput extends UpdateRumMetricD
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UpdateRumMetricDefinitionCommandInput - {@link UpdateRumMetricDefinitionCommandInput}
|
|
35
|
+
* @returns {@link UpdateRumMetricDefinitionCommandOutput}
|
|
29
36
|
* @see {@link UpdateRumMetricDefinitionCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UpdateRumMetricDefinitionCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface UpdateRumMetricDefinitionCommandOutput extends UpdateRumMetricD
|
|
|
56
63
|
export declare class UpdateRumMetricDefinitionCommand extends $Command<UpdateRumMetricDefinitionCommandInput, UpdateRumMetricDefinitionCommandOutput, RUMClientResolvedConfig> {
|
|
57
64
|
readonly input: UpdateRumMetricDefinitionCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: UpdateRumMetricDefinitionCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateRumMetricDefinitionCommandInput, UpdateRumMetricDefinitionCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from RUM service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class RUMServiceException extends __ServiceException {
|