@aws-sdk/client-chime-sdk-meetings 3.168.0 → 3.170.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.
Files changed (34) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ChimeSDKMeetings.d.ts +298 -85
  3. package/dist-types/ts3.4/ChimeSDKMeetingsClient.d.ts +226 -89
  4. package/dist-types/ts3.4/commands/BatchCreateAttendeeCommand.d.ts +38 -17
  5. package/dist-types/ts3.4/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.d.ts +37 -17
  6. package/dist-types/ts3.4/commands/CreateAttendeeCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/CreateMeetingCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/CreateMeetingWithAttendeesCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/DeleteAttendeeCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DeleteMeetingCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/GetAttendeeCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/GetMeetingCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/ListAttendeesCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/StartMeetingTranscriptionCommand.d.ts +37 -17
  16. package/dist-types/ts3.4/commands/StopMeetingTranscriptionCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/UpdateAttendeeCapabilitiesCommand.d.ts +41 -17
  20. package/dist-types/ts3.4/commands/index.d.ts +16 -16
  21. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  22. package/dist-types/ts3.4/index.d.ts +6 -6
  23. package/dist-types/ts3.4/models/ChimeSDKMeetingsServiceException.d.ts +8 -6
  24. package/dist-types/ts3.4/models/index.d.ts +1 -1
  25. package/dist-types/ts3.4/models/models_0.d.ts +693 -638
  26. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  27. package/dist-types/ts3.4/pagination/ListAttendeesPaginator.d.ts +11 -4
  28. package/dist-types/ts3.4/pagination/index.d.ts +2 -2
  29. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +197 -50
  30. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  31. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  32. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  33. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  34. package/package.json +34 -34
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
4
- import { DeleteMeetingRequest } from "../models/models_0";
5
- export interface DeleteMeetingCommandInput extends DeleteMeetingRequest {
6
- }
7
- export interface DeleteMeetingCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteMeetingCommand extends $Command<DeleteMeetingCommandInput, DeleteMeetingCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
11
- readonly input: DeleteMeetingCommandInput;
12
- constructor(input: DeleteMeetingCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMeetingCommandInput, DeleteMeetingCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ChimeSDKMeetingsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ChimeSDKMeetingsClient";
13
+ import { DeleteMeetingRequest } from "../models/models_0";
14
+ export interface DeleteMeetingCommandInput extends DeleteMeetingRequest {}
15
+ export interface DeleteMeetingCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class DeleteMeetingCommand extends $Command<
18
+ DeleteMeetingCommandInput,
19
+ DeleteMeetingCommandOutput,
20
+ ChimeSDKMeetingsClientResolvedConfig
21
+ > {
22
+ readonly input: DeleteMeetingCommandInput;
23
+ constructor(input: DeleteMeetingCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: ChimeSDKMeetingsClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DeleteMeetingCommandInput, DeleteMeetingCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
4
- import { GetAttendeeRequest, GetAttendeeResponse } from "../models/models_0";
5
- export interface GetAttendeeCommandInput extends GetAttendeeRequest {
6
- }
7
- export interface GetAttendeeCommandOutput extends GetAttendeeResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetAttendeeCommand extends $Command<GetAttendeeCommandInput, GetAttendeeCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
11
- readonly input: GetAttendeeCommandInput;
12
- constructor(input: GetAttendeeCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAttendeeCommandInput, GetAttendeeCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ChimeSDKMeetingsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ChimeSDKMeetingsClient";
13
+ import { GetAttendeeRequest, GetAttendeeResponse } from "../models/models_0";
14
+ export interface GetAttendeeCommandInput extends GetAttendeeRequest {}
15
+ export interface GetAttendeeCommandOutput
16
+ extends GetAttendeeResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetAttendeeCommand extends $Command<
20
+ GetAttendeeCommandInput,
21
+ GetAttendeeCommandOutput,
22
+ ChimeSDKMeetingsClientResolvedConfig
23
+ > {
24
+ readonly input: GetAttendeeCommandInput;
25
+ constructor(input: GetAttendeeCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ChimeSDKMeetingsClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetAttendeeCommandInput, GetAttendeeCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
4
- import { GetMeetingRequest, GetMeetingResponse } from "../models/models_0";
5
- export interface GetMeetingCommandInput extends GetMeetingRequest {
6
- }
7
- export interface GetMeetingCommandOutput extends GetMeetingResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetMeetingCommand extends $Command<GetMeetingCommandInput, GetMeetingCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
11
- readonly input: GetMeetingCommandInput;
12
- constructor(input: GetMeetingCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMeetingCommandInput, GetMeetingCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ChimeSDKMeetingsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ChimeSDKMeetingsClient";
13
+ import { GetMeetingRequest, GetMeetingResponse } from "../models/models_0";
14
+ export interface GetMeetingCommandInput extends GetMeetingRequest {}
15
+ export interface GetMeetingCommandOutput
16
+ extends GetMeetingResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetMeetingCommand extends $Command<
20
+ GetMeetingCommandInput,
21
+ GetMeetingCommandOutput,
22
+ ChimeSDKMeetingsClientResolvedConfig
23
+ > {
24
+ readonly input: GetMeetingCommandInput;
25
+ constructor(input: GetMeetingCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ChimeSDKMeetingsClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetMeetingCommandInput, GetMeetingCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
4
- import { ListAttendeesRequest, ListAttendeesResponse } from "../models/models_0";
5
- export interface ListAttendeesCommandInput extends ListAttendeesRequest {
6
- }
7
- export interface ListAttendeesCommandOutput extends ListAttendeesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListAttendeesCommand extends $Command<ListAttendeesCommandInput, ListAttendeesCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
11
- readonly input: ListAttendeesCommandInput;
12
- constructor(input: ListAttendeesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAttendeesCommandInput, ListAttendeesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ChimeSDKMeetingsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ChimeSDKMeetingsClient";
13
+ import {
14
+ ListAttendeesRequest,
15
+ ListAttendeesResponse,
16
+ } from "../models/models_0";
17
+ export interface ListAttendeesCommandInput extends ListAttendeesRequest {}
18
+ export interface ListAttendeesCommandOutput
19
+ extends ListAttendeesResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListAttendeesCommand extends $Command<
23
+ ListAttendeesCommandInput,
24
+ ListAttendeesCommandOutput,
25
+ ChimeSDKMeetingsClientResolvedConfig
26
+ > {
27
+ readonly input: ListAttendeesCommandInput;
28
+ constructor(input: ListAttendeesCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ChimeSDKMeetingsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListAttendeesCommandInput, ListAttendeesCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
4
- import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ChimeSDKMeetingsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ChimeSDKMeetingsClient";
13
+ import {
14
+ ListTagsForResourceRequest,
15
+ ListTagsForResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListTagsForResourceCommand extends $Command<
24
+ ListTagsForResourceCommandInput,
25
+ ListTagsForResourceCommandOutput,
26
+ ChimeSDKMeetingsClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForResourceCommandInput;
29
+ constructor(input: ListTagsForResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ChimeSDKMeetingsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
4
- import { StartMeetingTranscriptionRequest } from "../models/models_0";
5
- export interface StartMeetingTranscriptionCommandInput extends StartMeetingTranscriptionRequest {
6
- }
7
- export interface StartMeetingTranscriptionCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class StartMeetingTranscriptionCommand extends $Command<StartMeetingTranscriptionCommandInput, StartMeetingTranscriptionCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
11
- readonly input: StartMeetingTranscriptionCommandInput;
12
- constructor(input: StartMeetingTranscriptionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartMeetingTranscriptionCommandInput, StartMeetingTranscriptionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ChimeSDKMeetingsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ChimeSDKMeetingsClient";
13
+ import { StartMeetingTranscriptionRequest } from "../models/models_0";
14
+ export interface StartMeetingTranscriptionCommandInput
15
+ extends StartMeetingTranscriptionRequest {}
16
+ export interface StartMeetingTranscriptionCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class StartMeetingTranscriptionCommand extends $Command<
20
+ StartMeetingTranscriptionCommandInput,
21
+ StartMeetingTranscriptionCommandOutput,
22
+ ChimeSDKMeetingsClientResolvedConfig
23
+ > {
24
+ readonly input: StartMeetingTranscriptionCommandInput;
25
+ constructor(input: StartMeetingTranscriptionCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ChimeSDKMeetingsClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ StartMeetingTranscriptionCommandInput,
33
+ StartMeetingTranscriptionCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
4
- import { StopMeetingTranscriptionRequest } from "../models/models_0";
5
- export interface StopMeetingTranscriptionCommandInput extends StopMeetingTranscriptionRequest {
6
- }
7
- export interface StopMeetingTranscriptionCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class StopMeetingTranscriptionCommand extends $Command<StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
11
- readonly input: StopMeetingTranscriptionCommandInput;
12
- constructor(input: StopMeetingTranscriptionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ChimeSDKMeetingsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ChimeSDKMeetingsClient";
13
+ import { StopMeetingTranscriptionRequest } from "../models/models_0";
14
+ export interface StopMeetingTranscriptionCommandInput
15
+ extends StopMeetingTranscriptionRequest {}
16
+ export interface StopMeetingTranscriptionCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class StopMeetingTranscriptionCommand extends $Command<
20
+ StopMeetingTranscriptionCommandInput,
21
+ StopMeetingTranscriptionCommandOutput,
22
+ ChimeSDKMeetingsClientResolvedConfig
23
+ > {
24
+ readonly input: StopMeetingTranscriptionCommandInput;
25
+ constructor(input: StopMeetingTranscriptionCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ChimeSDKMeetingsClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ StopMeetingTranscriptionCommandInput,
33
+ StopMeetingTranscriptionCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
4
- import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ChimeSDKMeetingsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ChimeSDKMeetingsClient";
13
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class TagResourceCommand extends $Command<
20
+ TagResourceCommandInput,
21
+ TagResourceCommandOutput,
22
+ ChimeSDKMeetingsClientResolvedConfig
23
+ > {
24
+ readonly input: TagResourceCommandInput;
25
+ constructor(input: TagResourceCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ChimeSDKMeetingsClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
4
- import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ChimeSDKMeetingsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ChimeSDKMeetingsClient";
13
+ import {
14
+ UntagResourceRequest,
15
+ UntagResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
+ export interface UntagResourceCommandOutput
19
+ extends UntagResourceResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UntagResourceCommand extends $Command<
23
+ UntagResourceCommandInput,
24
+ UntagResourceCommandOutput,
25
+ ChimeSDKMeetingsClientResolvedConfig
26
+ > {
27
+ readonly input: UntagResourceCommandInput;
28
+ constructor(input: UntagResourceCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ChimeSDKMeetingsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
4
- import { UpdateAttendeeCapabilitiesRequest, UpdateAttendeeCapabilitiesResponse } from "../models/models_0";
5
- export interface UpdateAttendeeCapabilitiesCommandInput extends UpdateAttendeeCapabilitiesRequest {
6
- }
7
- export interface UpdateAttendeeCapabilitiesCommandOutput extends UpdateAttendeeCapabilitiesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateAttendeeCapabilitiesCommand extends $Command<UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
11
- readonly input: UpdateAttendeeCapabilitiesCommandInput;
12
- constructor(input: UpdateAttendeeCapabilitiesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ChimeSDKMeetingsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ChimeSDKMeetingsClient";
13
+ import {
14
+ UpdateAttendeeCapabilitiesRequest,
15
+ UpdateAttendeeCapabilitiesResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateAttendeeCapabilitiesCommandInput
18
+ extends UpdateAttendeeCapabilitiesRequest {}
19
+ export interface UpdateAttendeeCapabilitiesCommandOutput
20
+ extends UpdateAttendeeCapabilitiesResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class UpdateAttendeeCapabilitiesCommand extends $Command<
24
+ UpdateAttendeeCapabilitiesCommandInput,
25
+ UpdateAttendeeCapabilitiesCommandOutput,
26
+ ChimeSDKMeetingsClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateAttendeeCapabilitiesCommandInput;
29
+ constructor(input: UpdateAttendeeCapabilitiesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ChimeSDKMeetingsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ UpdateAttendeeCapabilitiesCommandInput,
37
+ UpdateAttendeeCapabilitiesCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,16 +1,16 @@
1
- export * from "./BatchCreateAttendeeCommand";
2
- export * from "./BatchUpdateAttendeeCapabilitiesExceptCommand";
3
- export * from "./CreateAttendeeCommand";
4
- export * from "./CreateMeetingCommand";
5
- export * from "./CreateMeetingWithAttendeesCommand";
6
- export * from "./DeleteAttendeeCommand";
7
- export * from "./DeleteMeetingCommand";
8
- export * from "./GetAttendeeCommand";
9
- export * from "./GetMeetingCommand";
10
- export * from "./ListAttendeesCommand";
11
- export * from "./ListTagsForResourceCommand";
12
- export * from "./StartMeetingTranscriptionCommand";
13
- export * from "./StopMeetingTranscriptionCommand";
14
- export * from "./TagResourceCommand";
15
- export * from "./UntagResourceCommand";
16
- export * from "./UpdateAttendeeCapabilitiesCommand";
1
+ export * from "./BatchCreateAttendeeCommand";
2
+ export * from "./BatchUpdateAttendeeCapabilitiesExceptCommand";
3
+ export * from "./CreateAttendeeCommand";
4
+ export * from "./CreateMeetingCommand";
5
+ export * from "./CreateMeetingWithAttendeesCommand";
6
+ export * from "./DeleteAttendeeCommand";
7
+ export * from "./DeleteMeetingCommand";
8
+ export * from "./GetAttendeeCommand";
9
+ export * from "./GetMeetingCommand";
10
+ export * from "./ListAttendeesCommand";
11
+ export * from "./ListTagsForResourceCommand";
12
+ export * from "./StartMeetingTranscriptionCommand";
13
+ export * from "./StopMeetingTranscriptionCommand";
14
+ export * from "./TagResourceCommand";
15
+ export * from "./UntagResourceCommand";
16
+ export * from "./UpdateAttendeeCapabilitiesCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./ChimeSDKMeetings";
2
- export * from "./ChimeSDKMeetingsClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { ChimeSDKMeetingsServiceException } from "./models/ChimeSDKMeetingsServiceException";
1
+ export * from "./ChimeSDKMeetings";
2
+ export * from "./ChimeSDKMeetingsClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { ChimeSDKMeetingsServiceException } from "./models/ChimeSDKMeetingsServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class ChimeSDKMeetingsServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class ChimeSDKMeetingsServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";