@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 { BatchCreateRumMetricDefinitionsRequest, BatchCreateRumMetricDefinitionsResponse } from "../models/models_0";
|
|
5
5
|
import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link BatchCreateRumMetricDefinitionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface BatchCreateRumMetricDefinitionsCommandInput extends BatchCreateRumMetricDefinitionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link BatchCreateRumMetricDefinitionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface BatchCreateRumMetricDefinitionsCommandOutput extends BatchCreateRumMetricDefinitionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Specifies the extended metrics and custom metrics that you want a CloudWatch RUM app monitor to send to a destination. Valid
|
|
18
23
|
* destinations include CloudWatch and Evidently.</p>
|
|
19
24
|
* <p>By default, RUM app monitors send some metrics to CloudWatch. These default metrics
|
|
@@ -64,6 +69,8 @@ export interface BatchCreateRumMetricDefinitionsCommandOutput extends BatchCreat
|
|
|
64
69
|
* const response = await client.send(command);
|
|
65
70
|
* ```
|
|
66
71
|
*
|
|
72
|
+
* @param BatchCreateRumMetricDefinitionsCommandInput - {@link BatchCreateRumMetricDefinitionsCommandInput}
|
|
73
|
+
* @returns {@link BatchCreateRumMetricDefinitionsCommandOutput}
|
|
67
74
|
* @see {@link BatchCreateRumMetricDefinitionsCommandInput} for command's `input` shape.
|
|
68
75
|
* @see {@link BatchCreateRumMetricDefinitionsCommandOutput} for command's `response` shape.
|
|
69
76
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
@@ -94,11 +101,20 @@ export interface BatchCreateRumMetricDefinitionsCommandOutput extends BatchCreat
|
|
|
94
101
|
export declare class BatchCreateRumMetricDefinitionsCommand extends $Command<BatchCreateRumMetricDefinitionsCommandInput, BatchCreateRumMetricDefinitionsCommandOutput, RUMClientResolvedConfig> {
|
|
95
102
|
readonly input: BatchCreateRumMetricDefinitionsCommandInput;
|
|
96
103
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
104
|
+
/**
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
97
107
|
constructor(input: BatchCreateRumMetricDefinitionsCommandInput);
|
|
98
108
|
/**
|
|
99
109
|
* @internal
|
|
100
110
|
*/
|
|
101
111
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchCreateRumMetricDefinitionsCommandInput, BatchCreateRumMetricDefinitionsCommandOutput>;
|
|
112
|
+
/**
|
|
113
|
+
* @internal
|
|
114
|
+
*/
|
|
102
115
|
private serialize;
|
|
116
|
+
/**
|
|
117
|
+
* @internal
|
|
118
|
+
*/
|
|
103
119
|
private deserialize;
|
|
104
120
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BatchDeleteRumMetricDefinitionsRequest, BatchDeleteRumMetricDefinitionsResponse } from "../models/models_0";
|
|
5
5
|
import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link BatchDeleteRumMetricDefinitionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface BatchDeleteRumMetricDefinitionsCommandInput extends BatchDeleteRumMetricDefinitionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link BatchDeleteRumMetricDefinitionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface BatchDeleteRumMetricDefinitionsCommandOutput extends BatchDeleteRumMetricDefinitionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes the specified metrics from being sent to an extended metrics destination.</p>
|
|
18
23
|
* <p>If some metric definition IDs specified in a <code>BatchDeleteRumMetricDefinitions</code> operations are not valid,
|
|
19
24
|
* those metric definitions fail and return errors, but all valid metric definition IDs in the same operation are still
|
|
@@ -30,6 +35,8 @@ export interface BatchDeleteRumMetricDefinitionsCommandOutput extends BatchDelet
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param BatchDeleteRumMetricDefinitionsCommandInput - {@link BatchDeleteRumMetricDefinitionsCommandInput}
|
|
39
|
+
* @returns {@link BatchDeleteRumMetricDefinitionsCommandOutput}
|
|
33
40
|
* @see {@link BatchDeleteRumMetricDefinitionsCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link BatchDeleteRumMetricDefinitionsCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface BatchDeleteRumMetricDefinitionsCommandOutput extends BatchDelet
|
|
|
57
64
|
export declare class BatchDeleteRumMetricDefinitionsCommand extends $Command<BatchDeleteRumMetricDefinitionsCommandInput, BatchDeleteRumMetricDefinitionsCommandOutput, RUMClientResolvedConfig> {
|
|
58
65
|
readonly input: BatchDeleteRumMetricDefinitionsCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: BatchDeleteRumMetricDefinitionsCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchDeleteRumMetricDefinitionsCommandInput, BatchDeleteRumMetricDefinitionsCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BatchGetRumMetricDefinitionsRequest, BatchGetRumMetricDefinitionsResponse } from "../models/models_0";
|
|
5
5
|
import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link BatchGetRumMetricDefinitionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface BatchGetRumMetricDefinitionsCommandInput extends BatchGetRumMetricDefinitionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link BatchGetRumMetricDefinitionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface BatchGetRumMetricDefinitionsCommandOutput extends BatchGetRumMetricDefinitionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the list of metrics and dimensions that a RUM app monitor is sending to a single destination.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface BatchGetRumMetricDefinitionsCommandOutput extends BatchGetRumMe
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param BatchGetRumMetricDefinitionsCommandInput - {@link BatchGetRumMetricDefinitionsCommandInput}
|
|
34
|
+
* @returns {@link BatchGetRumMetricDefinitionsCommandOutput}
|
|
28
35
|
* @see {@link BatchGetRumMetricDefinitionsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link BatchGetRumMetricDefinitionsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface BatchGetRumMetricDefinitionsCommandOutput extends BatchGetRumMe
|
|
|
46
53
|
export declare class BatchGetRumMetricDefinitionsCommand extends $Command<BatchGetRumMetricDefinitionsCommandInput, BatchGetRumMetricDefinitionsCommandOutput, RUMClientResolvedConfig> {
|
|
47
54
|
readonly input: BatchGetRumMetricDefinitionsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: BatchGetRumMetricDefinitionsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchGetRumMetricDefinitionsCommandInput, BatchGetRumMetricDefinitionsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateAppMonitorRequest, CreateAppMonitorResponse } from "../models/models_0";
|
|
5
5
|
import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateAppMonitorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateAppMonitorCommandInput extends CreateAppMonitorRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateAppMonitorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateAppMonitorCommandOutput extends CreateAppMonitorResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a Amazon CloudWatch RUM app monitor, which collects telemetry data from your application and sends that
|
|
18
23
|
* data to RUM. The data includes performance and reliability information such as page load time, client-side errors,
|
|
19
24
|
* and user behavior.</p>
|
|
@@ -33,6 +38,8 @@ export interface CreateAppMonitorCommandOutput extends CreateAppMonitorResponse,
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param CreateAppMonitorCommandInput - {@link CreateAppMonitorCommandInput}
|
|
42
|
+
* @returns {@link CreateAppMonitorCommandOutput}
|
|
36
43
|
* @see {@link CreateAppMonitorCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link CreateAppMonitorCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface CreateAppMonitorCommandOutput extends CreateAppMonitorResponse,
|
|
|
63
70
|
export declare class CreateAppMonitorCommand extends $Command<CreateAppMonitorCommandInput, CreateAppMonitorCommandOutput, RUMClientResolvedConfig> {
|
|
64
71
|
readonly input: CreateAppMonitorCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: CreateAppMonitorCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateAppMonitorCommandInput, CreateAppMonitorCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteAppMonitorRequest, DeleteAppMonitorResponse } from "../models/models_0";
|
|
5
5
|
import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteAppMonitorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteAppMonitorCommandInput extends DeleteAppMonitorRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteAppMonitorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteAppMonitorCommandOutput extends DeleteAppMonitorResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes an existing app monitor. This immediately stops the collection of data.</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 DeleteAppMonitorCommandOutput extends DeleteAppMonitorResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteAppMonitorCommandInput - {@link DeleteAppMonitorCommandInput}
|
|
34
|
+
* @returns {@link DeleteAppMonitorCommandOutput}
|
|
28
35
|
* @see {@link DeleteAppMonitorCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteAppMonitorCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DeleteAppMonitorCommandOutput extends DeleteAppMonitorResponse,
|
|
|
52
59
|
export declare class DeleteAppMonitorCommand extends $Command<DeleteAppMonitorCommandInput, DeleteAppMonitorCommandOutput, RUMClientResolvedConfig> {
|
|
53
60
|
readonly input: DeleteAppMonitorCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DeleteAppMonitorCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAppMonitorCommandInput, DeleteAppMonitorCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteRumMetricsDestinationRequest, DeleteRumMetricsDestinationResponse } from "../models/models_0";
|
|
5
5
|
import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteRumMetricsDestinationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteRumMetricsDestinationCommandInput extends DeleteRumMetricsDestinationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteRumMetricsDestinationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteRumMetricsDestinationCommandOutput extends DeleteRumMetricsDestinationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a destination for CloudWatch RUM extended metrics, so that the specified app monitor stops
|
|
18
23
|
* sending extended metrics to that destination.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteRumMetricsDestinationCommandOutput extends DeleteRumMetri
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteRumMetricsDestinationCommandInput - {@link DeleteRumMetricsDestinationCommandInput}
|
|
35
|
+
* @returns {@link DeleteRumMetricsDestinationCommandOutput}
|
|
29
36
|
* @see {@link DeleteRumMetricsDestinationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteRumMetricsDestinationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface DeleteRumMetricsDestinationCommandOutput extends DeleteRumMetri
|
|
|
53
60
|
export declare class DeleteRumMetricsDestinationCommand extends $Command<DeleteRumMetricsDestinationCommandInput, DeleteRumMetricsDestinationCommandOutput, RUMClientResolvedConfig> {
|
|
54
61
|
readonly input: DeleteRumMetricsDestinationCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: DeleteRumMetricsDestinationCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRumMetricsDestinationCommandInput, DeleteRumMetricsDestinationCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetAppMonitorRequest, GetAppMonitorResponse } from "../models/models_0";
|
|
5
5
|
import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetAppMonitorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetAppMonitorCommandInput extends GetAppMonitorRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetAppMonitorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetAppMonitorCommandOutput extends GetAppMonitorResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the complete configuration information for one app monitor.</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 GetAppMonitorCommandOutput extends GetAppMonitorResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetAppMonitorCommandInput - {@link GetAppMonitorCommandInput}
|
|
34
|
+
* @returns {@link GetAppMonitorCommandOutput}
|
|
28
35
|
* @see {@link GetAppMonitorCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetAppMonitorCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetAppMonitorCommandOutput extends GetAppMonitorResponse, __Met
|
|
|
49
56
|
export declare class GetAppMonitorCommand extends $Command<GetAppMonitorCommandInput, GetAppMonitorCommandOutput, RUMClientResolvedConfig> {
|
|
50
57
|
readonly input: GetAppMonitorCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetAppMonitorCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAppMonitorCommandInput, GetAppMonitorCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetAppMonitorDataRequest, GetAppMonitorDataResponse } from "../models/models_0";
|
|
5
5
|
import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetAppMonitorDataCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetAppMonitorDataCommandInput extends GetAppMonitorDataRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetAppMonitorDataCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetAppMonitorDataCommandOutput extends GetAppMonitorDataResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the raw performance events that RUM has collected from your web application,
|
|
18
23
|
* so that you can do your own processing or analysis of this data.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetAppMonitorDataCommandOutput extends GetAppMonitorDataRespons
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetAppMonitorDataCommandInput - {@link GetAppMonitorDataCommandInput}
|
|
35
|
+
* @returns {@link GetAppMonitorDataCommandOutput}
|
|
29
36
|
* @see {@link GetAppMonitorDataCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetAppMonitorDataCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface GetAppMonitorDataCommandOutput extends GetAppMonitorDataRespons
|
|
|
50
57
|
export declare class GetAppMonitorDataCommand extends $Command<GetAppMonitorDataCommandInput, GetAppMonitorDataCommandOutput, RUMClientResolvedConfig> {
|
|
51
58
|
readonly input: GetAppMonitorDataCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: GetAppMonitorDataCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAppMonitorDataCommandInput, GetAppMonitorDataCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListAppMonitorsRequest, ListAppMonitorsResponse } from "../models/models_0";
|
|
5
5
|
import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAppMonitorsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAppMonitorsCommandInput extends ListAppMonitorsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAppMonitorsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAppMonitorsCommandOutput extends ListAppMonitorsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of the Amazon CloudWatch RUM app monitors in the account.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListAppMonitorsCommandOutput extends ListAppMonitorsResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListAppMonitorsCommandInput - {@link ListAppMonitorsCommandInput}
|
|
34
|
+
* @returns {@link ListAppMonitorsCommandOutput}
|
|
28
35
|
* @see {@link ListAppMonitorsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListAppMonitorsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListAppMonitorsCommandOutput extends ListAppMonitorsResponse, _
|
|
|
46
53
|
export declare class ListAppMonitorsCommand extends $Command<ListAppMonitorsCommandInput, ListAppMonitorsCommandOutput, RUMClientResolvedConfig> {
|
|
47
54
|
readonly input: ListAppMonitorsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListAppMonitorsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAppMonitorsCommandInput, ListAppMonitorsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListRumMetricsDestinationsRequest, ListRumMetricsDestinationsResponse } from "../models/models_0";
|
|
5
5
|
import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListRumMetricsDestinationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListRumMetricsDestinationsCommandInput extends ListRumMetricsDestinationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListRumMetricsDestinationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListRumMetricsDestinationsCommandOutput extends ListRumMetricsDestinationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of destinations that you have created to receive RUM extended metrics,
|
|
18
23
|
* for the specified app monitor.</p>
|
|
19
24
|
* <p>For more information about extended metrics, see <a href="https://docs.aws.amazon.com/cloudwatchrum/latest/APIReference/API_AddRumMetrcs.html">AddRumMetrics</a>.</p>
|
|
@@ -27,6 +32,8 @@ export interface ListRumMetricsDestinationsCommandOutput extends ListRumMetricsD
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListRumMetricsDestinationsCommandInput - {@link ListRumMetricsDestinationsCommandInput}
|
|
36
|
+
* @returns {@link ListRumMetricsDestinationsCommandOutput}
|
|
30
37
|
* @see {@link ListRumMetricsDestinationsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListRumMetricsDestinationsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface ListRumMetricsDestinationsCommandOutput extends ListRumMetricsD
|
|
|
48
55
|
export declare class ListRumMetricsDestinationsCommand extends $Command<ListRumMetricsDestinationsCommandInput, ListRumMetricsDestinationsCommandOutput, RUMClientResolvedConfig> {
|
|
49
56
|
readonly input: ListRumMetricsDestinationsCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: ListRumMetricsDestinationsCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRumMetricsDestinationsCommandInput, ListRumMetricsDestinationsCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
5
|
import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Displays the tags associated with a CloudWatch RUM 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 ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
43
50
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, RUMClientResolvedConfig> {
|
|
44
51
|
readonly input: ListTagsForResourceCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListTagsForResourceCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
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 { PutRumEventsRequest, PutRumEventsResponse } from "../models/models_0";
|
|
5
5
|
import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutRumEventsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutRumEventsCommandInput extends PutRumEventsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutRumEventsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutRumEventsCommandOutput extends PutRumEventsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Sends telemetry events about your application performance and user behavior to CloudWatch RUM. The code
|
|
18
23
|
* snippet that RUM generates for you to add to your application includes <code>PutRumEvents</code> operations to
|
|
19
24
|
* send this data to RUM.</p>
|
|
@@ -28,6 +33,8 @@ export interface PutRumEventsCommandOutput extends PutRumEventsResponse, __Metad
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param PutRumEventsCommandInput - {@link PutRumEventsCommandInput}
|
|
37
|
+
* @returns {@link PutRumEventsCommandOutput}
|
|
31
38
|
* @see {@link PutRumEventsCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link PutRumEventsCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface PutRumEventsCommandOutput extends PutRumEventsResponse, __Metad
|
|
|
52
59
|
export declare class PutRumEventsCommand extends $Command<PutRumEventsCommandInput, PutRumEventsCommandOutput, RUMClientResolvedConfig> {
|
|
53
60
|
readonly input: PutRumEventsCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: PutRumEventsCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutRumEventsCommandInput, PutRumEventsCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|