@aws-sdk/client-rum 3.1087.0 → 3.1088.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/index.js +1 -1
- package/dist-types/ts3.4/RUM.d.ts +65 -68
- package/dist-types/ts3.4/RUMClient.d.ts +14 -24
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +10 -13
- package/dist-types/ts3.4/commandBuilder.d.ts +8 -18
- package/dist-types/ts3.4/commands/BatchCreateRumMetricDefinitionsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchDeleteRumMetricDefinitionsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchGetRumMetricDefinitionsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateAppMonitorCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteAppMonitorCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteRumMetricsDestinationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetAppMonitorCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetAppMonitorDataCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListAppMonitorsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListRumMetricsDestinationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutRumEventsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/PutRumMetricsDestinationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateAppMonitorCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateRumMetricDefinitionCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +4 -8
- package/dist-types/ts3.4/models/errors.d.ts +10 -39
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateAppMonitorRequest,
|
|
4
|
-
CreateAppMonitorResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateAppMonitorRequest, CreateAppMonitorResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateAppMonitorCommandInput extends CreateAppMonitorRequest {}
|
|
8
|
-
export interface CreateAppMonitorCommandOutput
|
|
9
|
-
extends CreateAppMonitorResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateAppMonitorCommandOutput extends CreateAppMonitorResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateAppMonitorCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateAppMonitorCommandInput
|
|
8
|
+
input: CreateAppMonitorCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateAppMonitorCommandInput,
|
|
16
11
|
CreateAppMonitorCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateAppMonitorCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateAppMonitorCommandInput
|
|
17
|
+
input: CreateAppMonitorCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateAppMonitorCommandInput,
|
|
25
20
|
CreateAppMonitorCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteAppMonitorRequest,
|
|
4
|
-
DeleteAppMonitorResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteAppMonitorRequest, DeleteAppMonitorResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteAppMonitorCommandInput extends DeleteAppMonitorRequest {}
|
|
8
|
-
export interface DeleteAppMonitorCommandOutput
|
|
9
|
-
extends DeleteAppMonitorResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteAppMonitorCommandOutput extends DeleteAppMonitorResponse, __MetadataBearer {}
|
|
11
6
|
declare const DeleteAppMonitorCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteAppMonitorCommandInput
|
|
8
|
+
input: DeleteAppMonitorCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteAppMonitorCommandInput,
|
|
16
11
|
DeleteAppMonitorCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteAppMonitorCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteAppMonitorCommandInput
|
|
17
|
+
input: DeleteAppMonitorCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteAppMonitorCommandInput,
|
|
25
20
|
DeleteAppMonitorCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteResourcePolicyRequest,
|
|
4
|
-
DeleteResourcePolicyResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteResourcePolicyCommandInput
|
|
8
|
-
extends DeleteResourcePolicyRequest {}
|
|
4
|
+
export interface DeleteResourcePolicyCommandInput extends DeleteResourcePolicyRequest {}
|
|
9
5
|
export interface DeleteResourcePolicyCommandOutput
|
|
10
|
-
extends DeleteResourcePolicyResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteResourcePolicyResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteResourcePolicyCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteResourcePolicyCommandInput
|
|
9
|
+
input: DeleteResourcePolicyCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteResourcePolicyCommandInput,
|
|
17
12
|
DeleteResourcePolicyCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteResourcePolicyCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteResourcePolicyCommandInput
|
|
18
|
+
input: DeleteResourcePolicyCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteResourcePolicyCommandInput,
|
|
26
21
|
DeleteResourcePolicyCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeleteRumMetricsDestinationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteRumMetricsDestinationCommandInput
|
|
8
|
-
extends DeleteRumMetricsDestinationRequest {}
|
|
7
|
+
export interface DeleteRumMetricsDestinationCommandInput extends DeleteRumMetricsDestinationRequest {}
|
|
9
8
|
export interface DeleteRumMetricsDestinationCommandOutput
|
|
10
|
-
extends DeleteRumMetricsDestinationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeleteRumMetricsDestinationResponse, __MetadataBearer {}
|
|
12
10
|
declare const DeleteRumMetricsDestinationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeleteRumMetricsDestinationCommandInput
|
|
12
|
+
input: DeleteRumMetricsDestinationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeleteRumMetricsDestinationCommandInput,
|
|
17
15
|
DeleteRumMetricsDestinationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeleteRumMetricsDestinationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeleteRumMetricsDestinationCommandInput
|
|
21
|
+
input: DeleteRumMetricsDestinationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeleteRumMetricsDestinationCommandInput,
|
|
26
24
|
DeleteRumMetricsDestinationCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetAppMonitorRequest,
|
|
4
|
-
GetAppMonitorResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetAppMonitorRequest, GetAppMonitorResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetAppMonitorCommandInput extends GetAppMonitorRequest {}
|
|
8
|
-
export interface GetAppMonitorCommandOutput
|
|
9
|
-
extends GetAppMonitorResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetAppMonitorCommandOutput extends GetAppMonitorResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetAppMonitorCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetAppMonitorCommandInput
|
|
8
|
+
input: GetAppMonitorCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetAppMonitorCommandInput,
|
|
16
11
|
GetAppMonitorCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetAppMonitorCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetAppMonitorCommandInput
|
|
17
|
+
input: GetAppMonitorCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetAppMonitorCommandInput,
|
|
25
20
|
GetAppMonitorCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetAppMonitorDataRequest,
|
|
4
|
-
GetAppMonitorDataResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetAppMonitorDataRequest, GetAppMonitorDataResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetAppMonitorDataCommandInput
|
|
8
|
-
extends GetAppMonitorDataRequest {}
|
|
4
|
+
export interface GetAppMonitorDataCommandInput extends GetAppMonitorDataRequest {}
|
|
9
5
|
export interface GetAppMonitorDataCommandOutput
|
|
10
|
-
extends GetAppMonitorDataResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetAppMonitorDataResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetAppMonitorDataCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetAppMonitorDataCommandInput
|
|
9
|
+
input: GetAppMonitorDataCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetAppMonitorDataCommandInput,
|
|
17
12
|
GetAppMonitorDataCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetAppMonitorDataCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetAppMonitorDataCommandInput
|
|
18
|
+
input: GetAppMonitorDataCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetAppMonitorDataCommandInput,
|
|
26
21
|
GetAppMonitorDataCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetResourcePolicyRequest,
|
|
4
|
-
GetResourcePolicyResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetResourcePolicyCommandInput
|
|
8
|
-
extends GetResourcePolicyRequest {}
|
|
4
|
+
export interface GetResourcePolicyCommandInput extends GetResourcePolicyRequest {}
|
|
9
5
|
export interface GetResourcePolicyCommandOutput
|
|
10
|
-
extends GetResourcePolicyResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetResourcePolicyResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetResourcePolicyCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetResourcePolicyCommandInput
|
|
9
|
+
input: GetResourcePolicyCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetResourcePolicyCommandInput,
|
|
17
12
|
GetResourcePolicyCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetResourcePolicyCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetResourcePolicyCommandInput
|
|
18
|
+
input: GetResourcePolicyCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetResourcePolicyCommandInput,
|
|
26
21
|
GetResourcePolicyCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListAppMonitorsRequest,
|
|
4
|
-
ListAppMonitorsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListAppMonitorsRequest, ListAppMonitorsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListAppMonitorsCommandInput extends ListAppMonitorsRequest {}
|
|
8
|
-
export interface ListAppMonitorsCommandOutput
|
|
9
|
-
extends ListAppMonitorsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListAppMonitorsCommandOutput extends ListAppMonitorsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListAppMonitorsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListAppMonitorsCommandInput
|
|
8
|
+
input: ListAppMonitorsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListAppMonitorsCommandInput,
|
|
16
11
|
ListAppMonitorsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListRumMetricsDestinationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListRumMetricsDestinationsCommandInput
|
|
8
|
-
extends ListRumMetricsDestinationsRequest {}
|
|
7
|
+
export interface ListRumMetricsDestinationsCommandInput extends ListRumMetricsDestinationsRequest {}
|
|
9
8
|
export interface ListRumMetricsDestinationsCommandOutput
|
|
10
|
-
extends ListRumMetricsDestinationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListRumMetricsDestinationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListRumMetricsDestinationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListRumMetricsDestinationsCommandInput
|
|
12
|
+
input: ListRumMetricsDestinationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListRumMetricsDestinationsCommandInput,
|
|
17
15
|
ListRumMetricsDestinationsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListRumMetricsDestinationsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListRumMetricsDestinationsCommandInput
|
|
21
|
+
input: ListRumMetricsDestinationsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListRumMetricsDestinationsCommandInput,
|
|
26
24
|
ListRumMetricsDestinationsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
PutResourcePolicyRequest,
|
|
4
|
-
PutResourcePolicyResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutResourcePolicyCommandInput
|
|
8
|
-
extends PutResourcePolicyRequest {}
|
|
4
|
+
export interface PutResourcePolicyCommandInput extends PutResourcePolicyRequest {}
|
|
9
5
|
export interface PutResourcePolicyCommandOutput
|
|
10
|
-
extends PutResourcePolicyResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends PutResourcePolicyResponse, __MetadataBearer {}
|
|
12
7
|
declare const PutResourcePolicyCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: PutResourcePolicyCommandInput
|
|
9
|
+
input: PutResourcePolicyCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
PutResourcePolicyCommandInput,
|
|
17
12
|
PutResourcePolicyCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const PutResourcePolicyCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: PutResourcePolicyCommandInput
|
|
18
|
+
input: PutResourcePolicyCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
PutResourcePolicyCommandInput,
|
|
26
21
|
PutResourcePolicyCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { PutRumEventsRequest, PutRumEventsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface PutRumEventsCommandInput extends PutRumEventsRequest {}
|
|
5
|
-
export interface PutRumEventsCommandOutput
|
|
6
|
-
extends PutRumEventsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface PutRumEventsCommandOutput extends PutRumEventsResponse, __MetadataBearer {}
|
|
8
6
|
declare const PutRumEventsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: PutRumEventsCommandInput
|
|
8
|
+
input: PutRumEventsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
PutRumEventsCommandInput,
|
|
13
11
|
PutRumEventsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const PutRumEventsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: PutRumEventsCommandInput
|
|
17
|
+
input: PutRumEventsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
PutRumEventsCommandInput,
|
|
22
20
|
PutRumEventsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
PutRumMetricsDestinationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutRumMetricsDestinationCommandInput
|
|
8
|
-
extends PutRumMetricsDestinationRequest {}
|
|
7
|
+
export interface PutRumMetricsDestinationCommandInput extends PutRumMetricsDestinationRequest {}
|
|
9
8
|
export interface PutRumMetricsDestinationCommandOutput
|
|
10
|
-
extends PutRumMetricsDestinationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends PutRumMetricsDestinationResponse, __MetadataBearer {}
|
|
12
10
|
declare const PutRumMetricsDestinationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: PutRumMetricsDestinationCommandInput
|
|
12
|
+
input: PutRumMetricsDestinationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
PutRumMetricsDestinationCommandInput,
|
|
17
15
|
PutRumMetricsDestinationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const PutRumMetricsDestinationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: PutRumMetricsDestinationCommandInput
|
|
21
|
+
input: PutRumMetricsDestinationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
PutRumMetricsDestinationCommandInput,
|
|
26
24
|
PutRumMetricsDestinationCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateAppMonitorRequest,
|
|
4
|
-
UpdateAppMonitorResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateAppMonitorRequest, UpdateAppMonitorResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UpdateAppMonitorCommandInput extends UpdateAppMonitorRequest {}
|
|
8
|
-
export interface UpdateAppMonitorCommandOutput
|
|
9
|
-
extends UpdateAppMonitorResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateAppMonitorCommandOutput extends UpdateAppMonitorResponse, __MetadataBearer {}
|
|
11
6
|
declare const UpdateAppMonitorCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UpdateAppMonitorCommandInput
|
|
8
|
+
input: UpdateAppMonitorCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UpdateAppMonitorCommandInput,
|
|
16
11
|
UpdateAppMonitorCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UpdateAppMonitorCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UpdateAppMonitorCommandInput
|
|
17
|
+
input: UpdateAppMonitorCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UpdateAppMonitorCommandInput,
|
|
25
20
|
UpdateAppMonitorCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdateRumMetricDefinitionResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateRumMetricDefinitionCommandInput
|
|
8
|
-
extends UpdateRumMetricDefinitionRequest {}
|
|
7
|
+
export interface UpdateRumMetricDefinitionCommandInput extends UpdateRumMetricDefinitionRequest {}
|
|
9
8
|
export interface UpdateRumMetricDefinitionCommandOutput
|
|
10
|
-
extends UpdateRumMetricDefinitionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdateRumMetricDefinitionResponse, __MetadataBearer {}
|
|
12
10
|
declare const UpdateRumMetricDefinitionCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdateRumMetricDefinitionCommandInput
|
|
12
|
+
input: UpdateRumMetricDefinitionCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdateRumMetricDefinitionCommandInput,
|
|
17
15
|
UpdateRumMetricDefinitionCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const UpdateRumMetricDefinitionCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: UpdateRumMetricDefinitionCommandInput
|
|
21
|
+
input: UpdateRumMetricDefinitionCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
UpdateRumMetricDefinitionCommandInput,
|
|
26
24
|
UpdateRumMetricDefinitionCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface RUMExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -8,21 +8,18 @@ export declare const CustomEventsStatus: {
|
|
|
8
8
|
readonly DISABLED: "DISABLED";
|
|
9
9
|
readonly ENABLED: "ENABLED";
|
|
10
10
|
};
|
|
11
|
-
export type CustomEventsStatus =
|
|
12
|
-
(typeof CustomEventsStatus)[keyof typeof CustomEventsStatus];
|
|
11
|
+
export type CustomEventsStatus = (typeof CustomEventsStatus)[keyof typeof CustomEventsStatus];
|
|
13
12
|
export declare const DeobfuscationStatus: {
|
|
14
13
|
readonly DISABLED: "DISABLED";
|
|
15
14
|
readonly ENABLED: "ENABLED";
|
|
16
15
|
};
|
|
17
|
-
export type DeobfuscationStatus =
|
|
18
|
-
(typeof DeobfuscationStatus)[keyof typeof DeobfuscationStatus];
|
|
16
|
+
export type DeobfuscationStatus = (typeof DeobfuscationStatus)[keyof typeof DeobfuscationStatus];
|
|
19
17
|
export declare const AppMonitorPlatform: {
|
|
20
18
|
readonly ANDROID: "Android";
|
|
21
19
|
readonly IOS: "iOS";
|
|
22
20
|
readonly WEB: "Web";
|
|
23
21
|
};
|
|
24
|
-
export type AppMonitorPlatform =
|
|
25
|
-
(typeof AppMonitorPlatform)[keyof typeof AppMonitorPlatform];
|
|
22
|
+
export type AppMonitorPlatform = (typeof AppMonitorPlatform)[keyof typeof AppMonitorPlatform];
|
|
26
23
|
export declare const StateEnum: {
|
|
27
24
|
readonly ACTIVE: "ACTIVE";
|
|
28
25
|
readonly CREATED: "CREATED";
|
|
@@ -33,5 +30,4 @@ export declare const MetricDestination: {
|
|
|
33
30
|
readonly CloudWatch: "CloudWatch";
|
|
34
31
|
readonly Evidently: "Evidently";
|
|
35
32
|
};
|
|
36
|
-
export type MetricDestination =
|
|
37
|
-
(typeof MetricDestination)[keyof typeof MetricDestination];
|
|
33
|
+
export type MetricDestination = (typeof MetricDestination)[keyof typeof MetricDestination];
|
|
@@ -3,9 +3,7 @@ import { RUMServiceException as __BaseException } from "./RUMServiceException";
|
|
|
3
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
|
-
constructor(
|
|
7
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
-
);
|
|
6
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
7
|
}
|
|
10
8
|
export declare class ConflictException extends __BaseException {
|
|
11
9
|
readonly name: "ConflictException";
|
|
@@ -19,25 +17,19 @@ export declare class InternalServerException extends __BaseException {
|
|
|
19
17
|
readonly $fault: "server";
|
|
20
18
|
$retryable: {};
|
|
21
19
|
retryAfterSeconds?: number | undefined;
|
|
22
|
-
constructor(
|
|
23
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
24
|
-
);
|
|
20
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
25
21
|
}
|
|
26
22
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
27
23
|
readonly name: "ResourceNotFoundException";
|
|
28
24
|
readonly $fault: "client";
|
|
29
25
|
resourceName: string | undefined;
|
|
30
26
|
resourceType?: string | undefined;
|
|
31
|
-
constructor(
|
|
32
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
33
|
-
);
|
|
27
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
34
28
|
}
|
|
35
29
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
36
30
|
readonly name: "ServiceQuotaExceededException";
|
|
37
31
|
readonly $fault: "client";
|
|
38
|
-
constructor(
|
|
39
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
40
|
-
);
|
|
32
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
41
33
|
}
|
|
42
34
|
export declare class ThrottlingException extends __BaseException {
|
|
43
35
|
readonly name: "ThrottlingException";
|
|
@@ -48,51 +40,30 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
48
40
|
serviceCode?: string | undefined;
|
|
49
41
|
quotaCode?: string | undefined;
|
|
50
42
|
retryAfterSeconds?: number | undefined;
|
|
51
|
-
constructor(
|
|
52
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
53
|
-
);
|
|
43
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
54
44
|
}
|
|
55
45
|
export declare class ValidationException extends __BaseException {
|
|
56
46
|
readonly name: "ValidationException";
|
|
57
47
|
readonly $fault: "client";
|
|
58
|
-
constructor(
|
|
59
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
60
|
-
);
|
|
48
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
61
49
|
}
|
|
62
50
|
export declare class InvalidPolicyRevisionIdException extends __BaseException {
|
|
63
51
|
readonly name: "InvalidPolicyRevisionIdException";
|
|
64
52
|
readonly $fault: "client";
|
|
65
|
-
constructor(
|
|
66
|
-
opts: __ExceptionOptionType<
|
|
67
|
-
InvalidPolicyRevisionIdException,
|
|
68
|
-
__BaseException
|
|
69
|
-
>
|
|
70
|
-
);
|
|
53
|
+
constructor(opts: __ExceptionOptionType<InvalidPolicyRevisionIdException, __BaseException>);
|
|
71
54
|
}
|
|
72
55
|
export declare class PolicyNotFoundException extends __BaseException {
|
|
73
56
|
readonly name: "PolicyNotFoundException";
|
|
74
57
|
readonly $fault: "client";
|
|
75
|
-
constructor(
|
|
76
|
-
opts: __ExceptionOptionType<PolicyNotFoundException, __BaseException>
|
|
77
|
-
);
|
|
58
|
+
constructor(opts: __ExceptionOptionType<PolicyNotFoundException, __BaseException>);
|
|
78
59
|
}
|
|
79
60
|
export declare class MalformedPolicyDocumentException extends __BaseException {
|
|
80
61
|
readonly name: "MalformedPolicyDocumentException";
|
|
81
62
|
readonly $fault: "client";
|
|
82
|
-
constructor(
|
|
83
|
-
opts: __ExceptionOptionType<
|
|
84
|
-
MalformedPolicyDocumentException,
|
|
85
|
-
__BaseException
|
|
86
|
-
>
|
|
87
|
-
);
|
|
63
|
+
constructor(opts: __ExceptionOptionType<MalformedPolicyDocumentException, __BaseException>);
|
|
88
64
|
}
|
|
89
65
|
export declare class PolicySizeLimitExceededException extends __BaseException {
|
|
90
66
|
readonly name: "PolicySizeLimitExceededException";
|
|
91
67
|
readonly $fault: "client";
|
|
92
|
-
constructor(
|
|
93
|
-
opts: __ExceptionOptionType<
|
|
94
|
-
PolicySizeLimitExceededException,
|
|
95
|
-
__BaseException
|
|
96
|
-
>
|
|
97
|
-
);
|
|
68
|
+
constructor(opts: __ExceptionOptionType<PolicySizeLimitExceededException, __BaseException>);
|
|
98
69
|
}
|