@aws-sdk/client-rum 3.289.0 → 3.292.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 +22 -0
- package/dist-types/commands/BatchDeleteRumMetricDefinitionsCommand.d.ts +19 -0
- package/dist-types/commands/BatchGetRumMetricDefinitionsCommand.d.ts +13 -0
- package/dist-types/commands/CreateAppMonitorCommand.d.ts +22 -0
- package/dist-types/commands/DeleteAppMonitorCommand.d.ts +19 -0
- package/dist-types/commands/DeleteRumMetricsDestinationCommand.d.ts +19 -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 +13 -0
- package/dist-types/commands/ListRumMetricsDestinationsCommand.d.ts +13 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +10 -0
- package/dist-types/commands/PutRumEventsCommand.d.ts +16 -0
- package/dist-types/commands/PutRumMetricsDestinationCommand.d.ts +19 -0
- package/dist-types/commands/TagResourceCommand.d.ts +10 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +10 -0
- package/dist-types/commands/UpdateAppMonitorCommand.d.ts +19 -0
- package/dist-types/commands/UpdateRumMetricDefinitionCommand.d.ts +22 -0
- package/package.json +35 -40
|
@@ -68,6 +68,28 @@ export interface BatchCreateRumMetricDefinitionsCommandOutput extends BatchCreat
|
|
|
68
68
|
* @see {@link BatchCreateRumMetricDefinitionsCommandOutput} for command's `response` shape.
|
|
69
69
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
70
70
|
*
|
|
71
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
72
|
+
* <p>You don't have sufficient permissions to perform this action.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ConflictException} (client fault)
|
|
75
|
+
* <p>This operation attempted to create a resource that already exists.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link InternalServerException} (server fault)
|
|
78
|
+
* <p>Internal service exception.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
81
|
+
* <p>Resource not found.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
84
|
+
* <p>This request exceeds a service quota.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
87
|
+
* <p>The request was throttled because of quota limits.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link ValidationException} (client fault)
|
|
90
|
+
* <p>One of the arguments for the request is not valid.</p>
|
|
91
|
+
*
|
|
92
|
+
*
|
|
71
93
|
*/
|
|
72
94
|
export declare class BatchCreateRumMetricDefinitionsCommand extends $Command<BatchCreateRumMetricDefinitionsCommandInput, BatchCreateRumMetricDefinitionsCommandOutput, RUMClientResolvedConfig> {
|
|
73
95
|
readonly input: BatchCreateRumMetricDefinitionsCommandInput;
|
|
@@ -34,6 +34,25 @@ export interface BatchDeleteRumMetricDefinitionsCommandOutput extends BatchDelet
|
|
|
34
34
|
* @see {@link BatchDeleteRumMetricDefinitionsCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
38
|
+
* <p>You don't have sufficient permissions to perform this action.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ConflictException} (client fault)
|
|
41
|
+
* <p>This operation attempted to create a resource that already exists.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalServerException} (server fault)
|
|
44
|
+
* <p>Internal service exception.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
47
|
+
* <p>Resource not found.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
50
|
+
* <p>The request was throttled because of quota limits.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ValidationException} (client fault)
|
|
53
|
+
* <p>One of the arguments for the request is not valid.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
37
56
|
*/
|
|
38
57
|
export declare class BatchDeleteRumMetricDefinitionsCommand extends $Command<BatchDeleteRumMetricDefinitionsCommandInput, BatchDeleteRumMetricDefinitionsCommandOutput, RUMClientResolvedConfig> {
|
|
39
58
|
readonly input: BatchDeleteRumMetricDefinitionsCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface BatchGetRumMetricDefinitionsCommandOutput extends BatchGetRumMe
|
|
|
29
29
|
* @see {@link BatchGetRumMetricDefinitionsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You don't have sufficient permissions to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>Internal service exception.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>Resource not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* <p>One of the arguments for the request is not valid.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class BatchGetRumMetricDefinitionsCommand extends $Command<BatchGetRumMetricDefinitionsCommandInput, BatchGetRumMetricDefinitionsCommandOutput, RUMClientResolvedConfig> {
|
|
34
47
|
readonly input: BatchGetRumMetricDefinitionsCommandInput;
|
|
@@ -37,6 +37,28 @@ export interface CreateAppMonitorCommandOutput extends CreateAppMonitorResponse,
|
|
|
37
37
|
* @see {@link CreateAppMonitorCommandOutput} for command's `response` shape.
|
|
38
38
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
39
39
|
*
|
|
40
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
41
|
+
* <p>You don't have sufficient permissions to perform this action.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ConflictException} (client fault)
|
|
44
|
+
* <p>This operation attempted to create a resource that already exists.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InternalServerException} (server fault)
|
|
47
|
+
* <p>Internal service exception.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
50
|
+
* <p>Resource not found.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
53
|
+
* <p>This request exceeds a service quota.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
56
|
+
* <p>The request was throttled because of quota limits.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ValidationException} (client fault)
|
|
59
|
+
* <p>One of the arguments for the request is not valid.</p>
|
|
60
|
+
*
|
|
61
|
+
*
|
|
40
62
|
*/
|
|
41
63
|
export declare class CreateAppMonitorCommand extends $Command<CreateAppMonitorCommandInput, CreateAppMonitorCommandOutput, RUMClientResolvedConfig> {
|
|
42
64
|
readonly input: CreateAppMonitorCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface DeleteAppMonitorCommandOutput extends DeleteAppMonitorResponse,
|
|
|
29
29
|
* @see {@link DeleteAppMonitorCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You don't have sufficient permissions to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>This operation attempted to create a resource that already exists.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>Internal service exception.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>Resource not found.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>The request was throttled because of quota limits.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>One of the arguments for the request is not valid.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class DeleteAppMonitorCommand extends $Command<DeleteAppMonitorCommandInput, DeleteAppMonitorCommandOutput, RUMClientResolvedConfig> {
|
|
34
53
|
readonly input: DeleteAppMonitorCommandInput;
|
|
@@ -30,6 +30,25 @@ export interface DeleteRumMetricsDestinationCommandOutput extends DeleteRumMetri
|
|
|
30
30
|
* @see {@link DeleteRumMetricsDestinationCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You don't have sufficient permissions to perform this action.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConflictException} (client fault)
|
|
37
|
+
* <p>This operation attempted to create a resource that already exists.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p>Internal service exception.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>Resource not found.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
46
|
+
* <p>The request was throttled because of quota limits.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ValidationException} (client fault)
|
|
49
|
+
* <p>One of the arguments for the request is not valid.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
33
52
|
*/
|
|
34
53
|
export declare class DeleteRumMetricsDestinationCommand extends $Command<DeleteRumMetricsDestinationCommandInput, DeleteRumMetricsDestinationCommandOutput, RUMClientResolvedConfig> {
|
|
35
54
|
readonly input: DeleteRumMetricsDestinationCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetAppMonitorCommandOutput extends GetAppMonitorResponse, __Met
|
|
|
29
29
|
* @see {@link GetAppMonitorCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You don't have sufficient permissions to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>Internal service exception.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>Resource not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>The request was throttled because of quota limits.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>One of the arguments for the request is not valid.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetAppMonitorCommand extends $Command<GetAppMonitorCommandInput, GetAppMonitorCommandOutput, RUMClientResolvedConfig> {
|
|
34
50
|
readonly input: GetAppMonitorCommandInput;
|
|
@@ -30,6 +30,22 @@ export interface GetAppMonitorDataCommandOutput extends GetAppMonitorDataRespons
|
|
|
30
30
|
* @see {@link GetAppMonitorDataCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You don't have sufficient permissions to perform this action.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>Internal service exception.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>Resource not found.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
43
|
+
* <p>The request was throttled because of quota limits.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ValidationException} (client fault)
|
|
46
|
+
* <p>One of the arguments for the request is not valid.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
33
49
|
*/
|
|
34
50
|
export declare class GetAppMonitorDataCommand extends $Command<GetAppMonitorDataCommandInput, GetAppMonitorDataCommandOutput, RUMClientResolvedConfig> {
|
|
35
51
|
readonly input: GetAppMonitorDataCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface ListAppMonitorsCommandOutput extends ListAppMonitorsResponse, _
|
|
|
29
29
|
* @see {@link ListAppMonitorsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You don't have sufficient permissions to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>Internal service exception.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
39
|
+
* <p>The request was throttled because of quota limits.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* <p>One of the arguments for the request is not valid.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class ListAppMonitorsCommand extends $Command<ListAppMonitorsCommandInput, ListAppMonitorsCommandOutput, RUMClientResolvedConfig> {
|
|
34
47
|
readonly input: ListAppMonitorsCommandInput;
|
|
@@ -31,6 +31,19 @@ export interface ListRumMetricsDestinationsCommandOutput extends ListRumMetricsD
|
|
|
31
31
|
* @see {@link ListRumMetricsDestinationsCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You don't have sufficient permissions to perform this action.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalServerException} (server fault)
|
|
38
|
+
* <p>Internal service exception.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
41
|
+
* <p>Resource not found.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ValidationException} (client fault)
|
|
44
|
+
* <p>One of the arguments for the request is not valid.</p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
34
47
|
*/
|
|
35
48
|
export declare class ListRumMetricsDestinationsCommand extends $Command<ListRumMetricsDestinationsCommandInput, ListRumMetricsDestinationsCommandOutput, RUMClientResolvedConfig> {
|
|
36
49
|
readonly input: ListRumMetricsDestinationsCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
29
29
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>Internal service exception.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
36
|
+
* <p>Resource not found.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ValidationException} (client fault)
|
|
39
|
+
* <p>One of the arguments for the request is not valid.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, RUMClientResolvedConfig> {
|
|
34
44
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -32,6 +32,22 @@ export interface PutRumEventsCommandOutput extends PutRumEventsResponse, __Metad
|
|
|
32
32
|
* @see {@link PutRumEventsCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>You don't have sufficient permissions to perform this action.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>Internal service exception.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>Resource not found.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>The request was throttled because of quota limits.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>One of the arguments for the request is not valid.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
35
51
|
*/
|
|
36
52
|
export declare class PutRumEventsCommand extends $Command<PutRumEventsCommandInput, PutRumEventsCommandOutput, RUMClientResolvedConfig> {
|
|
37
53
|
readonly input: PutRumEventsCommandInput;
|
|
@@ -31,6 +31,25 @@ export interface PutRumMetricsDestinationCommandOutput extends PutRumMetricsDest
|
|
|
31
31
|
* @see {@link PutRumMetricsDestinationCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You don't have sufficient permissions to perform this action.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ConflictException} (client fault)
|
|
38
|
+
* <p>This operation attempted to create a resource that already exists.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerException} (server fault)
|
|
41
|
+
* <p>Internal service exception.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
44
|
+
* <p>Resource not found.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
47
|
+
* <p>The request was throttled because of quota limits.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ValidationException} (client fault)
|
|
50
|
+
* <p>One of the arguments for the request is not valid.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
34
53
|
*/
|
|
35
54
|
export declare class PutRumMetricsDestinationCommand extends $Command<PutRumMetricsDestinationCommandInput, PutRumMetricsDestinationCommandOutput, RUMClientResolvedConfig> {
|
|
36
55
|
readonly input: PutRumMetricsDestinationCommandInput;
|
|
@@ -42,6 +42,16 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
42
42
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
43
43
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
44
44
|
*
|
|
45
|
+
* @throws {@link InternalServerException} (server fault)
|
|
46
|
+
* <p>Internal service exception.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
49
|
+
* <p>Resource not found.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ValidationException} (client fault)
|
|
52
|
+
* <p>One of the arguments for the request is not valid.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
45
55
|
*/
|
|
46
56
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, RUMClientResolvedConfig> {
|
|
47
57
|
readonly input: TagResourceCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
29
29
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>Internal service exception.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
36
|
+
* <p>Resource not found.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ValidationException} (client fault)
|
|
39
|
+
* <p>One of the arguments for the request is not valid.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, RUMClientResolvedConfig> {
|
|
34
44
|
readonly input: UntagResourceCommandInput;
|
|
@@ -39,6 +39,25 @@ export interface UpdateAppMonitorCommandOutput extends UpdateAppMonitorResponse,
|
|
|
39
39
|
* @see {@link UpdateAppMonitorCommandOutput} for command's `response` shape.
|
|
40
40
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
41
41
|
*
|
|
42
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
43
|
+
* <p>You don't have sufficient permissions to perform this action.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ConflictException} (client fault)
|
|
46
|
+
* <p>This operation attempted to create a resource that already exists.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link InternalServerException} (server fault)
|
|
49
|
+
* <p>Internal service exception.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
52
|
+
* <p>Resource not found.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
55
|
+
* <p>The request was throttled because of quota limits.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ValidationException} (client fault)
|
|
58
|
+
* <p>One of the arguments for the request is not valid.</p>
|
|
59
|
+
*
|
|
60
|
+
*
|
|
42
61
|
*/
|
|
43
62
|
export declare class UpdateAppMonitorCommand extends $Command<UpdateAppMonitorCommandInput, UpdateAppMonitorCommandOutput, RUMClientResolvedConfig> {
|
|
44
63
|
readonly input: UpdateAppMonitorCommandInput;
|
|
@@ -30,6 +30,28 @@ export interface UpdateRumMetricDefinitionCommandOutput extends UpdateRumMetricD
|
|
|
30
30
|
* @see {@link UpdateRumMetricDefinitionCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You don't have sufficient permissions to perform this action.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConflictException} (client fault)
|
|
37
|
+
* <p>This operation attempted to create a resource that already exists.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p>Internal service exception.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>Resource not found.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
46
|
+
* <p>This request exceeds a service quota.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
49
|
+
* <p>The request was throttled because of quota limits.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ValidationException} (client fault)
|
|
52
|
+
* <p>One of the arguments for the request is not valid.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
33
55
|
*/
|
|
34
56
|
export declare class UpdateRumMetricDefinitionCommand extends $Command<UpdateRumMetricDefinitionCommandInput, UpdateRumMetricDefinitionCommandOutput, RUMClientResolvedConfig> {
|
|
35
57
|
readonly input: UpdateRumMetricDefinitionCommandInput;
|
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.292.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,55 +20,50 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
45
|
-
"@aws-sdk/util-base64": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
-
"@aws-sdk/util-utf8": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.292.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.292.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.292.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.292.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.292.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.292.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.292.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.292.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.292.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.292.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.292.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.292.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.292.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.292.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.292.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.292.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.292.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.292.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.292.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.292.0",
|
|
43
|
+
"@aws-sdk/types": "3.292.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.292.0",
|
|
45
|
+
"@aws-sdk/util-base64": "3.292.0",
|
|
46
|
+
"@aws-sdk/util-body-length-browser": "3.292.0",
|
|
47
|
+
"@aws-sdk/util-body-length-node": "3.292.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.292.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.292.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.292.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.292.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.292.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.292.0",
|
|
54
|
+
"@aws-sdk/util-utf8": "3.292.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
58
|
+
"@aws-sdk/service-client-documentation-generator": "3.292.0",
|
|
59
59
|
"@tsconfig/node14": "1.0.3",
|
|
60
60
|
"@types/node": "^14.14.31",
|
|
61
61
|
"concurrently": "7.0.0",
|
|
62
62
|
"downlevel-dts": "0.10.1",
|
|
63
63
|
"rimraf": "3.0.2",
|
|
64
|
-
"typedoc": "0.
|
|
64
|
+
"typedoc": "0.23.23",
|
|
65
65
|
"typescript": "~4.6.2"
|
|
66
66
|
},
|
|
67
|
-
"overrides": {
|
|
68
|
-
"typedoc": {
|
|
69
|
-
"typescript": "~4.6.2"
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
67
|
"engines": {
|
|
73
68
|
"node": ">=14.0.0"
|
|
74
69
|
},
|