@aws-sdk/client-chime-sdk-meetings 3.1076.0 → 3.1078.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 +27 -165
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/BatchCreateAttendeeCommand.js +2 -14
- package/dist-es/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.js +2 -14
- package/dist-es/commands/CreateAttendeeCommand.js +2 -14
- package/dist-es/commands/CreateMeetingCommand.js +2 -14
- package/dist-es/commands/CreateMeetingWithAttendeesCommand.js +2 -14
- package/dist-es/commands/DeleteAttendeeCommand.js +2 -14
- package/dist-es/commands/DeleteMeetingCommand.js +2 -14
- package/dist-es/commands/GetAttendeeCommand.js +2 -14
- package/dist-es/commands/GetMeetingCommand.js +2 -14
- package/dist-es/commands/ListAttendeesCommand.js +2 -14
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/dist-es/commands/StartMeetingTranscriptionCommand.js +2 -14
- package/dist-es/commands/StopMeetingTranscriptionCommand.js +2 -14
- package/dist-es/commands/TagResourceCommand.js +2 -14
- package/dist-es/commands/UntagResourceCommand.js +2 -14
- package/dist-es/commands/UpdateAttendeeCapabilitiesCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/BatchCreateAttendeeCommand.d.ts +3 -8
- package/dist-types/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.d.ts +3 -8
- package/dist-types/commands/CreateAttendeeCommand.d.ts +3 -8
- package/dist-types/commands/CreateMeetingCommand.d.ts +3 -8
- package/dist-types/commands/CreateMeetingWithAttendeesCommand.d.ts +3 -8
- package/dist-types/commands/DeleteAttendeeCommand.d.ts +3 -8
- package/dist-types/commands/DeleteMeetingCommand.d.ts +3 -8
- package/dist-types/commands/GetAttendeeCommand.d.ts +3 -8
- package/dist-types/commands/GetMeetingCommand.d.ts +3 -8
- package/dist-types/commands/ListAttendeesCommand.d.ts +3 -8
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
- package/dist-types/commands/StartMeetingTranscriptionCommand.d.ts +3 -8
- package/dist-types/commands/StopMeetingTranscriptionCommand.d.ts +3 -8
- package/dist-types/commands/TagResourceCommand.d.ts +3 -8
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
- package/dist-types/commands/UpdateAttendeeCapabilitiesCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/BatchCreateAttendeeCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateAttendeeCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateMeetingCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateMeetingWithAttendeesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteAttendeeCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteMeetingCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetAttendeeCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetMeetingCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListAttendeesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/StartMeetingTranscriptionCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/StopMeetingTranscriptionCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateAttendeeCapabilitiesCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ChimeSDKMeetingsClient";
|
|
8
2
|
import {
|
|
9
3
|
BatchCreateAttendeeRequest,
|
|
10
4
|
BatchCreateAttendeeResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface BatchCreateAttendeeCommandInput
|
|
15
8
|
extends BatchCreateAttendeeRequest {}
|
|
16
9
|
export interface BatchCreateAttendeeCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const BatchCreateAttendeeCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
BatchCreateAttendeeCommandInput,
|
|
24
17
|
BatchCreateAttendeeCommandOutput,
|
|
25
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: BatchCreateAttendeeCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
BatchCreateAttendeeCommandInput,
|
|
33
26
|
BatchCreateAttendeeCommandOutput,
|
|
34
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class BatchCreateAttendeeCommand extends BatchCreateAttendeeCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ChimeSDKMeetingsClient";
|
|
8
2
|
import { BatchUpdateAttendeeCapabilitiesExceptRequest } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface BatchUpdateAttendeeCapabilitiesExceptCommandInput
|
|
12
5
|
extends BatchUpdateAttendeeCapabilitiesExceptRequest {}
|
|
13
6
|
export interface BatchUpdateAttendeeCapabilitiesExceptCommandOutput
|
|
@@ -18,22 +11,20 @@ declare const BatchUpdateAttendeeCapabilitiesExceptCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
BatchUpdateAttendeeCapabilitiesExceptCommandInput,
|
|
20
13
|
BatchUpdateAttendeeCapabilitiesExceptCommandOutput,
|
|
21
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: BatchUpdateAttendeeCapabilitiesExceptCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
BatchUpdateAttendeeCapabilitiesExceptCommandInput,
|
|
29
22
|
BatchUpdateAttendeeCapabilitiesExceptCommandOutput,
|
|
30
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class BatchUpdateAttendeeCapabilitiesExceptCommand extends BatchUpdateAttendeeCapabilitiesExceptCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ChimeSDKMeetingsClient";
|
|
8
2
|
import {
|
|
9
3
|
CreateAttendeeRequest,
|
|
10
4
|
CreateAttendeeResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface CreateAttendeeCommandInput extends CreateAttendeeRequest {}
|
|
15
8
|
export interface CreateAttendeeCommandOutput
|
|
16
9
|
extends CreateAttendeeResponse,
|
|
@@ -21,22 +14,20 @@ declare const CreateAttendeeCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
CreateAttendeeCommandInput,
|
|
23
16
|
CreateAttendeeCommandOutput,
|
|
24
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: CreateAttendeeCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
CreateAttendeeCommandInput,
|
|
32
25
|
CreateAttendeeCommandOutput,
|
|
33
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class CreateAttendeeCommand extends CreateAttendeeCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ChimeSDKMeetingsClient";
|
|
8
2
|
import {
|
|
9
3
|
CreateMeetingRequest,
|
|
10
4
|
CreateMeetingResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface CreateMeetingCommandInput extends CreateMeetingRequest {}
|
|
15
8
|
export interface CreateMeetingCommandOutput
|
|
16
9
|
extends CreateMeetingResponse,
|
|
@@ -21,22 +14,20 @@ declare const CreateMeetingCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
CreateMeetingCommandInput,
|
|
23
16
|
CreateMeetingCommandOutput,
|
|
24
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: CreateMeetingCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
CreateMeetingCommandInput,
|
|
32
25
|
CreateMeetingCommandOutput,
|
|
33
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class CreateMeetingCommand extends CreateMeetingCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ChimeSDKMeetingsClient";
|
|
8
2
|
import {
|
|
9
3
|
CreateMeetingWithAttendeesRequest,
|
|
10
4
|
CreateMeetingWithAttendeesResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface CreateMeetingWithAttendeesCommandInput
|
|
15
8
|
extends CreateMeetingWithAttendeesRequest {}
|
|
16
9
|
export interface CreateMeetingWithAttendeesCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const CreateMeetingWithAttendeesCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
CreateMeetingWithAttendeesCommandInput,
|
|
24
17
|
CreateMeetingWithAttendeesCommandOutput,
|
|
25
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: CreateMeetingWithAttendeesCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
CreateMeetingWithAttendeesCommandInput,
|
|
33
26
|
CreateMeetingWithAttendeesCommandOutput,
|
|
34
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class CreateMeetingWithAttendeesCommand extends CreateMeetingWithAttendeesCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ChimeSDKMeetingsClient";
|
|
8
2
|
import { DeleteAttendeeRequest } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface DeleteAttendeeCommandInput extends DeleteAttendeeRequest {}
|
|
12
5
|
export interface DeleteAttendeeCommandOutput extends __MetadataBearer {}
|
|
13
6
|
declare const DeleteAttendeeCommand_base: {
|
|
@@ -16,22 +9,20 @@ declare const DeleteAttendeeCommand_base: {
|
|
|
16
9
|
): import("@smithy/core/client").CommandImpl<
|
|
17
10
|
DeleteAttendeeCommandInput,
|
|
18
11
|
DeleteAttendeeCommandOutput,
|
|
19
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
20
|
-
ServiceInputTypes,
|
|
21
|
-
ServiceOutputTypes
|
|
12
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
22
15
|
>;
|
|
23
16
|
new (
|
|
24
17
|
input: DeleteAttendeeCommandInput
|
|
25
18
|
): import("@smithy/core/client").CommandImpl<
|
|
26
19
|
DeleteAttendeeCommandInput,
|
|
27
20
|
DeleteAttendeeCommandOutput,
|
|
28
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
29
|
-
ServiceInputTypes,
|
|
30
|
-
ServiceOutputTypes
|
|
21
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
31
24
|
>;
|
|
32
|
-
getEndpointParameterInstructions():
|
|
33
|
-
[x: string]: unknown;
|
|
34
|
-
};
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
35
26
|
};
|
|
36
27
|
export declare class DeleteAttendeeCommand extends DeleteAttendeeCommand_base {
|
|
37
28
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ChimeSDKMeetingsClient";
|
|
8
2
|
import { DeleteMeetingRequest } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface DeleteMeetingCommandInput extends DeleteMeetingRequest {}
|
|
12
5
|
export interface DeleteMeetingCommandOutput extends __MetadataBearer {}
|
|
13
6
|
declare const DeleteMeetingCommand_base: {
|
|
@@ -16,22 +9,20 @@ declare const DeleteMeetingCommand_base: {
|
|
|
16
9
|
): import("@smithy/core/client").CommandImpl<
|
|
17
10
|
DeleteMeetingCommandInput,
|
|
18
11
|
DeleteMeetingCommandOutput,
|
|
19
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
20
|
-
ServiceInputTypes,
|
|
21
|
-
ServiceOutputTypes
|
|
12
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
22
15
|
>;
|
|
23
16
|
new (
|
|
24
17
|
input: DeleteMeetingCommandInput
|
|
25
18
|
): import("@smithy/core/client").CommandImpl<
|
|
26
19
|
DeleteMeetingCommandInput,
|
|
27
20
|
DeleteMeetingCommandOutput,
|
|
28
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
29
|
-
ServiceInputTypes,
|
|
30
|
-
ServiceOutputTypes
|
|
21
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
31
24
|
>;
|
|
32
|
-
getEndpointParameterInstructions():
|
|
33
|
-
[x: string]: unknown;
|
|
34
|
-
};
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
35
26
|
};
|
|
36
27
|
export declare class DeleteMeetingCommand extends DeleteMeetingCommand_base {
|
|
37
28
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ChimeSDKMeetingsClient";
|
|
8
2
|
import { GetAttendeeRequest, GetAttendeeResponse } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface GetAttendeeCommandInput extends GetAttendeeRequest {}
|
|
12
5
|
export interface GetAttendeeCommandOutput
|
|
13
6
|
extends GetAttendeeResponse,
|
|
@@ -18,22 +11,20 @@ declare const GetAttendeeCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
GetAttendeeCommandInput,
|
|
20
13
|
GetAttendeeCommandOutput,
|
|
21
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: GetAttendeeCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
GetAttendeeCommandInput,
|
|
29
22
|
GetAttendeeCommandOutput,
|
|
30
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class GetAttendeeCommand extends GetAttendeeCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ChimeSDKMeetingsClient";
|
|
8
2
|
import { GetMeetingRequest, GetMeetingResponse } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface GetMeetingCommandInput extends GetMeetingRequest {}
|
|
12
5
|
export interface GetMeetingCommandOutput
|
|
13
6
|
extends GetMeetingResponse,
|
|
@@ -18,22 +11,20 @@ declare const GetMeetingCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
GetMeetingCommandInput,
|
|
20
13
|
GetMeetingCommandOutput,
|
|
21
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: GetMeetingCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
GetMeetingCommandInput,
|
|
29
22
|
GetMeetingCommandOutput,
|
|
30
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class GetMeetingCommand extends GetMeetingCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ChimeSDKMeetingsClient";
|
|
8
2
|
import {
|
|
9
3
|
ListAttendeesRequest,
|
|
10
4
|
ListAttendeesResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListAttendeesCommandInput extends ListAttendeesRequest {}
|
|
15
8
|
export interface ListAttendeesCommandOutput
|
|
16
9
|
extends ListAttendeesResponse,
|
|
@@ -21,22 +14,20 @@ declare const ListAttendeesCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
ListAttendeesCommandInput,
|
|
23
16
|
ListAttendeesCommandOutput,
|
|
24
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: ListAttendeesCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
ListAttendeesCommandInput,
|
|
32
25
|
ListAttendeesCommandOutput,
|
|
33
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class ListAttendeesCommand extends ListAttendeesCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ChimeSDKMeetingsClient";
|
|
8
2
|
import {
|
|
9
3
|
ListTagsForResourceRequest,
|
|
10
4
|
ListTagsForResourceResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListTagsForResourceCommandInput
|
|
15
8
|
extends ListTagsForResourceRequest {}
|
|
16
9
|
export interface ListTagsForResourceCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListTagsForResourceCommandInput,
|
|
24
17
|
ListTagsForResourceCommandOutput,
|
|
25
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: ListTagsForResourceCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListTagsForResourceCommandInput,
|
|
33
26
|
ListTagsForResourceCommandOutput,
|
|
34
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ChimeSDKMeetingsClient";
|
|
8
2
|
import { StartMeetingTranscriptionRequest } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface StartMeetingTranscriptionCommandInput
|
|
12
5
|
extends StartMeetingTranscriptionRequest {}
|
|
13
6
|
export interface StartMeetingTranscriptionCommandOutput
|
|
@@ -18,22 +11,20 @@ declare const StartMeetingTranscriptionCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
StartMeetingTranscriptionCommandInput,
|
|
20
13
|
StartMeetingTranscriptionCommandOutput,
|
|
21
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: StartMeetingTranscriptionCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
StartMeetingTranscriptionCommandInput,
|
|
29
22
|
StartMeetingTranscriptionCommandOutput,
|
|
30
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class StartMeetingTranscriptionCommand extends StartMeetingTranscriptionCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ChimeSDKMeetingsClient";
|
|
8
2
|
import { StopMeetingTranscriptionRequest } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface StopMeetingTranscriptionCommandInput
|
|
12
5
|
extends StopMeetingTranscriptionRequest {}
|
|
13
6
|
export interface StopMeetingTranscriptionCommandOutput
|
|
@@ -18,22 +11,20 @@ declare const StopMeetingTranscriptionCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
StopMeetingTranscriptionCommandInput,
|
|
20
13
|
StopMeetingTranscriptionCommandOutput,
|
|
21
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: StopMeetingTranscriptionCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
StopMeetingTranscriptionCommandInput,
|
|
29
22
|
StopMeetingTranscriptionCommandOutput,
|
|
30
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class StopMeetingTranscriptionCommand extends StopMeetingTranscriptionCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ChimeSDKMeetingsClient";
|
|
8
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
12
5
|
export interface TagResourceCommandOutput
|
|
13
6
|
extends TagResourceResponse,
|
|
@@ -18,22 +11,20 @@ declare const TagResourceCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
TagResourceCommandInput,
|
|
20
13
|
TagResourceCommandOutput,
|
|
21
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: TagResourceCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
TagResourceCommandInput,
|
|
29
22
|
TagResourceCommandOutput,
|
|
30
|
-
ChimeSDKMeetingsClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").ChimeSDKMeetingsClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
39
30
|
protected static __types: {
|