@aws-sdk/client-rum 3.325.0 → 3.327.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-types/commands/BatchCreateRumMetricDefinitionsCommand.d.ts +34 -0
- package/dist-types/commands/BatchDeleteRumMetricDefinitionsCommand.d.ts +15 -0
- package/dist-types/commands/BatchGetRumMetricDefinitionsCommand.d.ts +19 -0
- package/dist-types/commands/CreateAppMonitorCommand.d.ts +6 -0
- package/dist-types/commands/DeleteAppMonitorCommand.d.ts +4 -0
- package/dist-types/commands/DeleteRumMetricsDestinationCommand.d.ts +4 -0
- package/dist-types/commands/GetAppMonitorCommand.d.ts +44 -0
- package/dist-types/commands/GetAppMonitorDataCommand.d.ts +9 -0
- package/dist-types/commands/ListAppMonitorsCommand.d.ts +15 -0
- package/dist-types/commands/ListRumMetricsDestinationsCommand.d.ts +13 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/commands/PutRumEventsCommand.d.ts +4 -0
- package/dist-types/commands/PutRumMetricsDestinationCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateAppMonitorCommand.d.ts +4 -0
- package/dist-types/commands/UpdateRumMetricDefinitionCommand.d.ts +4 -0
- package/package.json +7 -7
|
@@ -84,6 +84,38 @@ export interface BatchCreateRumMetricDefinitionsCommandOutput extends BatchCreat
|
|
|
84
84
|
* };
|
|
85
85
|
* const command = new BatchCreateRumMetricDefinitionsCommand(input);
|
|
86
86
|
* const response = await client.send(command);
|
|
87
|
+
* // { // BatchCreateRumMetricDefinitionsResponse
|
|
88
|
+
* // Errors: [ // BatchCreateRumMetricDefinitionsErrors // required
|
|
89
|
+
* // { // BatchCreateRumMetricDefinitionsError
|
|
90
|
+
* // MetricDefinition: { // MetricDefinitionRequest
|
|
91
|
+
* // Name: "STRING_VALUE", // required
|
|
92
|
+
* // ValueKey: "STRING_VALUE",
|
|
93
|
+
* // UnitLabel: "STRING_VALUE",
|
|
94
|
+
* // DimensionKeys: { // DimensionKeysMap
|
|
95
|
+
* // "<keys>": "STRING_VALUE",
|
|
96
|
+
* // },
|
|
97
|
+
* // EventPattern: "STRING_VALUE",
|
|
98
|
+
* // Namespace: "STRING_VALUE",
|
|
99
|
+
* // },
|
|
100
|
+
* // ErrorCode: "STRING_VALUE", // required
|
|
101
|
+
* // ErrorMessage: "STRING_VALUE", // required
|
|
102
|
+
* // },
|
|
103
|
+
* // ],
|
|
104
|
+
* // MetricDefinitions: [ // MetricDefinitions
|
|
105
|
+
* // { // MetricDefinition
|
|
106
|
+
* // MetricDefinitionId: "STRING_VALUE", // required
|
|
107
|
+
* // Name: "STRING_VALUE", // required
|
|
108
|
+
* // ValueKey: "STRING_VALUE",
|
|
109
|
+
* // UnitLabel: "STRING_VALUE",
|
|
110
|
+
* // DimensionKeys: {
|
|
111
|
+
* // "<keys>": "STRING_VALUE",
|
|
112
|
+
* // },
|
|
113
|
+
* // EventPattern: "STRING_VALUE",
|
|
114
|
+
* // Namespace: "STRING_VALUE",
|
|
115
|
+
* // },
|
|
116
|
+
* // ],
|
|
117
|
+
* // };
|
|
118
|
+
*
|
|
87
119
|
* ```
|
|
88
120
|
*
|
|
89
121
|
* @param BatchCreateRumMetricDefinitionsCommandInput - {@link BatchCreateRumMetricDefinitionsCommandInput}
|
|
@@ -113,6 +145,8 @@ export interface BatchCreateRumMetricDefinitionsCommandOutput extends BatchCreat
|
|
|
113
145
|
* @throws {@link ValidationException} (client fault)
|
|
114
146
|
* <p>One of the arguments for the request is not valid.</p>
|
|
115
147
|
*
|
|
148
|
+
* @throws {@link RUMServiceException}
|
|
149
|
+
* <p>Base exception class for all service exceptions from RUM service.</p>
|
|
116
150
|
*
|
|
117
151
|
*/
|
|
118
152
|
export declare class BatchCreateRumMetricDefinitionsCommand extends $Command<BatchCreateRumMetricDefinitionsCommandInput, BatchCreateRumMetricDefinitionsCommandOutput, RUMClientResolvedConfig> {
|
|
@@ -41,6 +41,19 @@ export interface BatchDeleteRumMetricDefinitionsCommandOutput extends BatchDelet
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new BatchDeleteRumMetricDefinitionsCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // BatchDeleteRumMetricDefinitionsResponse
|
|
45
|
+
* // Errors: [ // BatchDeleteRumMetricDefinitionsErrors // required
|
|
46
|
+
* // { // BatchDeleteRumMetricDefinitionsError
|
|
47
|
+
* // MetricDefinitionId: "STRING_VALUE", // required
|
|
48
|
+
* // ErrorCode: "STRING_VALUE", // required
|
|
49
|
+
* // ErrorMessage: "STRING_VALUE", // required
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // MetricDefinitionIds: [ // MetricDefinitionIds
|
|
53
|
+
* // "STRING_VALUE",
|
|
54
|
+
* // ],
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
44
57
|
* ```
|
|
45
58
|
*
|
|
46
59
|
* @param BatchDeleteRumMetricDefinitionsCommandInput - {@link BatchDeleteRumMetricDefinitionsCommandInput}
|
|
@@ -67,6 +80,8 @@ export interface BatchDeleteRumMetricDefinitionsCommandOutput extends BatchDelet
|
|
|
67
80
|
* @throws {@link ValidationException} (client fault)
|
|
68
81
|
* <p>One of the arguments for the request is not valid.</p>
|
|
69
82
|
*
|
|
83
|
+
* @throws {@link RUMServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from RUM service.</p>
|
|
70
85
|
*
|
|
71
86
|
*/
|
|
72
87
|
export declare class BatchDeleteRumMetricDefinitionsCommand extends $Command<BatchDeleteRumMetricDefinitionsCommandInput, BatchDeleteRumMetricDefinitionsCommandOutput, RUMClientResolvedConfig> {
|
|
@@ -35,6 +35,23 @@ export interface BatchGetRumMetricDefinitionsCommandOutput extends BatchGetRumMe
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new BatchGetRumMetricDefinitionsCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // BatchGetRumMetricDefinitionsResponse
|
|
39
|
+
* // MetricDefinitions: [ // MetricDefinitions
|
|
40
|
+
* // { // MetricDefinition
|
|
41
|
+
* // MetricDefinitionId: "STRING_VALUE", // required
|
|
42
|
+
* // Name: "STRING_VALUE", // required
|
|
43
|
+
* // ValueKey: "STRING_VALUE",
|
|
44
|
+
* // UnitLabel: "STRING_VALUE",
|
|
45
|
+
* // DimensionKeys: { // DimensionKeysMap
|
|
46
|
+
* // "<keys>": "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // EventPattern: "STRING_VALUE",
|
|
49
|
+
* // Namespace: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // NextToken: "STRING_VALUE",
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
38
55
|
* ```
|
|
39
56
|
*
|
|
40
57
|
* @param BatchGetRumMetricDefinitionsCommandInput - {@link BatchGetRumMetricDefinitionsCommandInput}
|
|
@@ -55,6 +72,8 @@ export interface BatchGetRumMetricDefinitionsCommandOutput extends BatchGetRumMe
|
|
|
55
72
|
* @throws {@link ValidationException} (client fault)
|
|
56
73
|
* <p>One of the arguments for the request is not valid.</p>
|
|
57
74
|
*
|
|
75
|
+
* @throws {@link RUMServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from RUM service.</p>
|
|
58
77
|
*
|
|
59
78
|
*/
|
|
60
79
|
export declare class BatchGetRumMetricDefinitionsCommand extends $Command<BatchGetRumMetricDefinitionsCommandInput, BatchGetRumMetricDefinitionsCommandOutput, RUMClientResolvedConfig> {
|
|
@@ -66,6 +66,10 @@ export interface CreateAppMonitorCommandOutput extends CreateAppMonitorResponse,
|
|
|
66
66
|
* };
|
|
67
67
|
* const command = new CreateAppMonitorCommand(input);
|
|
68
68
|
* const response = await client.send(command);
|
|
69
|
+
* // { // CreateAppMonitorResponse
|
|
70
|
+
* // Id: "STRING_VALUE",
|
|
71
|
+
* // };
|
|
72
|
+
*
|
|
69
73
|
* ```
|
|
70
74
|
*
|
|
71
75
|
* @param CreateAppMonitorCommandInput - {@link CreateAppMonitorCommandInput}
|
|
@@ -95,6 +99,8 @@ export interface CreateAppMonitorCommandOutput extends CreateAppMonitorResponse,
|
|
|
95
99
|
* @throws {@link ValidationException} (client fault)
|
|
96
100
|
* <p>One of the arguments for the request is not valid.</p>
|
|
97
101
|
*
|
|
102
|
+
* @throws {@link RUMServiceException}
|
|
103
|
+
* <p>Base exception class for all service exceptions from RUM service.</p>
|
|
98
104
|
*
|
|
99
105
|
*/
|
|
100
106
|
export declare class CreateAppMonitorCommand extends $Command<CreateAppMonitorCommandInput, CreateAppMonitorCommandOutput, RUMClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteAppMonitorCommandOutput extends DeleteAppMonitorResponse,
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteAppMonitorCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteAppMonitorCommandInput - {@link DeleteAppMonitorCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface DeleteAppMonitorCommandOutput extends DeleteAppMonitorResponse,
|
|
|
57
59
|
* @throws {@link ValidationException} (client fault)
|
|
58
60
|
* <p>One of the arguments for the request is not valid.</p>
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link RUMServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from RUM service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class DeleteAppMonitorCommand extends $Command<DeleteAppMonitorCommandInput, DeleteAppMonitorCommandOutput, RUMClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface DeleteRumMetricsDestinationCommandOutput extends DeleteRumMetri
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteRumMetricsDestinationCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param DeleteRumMetricsDestinationCommandInput - {@link DeleteRumMetricsDestinationCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface DeleteRumMetricsDestinationCommandOutput extends DeleteRumMetri
|
|
|
60
62
|
* @throws {@link ValidationException} (client fault)
|
|
61
63
|
* <p>One of the arguments for the request is not valid.</p>
|
|
62
64
|
*
|
|
65
|
+
* @throws {@link RUMServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from RUM service.</p>
|
|
63
67
|
*
|
|
64
68
|
*/
|
|
65
69
|
export declare class DeleteRumMetricsDestinationCommand extends $Command<DeleteRumMetricsDestinationCommandInput, DeleteRumMetricsDestinationCommandOutput, RUMClientResolvedConfig> {
|
|
@@ -31,6 +31,48 @@ export interface GetAppMonitorCommandOutput extends GetAppMonitorResponse, __Met
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetAppMonitorCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetAppMonitorResponse
|
|
35
|
+
* // AppMonitor: { // AppMonitor
|
|
36
|
+
* // Name: "STRING_VALUE",
|
|
37
|
+
* // Domain: "STRING_VALUE",
|
|
38
|
+
* // Id: "STRING_VALUE",
|
|
39
|
+
* // Created: "STRING_VALUE",
|
|
40
|
+
* // LastModified: "STRING_VALUE",
|
|
41
|
+
* // Tags: { // TagMap
|
|
42
|
+
* // "<keys>": "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // State: "STRING_VALUE",
|
|
45
|
+
* // AppMonitorConfiguration: { // AppMonitorConfiguration
|
|
46
|
+
* // IdentityPoolId: "STRING_VALUE",
|
|
47
|
+
* // ExcludedPages: [ // Pages
|
|
48
|
+
* // "STRING_VALUE",
|
|
49
|
+
* // ],
|
|
50
|
+
* // IncludedPages: [
|
|
51
|
+
* // "STRING_VALUE",
|
|
52
|
+
* // ],
|
|
53
|
+
* // FavoritePages: [ // FavoritePages
|
|
54
|
+
* // "STRING_VALUE",
|
|
55
|
+
* // ],
|
|
56
|
+
* // SessionSampleRate: Number("double"),
|
|
57
|
+
* // GuestRoleArn: "STRING_VALUE",
|
|
58
|
+
* // AllowCookies: true || false,
|
|
59
|
+
* // Telemetries: [ // Telemetries
|
|
60
|
+
* // "STRING_VALUE",
|
|
61
|
+
* // ],
|
|
62
|
+
* // EnableXRay: true || false,
|
|
63
|
+
* // },
|
|
64
|
+
* // DataStorage: { // DataStorage
|
|
65
|
+
* // CwLog: { // CwLog
|
|
66
|
+
* // CwLogEnabled: true || false,
|
|
67
|
+
* // CwLogGroup: "STRING_VALUE",
|
|
68
|
+
* // },
|
|
69
|
+
* // },
|
|
70
|
+
* // CustomEvents: { // CustomEvents
|
|
71
|
+
* // Status: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // },
|
|
74
|
+
* // };
|
|
75
|
+
*
|
|
34
76
|
* ```
|
|
35
77
|
*
|
|
36
78
|
* @param GetAppMonitorCommandInput - {@link GetAppMonitorCommandInput}
|
|
@@ -54,6 +96,8 @@ export interface GetAppMonitorCommandOutput extends GetAppMonitorResponse, __Met
|
|
|
54
96
|
* @throws {@link ValidationException} (client fault)
|
|
55
97
|
* <p>One of the arguments for the request is not valid.</p>
|
|
56
98
|
*
|
|
99
|
+
* @throws {@link RUMServiceException}
|
|
100
|
+
* <p>Base exception class for all service exceptions from RUM service.</p>
|
|
57
101
|
*
|
|
58
102
|
*/
|
|
59
103
|
export declare class GetAppMonitorCommand extends $Command<GetAppMonitorCommandInput, GetAppMonitorCommandOutput, RUMClientResolvedConfig> {
|
|
@@ -46,6 +46,13 @@ export interface GetAppMonitorDataCommandOutput extends GetAppMonitorDataRespons
|
|
|
46
46
|
* };
|
|
47
47
|
* const command = new GetAppMonitorDataCommand(input);
|
|
48
48
|
* const response = await client.send(command);
|
|
49
|
+
* // { // GetAppMonitorDataResponse
|
|
50
|
+
* // Events: [ // EventDataList
|
|
51
|
+
* // "STRING_VALUE",
|
|
52
|
+
* // ],
|
|
53
|
+
* // NextToken: "STRING_VALUE",
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
49
56
|
* ```
|
|
50
57
|
*
|
|
51
58
|
* @param GetAppMonitorDataCommandInput - {@link GetAppMonitorDataCommandInput}
|
|
@@ -69,6 +76,8 @@ export interface GetAppMonitorDataCommandOutput extends GetAppMonitorDataRespons
|
|
|
69
76
|
* @throws {@link ValidationException} (client fault)
|
|
70
77
|
* <p>One of the arguments for the request is not valid.</p>
|
|
71
78
|
*
|
|
79
|
+
* @throws {@link RUMServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from RUM service.</p>
|
|
72
81
|
*
|
|
73
82
|
*/
|
|
74
83
|
export declare class GetAppMonitorDataCommand extends $Command<GetAppMonitorDataCommandInput, GetAppMonitorDataCommandOutput, RUMClientResolvedConfig> {
|
|
@@ -32,6 +32,19 @@ export interface ListAppMonitorsCommandOutput extends ListAppMonitorsResponse, _
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListAppMonitorsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListAppMonitorsResponse
|
|
36
|
+
* // NextToken: "STRING_VALUE",
|
|
37
|
+
* // AppMonitorSummaries: [ // AppMonitorSummaryList
|
|
38
|
+
* // { // AppMonitorSummary
|
|
39
|
+
* // Name: "STRING_VALUE",
|
|
40
|
+
* // Id: "STRING_VALUE",
|
|
41
|
+
* // Created: "STRING_VALUE",
|
|
42
|
+
* // LastModified: "STRING_VALUE",
|
|
43
|
+
* // State: "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
35
48
|
* ```
|
|
36
49
|
*
|
|
37
50
|
* @param ListAppMonitorsCommandInput - {@link ListAppMonitorsCommandInput}
|
|
@@ -52,6 +65,8 @@ export interface ListAppMonitorsCommandOutput extends ListAppMonitorsResponse, _
|
|
|
52
65
|
* @throws {@link ValidationException} (client fault)
|
|
53
66
|
* <p>One of the arguments for the request is not valid.</p>
|
|
54
67
|
*
|
|
68
|
+
* @throws {@link RUMServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from RUM service.</p>
|
|
55
70
|
*
|
|
56
71
|
*/
|
|
57
72
|
export declare class ListAppMonitorsCommand extends $Command<ListAppMonitorsCommandInput, ListAppMonitorsCommandOutput, RUMClientResolvedConfig> {
|
|
@@ -35,6 +35,17 @@ export interface ListRumMetricsDestinationsCommandOutput extends ListRumMetricsD
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new ListRumMetricsDestinationsCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // ListRumMetricsDestinationsResponse
|
|
39
|
+
* // Destinations: [ // MetricDestinationSummaryList
|
|
40
|
+
* // { // MetricDestinationSummary
|
|
41
|
+
* // Destination: "STRING_VALUE",
|
|
42
|
+
* // DestinationArn: "STRING_VALUE",
|
|
43
|
+
* // IamRoleArn: "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // NextToken: "STRING_VALUE",
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
38
49
|
* ```
|
|
39
50
|
*
|
|
40
51
|
* @param ListRumMetricsDestinationsCommandInput - {@link ListRumMetricsDestinationsCommandInput}
|
|
@@ -55,6 +66,8 @@ export interface ListRumMetricsDestinationsCommandOutput extends ListRumMetricsD
|
|
|
55
66
|
* @throws {@link ValidationException} (client fault)
|
|
56
67
|
* <p>One of the arguments for the request is not valid.</p>
|
|
57
68
|
*
|
|
69
|
+
* @throws {@link RUMServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from RUM service.</p>
|
|
58
71
|
*
|
|
59
72
|
*/
|
|
60
73
|
export declare class ListRumMetricsDestinationsCommand extends $Command<ListRumMetricsDestinationsCommandInput, ListRumMetricsDestinationsCommandOutput, RUMClientResolvedConfig> {
|
|
@@ -31,6 +31,13 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // ResourceArn: "STRING_VALUE", // required
|
|
36
|
+
* // Tags: { // TagMap // required
|
|
37
|
+
* // "<keys>": "STRING_VALUE",
|
|
38
|
+
* // },
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
34
41
|
* ```
|
|
35
42
|
*
|
|
36
43
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -48,6 +55,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
48
55
|
* @throws {@link ValidationException} (client fault)
|
|
49
56
|
* <p>One of the arguments for the request is not valid.</p>
|
|
50
57
|
*
|
|
58
|
+
* @throws {@link RUMServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from RUM service.</p>
|
|
51
60
|
*
|
|
52
61
|
*/
|
|
53
62
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, RUMClientResolvedConfig> {
|
|
@@ -53,6 +53,8 @@ export interface PutRumEventsCommandOutput extends PutRumEventsResponse, __Metad
|
|
|
53
53
|
* };
|
|
54
54
|
* const command = new PutRumEventsCommand(input);
|
|
55
55
|
* const response = await client.send(command);
|
|
56
|
+
* // {};
|
|
57
|
+
*
|
|
56
58
|
* ```
|
|
57
59
|
*
|
|
58
60
|
* @param PutRumEventsCommandInput - {@link PutRumEventsCommandInput}
|
|
@@ -76,6 +78,8 @@ export interface PutRumEventsCommandOutput extends PutRumEventsResponse, __Metad
|
|
|
76
78
|
* @throws {@link ValidationException} (client fault)
|
|
77
79
|
* <p>One of the arguments for the request is not valid.</p>
|
|
78
80
|
*
|
|
81
|
+
* @throws {@link RUMServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from RUM service.</p>
|
|
79
83
|
*
|
|
80
84
|
*/
|
|
81
85
|
export declare class PutRumEventsCommand extends $Command<PutRumEventsCommandInput, PutRumEventsCommandOutput, RUMClientResolvedConfig> {
|
|
@@ -36,6 +36,8 @@ export interface PutRumMetricsDestinationCommandOutput extends PutRumMetricsDest
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new PutRumMetricsDestinationCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // {};
|
|
40
|
+
*
|
|
39
41
|
* ```
|
|
40
42
|
*
|
|
41
43
|
* @param PutRumMetricsDestinationCommandInput - {@link PutRumMetricsDestinationCommandInput}
|
|
@@ -62,6 +64,8 @@ export interface PutRumMetricsDestinationCommandOutput extends PutRumMetricsDest
|
|
|
62
64
|
* @throws {@link ValidationException} (client fault)
|
|
63
65
|
* <p>One of the arguments for the request is not valid.</p>
|
|
64
66
|
*
|
|
67
|
+
* @throws {@link RUMServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from RUM service.</p>
|
|
65
69
|
*
|
|
66
70
|
*/
|
|
67
71
|
export declare class PutRumMetricsDestinationCommand extends $Command<PutRumMetricsDestinationCommandInput, PutRumMetricsDestinationCommandOutput, RUMClientResolvedConfig> {
|
|
@@ -47,6 +47,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
47
47
|
* };
|
|
48
48
|
* const command = new TagResourceCommand(input);
|
|
49
49
|
* const response = await client.send(command);
|
|
50
|
+
* // {};
|
|
51
|
+
*
|
|
50
52
|
* ```
|
|
51
53
|
*
|
|
52
54
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -64,6 +66,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
64
66
|
* @throws {@link ValidationException} (client fault)
|
|
65
67
|
* <p>One of the arguments for the request is not valid.</p>
|
|
66
68
|
*
|
|
69
|
+
* @throws {@link RUMServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from RUM service.</p>
|
|
67
71
|
*
|
|
68
72
|
*/
|
|
69
73
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, RUMClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
51
53
|
* @throws {@link ValidationException} (client fault)
|
|
52
54
|
* <p>One of the arguments for the request is not valid.</p>
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link RUMServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from RUM service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, RUMClientResolvedConfig> {
|
|
@@ -65,6 +65,8 @@ export interface UpdateAppMonitorCommandOutput extends UpdateAppMonitorResponse,
|
|
|
65
65
|
* };
|
|
66
66
|
* const command = new UpdateAppMonitorCommand(input);
|
|
67
67
|
* const response = await client.send(command);
|
|
68
|
+
* // {};
|
|
69
|
+
*
|
|
68
70
|
* ```
|
|
69
71
|
*
|
|
70
72
|
* @param UpdateAppMonitorCommandInput - {@link UpdateAppMonitorCommandInput}
|
|
@@ -91,6 +93,8 @@ export interface UpdateAppMonitorCommandOutput extends UpdateAppMonitorResponse,
|
|
|
91
93
|
* @throws {@link ValidationException} (client fault)
|
|
92
94
|
* <p>One of the arguments for the request is not valid.</p>
|
|
93
95
|
*
|
|
96
|
+
* @throws {@link RUMServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from RUM service.</p>
|
|
94
98
|
*
|
|
95
99
|
*/
|
|
96
100
|
export declare class UpdateAppMonitorCommand extends $Command<UpdateAppMonitorCommandInput, UpdateAppMonitorCommandOutput, RUMClientResolvedConfig> {
|
|
@@ -45,6 +45,8 @@ export interface UpdateRumMetricDefinitionCommandOutput extends UpdateRumMetricD
|
|
|
45
45
|
* };
|
|
46
46
|
* const command = new UpdateRumMetricDefinitionCommand(input);
|
|
47
47
|
* const response = await client.send(command);
|
|
48
|
+
* // {};
|
|
49
|
+
*
|
|
48
50
|
* ```
|
|
49
51
|
*
|
|
50
52
|
* @param UpdateRumMetricDefinitionCommandInput - {@link UpdateRumMetricDefinitionCommandInput}
|
|
@@ -74,6 +76,8 @@ export interface UpdateRumMetricDefinitionCommandOutput extends UpdateRumMetricD
|
|
|
74
76
|
* @throws {@link ValidationException} (client fault)
|
|
75
77
|
* <p>One of the arguments for the request is not valid.</p>
|
|
76
78
|
*
|
|
79
|
+
* @throws {@link RUMServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from RUM service.</p>
|
|
77
81
|
*
|
|
78
82
|
*/
|
|
79
83
|
export declare class UpdateRumMetricDefinitionCommand extends $Command<UpdateRumMetricDefinitionCommandInput, UpdateRumMetricDefinitionCommandOutput, RUMClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rum",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rum Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.327.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.327.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.327.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.327.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.327.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.327.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.327.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.310.0",
|