@aws-sdk/client-chime-sdk-meetings 3.169.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 +8 -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,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { ChimeSDKMeetings } from "../ChimeSDKMeetings";
3
- import { ChimeSDKMeetingsClient } from "../ChimeSDKMeetingsClient";
4
- export interface ChimeSDKMeetingsPaginationConfiguration extends PaginationConfiguration {
5
- client: ChimeSDKMeetings | ChimeSDKMeetingsClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { ChimeSDKMeetings } from "../ChimeSDKMeetings";
3
+ import { ChimeSDKMeetingsClient } from "../ChimeSDKMeetingsClient";
4
+ export interface ChimeSDKMeetingsPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: ChimeSDKMeetings | ChimeSDKMeetingsClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListAttendeesCommandInput, ListAttendeesCommandOutput } from "../commands/ListAttendeesCommand";
3
- import { ChimeSDKMeetingsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListAttendees(config: ChimeSDKMeetingsPaginationConfiguration, input: ListAttendeesCommandInput, ...additionalArguments: any): Paginator<ListAttendeesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListAttendeesCommandInput,
4
+ ListAttendeesCommandOutput,
5
+ } from "../commands/ListAttendeesCommand";
6
+ import { ChimeSDKMeetingsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListAttendees(
8
+ config: ChimeSDKMeetingsPaginationConfiguration,
9
+ input: ListAttendeesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListAttendeesCommandOutput>;
@@ -1,2 +1,2 @@
1
- export * from "./Interfaces";
2
- export * from "./ListAttendeesPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListAttendeesPaginator";
@@ -1,50 +1,197 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { BatchCreateAttendeeCommandInput, BatchCreateAttendeeCommandOutput } from "../commands/BatchCreateAttendeeCommand";
4
- import { BatchUpdateAttendeeCapabilitiesExceptCommandInput, BatchUpdateAttendeeCapabilitiesExceptCommandOutput } from "../commands/BatchUpdateAttendeeCapabilitiesExceptCommand";
5
- import { CreateAttendeeCommandInput, CreateAttendeeCommandOutput } from "../commands/CreateAttendeeCommand";
6
- import { CreateMeetingCommandInput, CreateMeetingCommandOutput } from "../commands/CreateMeetingCommand";
7
- import { CreateMeetingWithAttendeesCommandInput, CreateMeetingWithAttendeesCommandOutput } from "../commands/CreateMeetingWithAttendeesCommand";
8
- import { DeleteAttendeeCommandInput, DeleteAttendeeCommandOutput } from "../commands/DeleteAttendeeCommand";
9
- import { DeleteMeetingCommandInput, DeleteMeetingCommandOutput } from "../commands/DeleteMeetingCommand";
10
- import { GetAttendeeCommandInput, GetAttendeeCommandOutput } from "../commands/GetAttendeeCommand";
11
- import { GetMeetingCommandInput, GetMeetingCommandOutput } from "../commands/GetMeetingCommand";
12
- import { ListAttendeesCommandInput, ListAttendeesCommandOutput } from "../commands/ListAttendeesCommand";
13
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
14
- import { StartMeetingTranscriptionCommandInput, StartMeetingTranscriptionCommandOutput } from "../commands/StartMeetingTranscriptionCommand";
15
- import { StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOutput } from "../commands/StopMeetingTranscriptionCommand";
16
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
17
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
18
- import { UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput } from "../commands/UpdateAttendeeCapabilitiesCommand";
19
- export declare const serializeAws_restJson1BatchCreateAttendeeCommand: (input: BatchCreateAttendeeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
- export declare const serializeAws_restJson1BatchUpdateAttendeeCapabilitiesExceptCommand: (input: BatchUpdateAttendeeCapabilitiesExceptCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
- export declare const serializeAws_restJson1CreateAttendeeCommand: (input: CreateAttendeeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
- export declare const serializeAws_restJson1CreateMeetingCommand: (input: CreateMeetingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
- export declare const serializeAws_restJson1CreateMeetingWithAttendeesCommand: (input: CreateMeetingWithAttendeesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
- export declare const serializeAws_restJson1DeleteAttendeeCommand: (input: DeleteAttendeeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
- export declare const serializeAws_restJson1DeleteMeetingCommand: (input: DeleteMeetingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
- export declare const serializeAws_restJson1GetAttendeeCommand: (input: GetAttendeeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
- export declare const serializeAws_restJson1GetMeetingCommand: (input: GetMeetingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_restJson1ListAttendeesCommand: (input: ListAttendeesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- export declare const serializeAws_restJson1StartMeetingTranscriptionCommand: (input: StartMeetingTranscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
- export declare const serializeAws_restJson1StopMeetingTranscriptionCommand: (input: StopMeetingTranscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_restJson1UpdateAttendeeCapabilitiesCommand: (input: UpdateAttendeeCapabilitiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const deserializeAws_restJson1BatchCreateAttendeeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchCreateAttendeeCommandOutput>;
36
- export declare const deserializeAws_restJson1BatchUpdateAttendeeCapabilitiesExceptCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchUpdateAttendeeCapabilitiesExceptCommandOutput>;
37
- export declare const deserializeAws_restJson1CreateAttendeeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAttendeeCommandOutput>;
38
- export declare const deserializeAws_restJson1CreateMeetingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMeetingCommandOutput>;
39
- export declare const deserializeAws_restJson1CreateMeetingWithAttendeesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMeetingWithAttendeesCommandOutput>;
40
- export declare const deserializeAws_restJson1DeleteAttendeeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAttendeeCommandOutput>;
41
- export declare const deserializeAws_restJson1DeleteMeetingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMeetingCommandOutput>;
42
- export declare const deserializeAws_restJson1GetAttendeeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAttendeeCommandOutput>;
43
- export declare const deserializeAws_restJson1GetMeetingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMeetingCommandOutput>;
44
- export declare const deserializeAws_restJson1ListAttendeesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAttendeesCommandOutput>;
45
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
46
- export declare const deserializeAws_restJson1StartMeetingTranscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartMeetingTranscriptionCommandOutput>;
47
- export declare const deserializeAws_restJson1StopMeetingTranscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopMeetingTranscriptionCommandOutput>;
48
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
49
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
50
- export declare const deserializeAws_restJson1UpdateAttendeeCapabilitiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAttendeeCapabilitiesCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ BatchCreateAttendeeCommandInput,
8
+ BatchCreateAttendeeCommandOutput,
9
+ } from "../commands/BatchCreateAttendeeCommand";
10
+ import {
11
+ BatchUpdateAttendeeCapabilitiesExceptCommandInput,
12
+ BatchUpdateAttendeeCapabilitiesExceptCommandOutput,
13
+ } from "../commands/BatchUpdateAttendeeCapabilitiesExceptCommand";
14
+ import {
15
+ CreateAttendeeCommandInput,
16
+ CreateAttendeeCommandOutput,
17
+ } from "../commands/CreateAttendeeCommand";
18
+ import {
19
+ CreateMeetingCommandInput,
20
+ CreateMeetingCommandOutput,
21
+ } from "../commands/CreateMeetingCommand";
22
+ import {
23
+ CreateMeetingWithAttendeesCommandInput,
24
+ CreateMeetingWithAttendeesCommandOutput,
25
+ } from "../commands/CreateMeetingWithAttendeesCommand";
26
+ import {
27
+ DeleteAttendeeCommandInput,
28
+ DeleteAttendeeCommandOutput,
29
+ } from "../commands/DeleteAttendeeCommand";
30
+ import {
31
+ DeleteMeetingCommandInput,
32
+ DeleteMeetingCommandOutput,
33
+ } from "../commands/DeleteMeetingCommand";
34
+ import {
35
+ GetAttendeeCommandInput,
36
+ GetAttendeeCommandOutput,
37
+ } from "../commands/GetAttendeeCommand";
38
+ import {
39
+ GetMeetingCommandInput,
40
+ GetMeetingCommandOutput,
41
+ } from "../commands/GetMeetingCommand";
42
+ import {
43
+ ListAttendeesCommandInput,
44
+ ListAttendeesCommandOutput,
45
+ } from "../commands/ListAttendeesCommand";
46
+ import {
47
+ ListTagsForResourceCommandInput,
48
+ ListTagsForResourceCommandOutput,
49
+ } from "../commands/ListTagsForResourceCommand";
50
+ import {
51
+ StartMeetingTranscriptionCommandInput,
52
+ StartMeetingTranscriptionCommandOutput,
53
+ } from "../commands/StartMeetingTranscriptionCommand";
54
+ import {
55
+ StopMeetingTranscriptionCommandInput,
56
+ StopMeetingTranscriptionCommandOutput,
57
+ } from "../commands/StopMeetingTranscriptionCommand";
58
+ import {
59
+ TagResourceCommandInput,
60
+ TagResourceCommandOutput,
61
+ } from "../commands/TagResourceCommand";
62
+ import {
63
+ UntagResourceCommandInput,
64
+ UntagResourceCommandOutput,
65
+ } from "../commands/UntagResourceCommand";
66
+ import {
67
+ UpdateAttendeeCapabilitiesCommandInput,
68
+ UpdateAttendeeCapabilitiesCommandOutput,
69
+ } from "../commands/UpdateAttendeeCapabilitiesCommand";
70
+ export declare const serializeAws_restJson1BatchCreateAttendeeCommand: (
71
+ input: BatchCreateAttendeeCommandInput,
72
+ context: __SerdeContext
73
+ ) => Promise<__HttpRequest>;
74
+ export declare const serializeAws_restJson1BatchUpdateAttendeeCapabilitiesExceptCommand: (
75
+ input: BatchUpdateAttendeeCapabilitiesExceptCommandInput,
76
+ context: __SerdeContext
77
+ ) => Promise<__HttpRequest>;
78
+ export declare const serializeAws_restJson1CreateAttendeeCommand: (
79
+ input: CreateAttendeeCommandInput,
80
+ context: __SerdeContext
81
+ ) => Promise<__HttpRequest>;
82
+ export declare const serializeAws_restJson1CreateMeetingCommand: (
83
+ input: CreateMeetingCommandInput,
84
+ context: __SerdeContext
85
+ ) => Promise<__HttpRequest>;
86
+ export declare const serializeAws_restJson1CreateMeetingWithAttendeesCommand: (
87
+ input: CreateMeetingWithAttendeesCommandInput,
88
+ context: __SerdeContext
89
+ ) => Promise<__HttpRequest>;
90
+ export declare const serializeAws_restJson1DeleteAttendeeCommand: (
91
+ input: DeleteAttendeeCommandInput,
92
+ context: __SerdeContext
93
+ ) => Promise<__HttpRequest>;
94
+ export declare const serializeAws_restJson1DeleteMeetingCommand: (
95
+ input: DeleteMeetingCommandInput,
96
+ context: __SerdeContext
97
+ ) => Promise<__HttpRequest>;
98
+ export declare const serializeAws_restJson1GetAttendeeCommand: (
99
+ input: GetAttendeeCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const serializeAws_restJson1GetMeetingCommand: (
103
+ input: GetMeetingCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_restJson1ListAttendeesCommand: (
107
+ input: ListAttendeesCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
111
+ input: ListTagsForResourceCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
114
+ export declare const serializeAws_restJson1StartMeetingTranscriptionCommand: (
115
+ input: StartMeetingTranscriptionCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const serializeAws_restJson1StopMeetingTranscriptionCommand: (
119
+ input: StopMeetingTranscriptionCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const serializeAws_restJson1TagResourceCommand: (
123
+ input: TagResourceCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_restJson1UntagResourceCommand: (
127
+ input: UntagResourceCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_restJson1UpdateAttendeeCapabilitiesCommand: (
131
+ input: UpdateAttendeeCapabilitiesCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const deserializeAws_restJson1BatchCreateAttendeeCommand: (
135
+ output: __HttpResponse,
136
+ context: __SerdeContext
137
+ ) => Promise<BatchCreateAttendeeCommandOutput>;
138
+ export declare const deserializeAws_restJson1BatchUpdateAttendeeCapabilitiesExceptCommand: (
139
+ output: __HttpResponse,
140
+ context: __SerdeContext
141
+ ) => Promise<BatchUpdateAttendeeCapabilitiesExceptCommandOutput>;
142
+ export declare const deserializeAws_restJson1CreateAttendeeCommand: (
143
+ output: __HttpResponse,
144
+ context: __SerdeContext
145
+ ) => Promise<CreateAttendeeCommandOutput>;
146
+ export declare const deserializeAws_restJson1CreateMeetingCommand: (
147
+ output: __HttpResponse,
148
+ context: __SerdeContext
149
+ ) => Promise<CreateMeetingCommandOutput>;
150
+ export declare const deserializeAws_restJson1CreateMeetingWithAttendeesCommand: (
151
+ output: __HttpResponse,
152
+ context: __SerdeContext
153
+ ) => Promise<CreateMeetingWithAttendeesCommandOutput>;
154
+ export declare const deserializeAws_restJson1DeleteAttendeeCommand: (
155
+ output: __HttpResponse,
156
+ context: __SerdeContext
157
+ ) => Promise<DeleteAttendeeCommandOutput>;
158
+ export declare const deserializeAws_restJson1DeleteMeetingCommand: (
159
+ output: __HttpResponse,
160
+ context: __SerdeContext
161
+ ) => Promise<DeleteMeetingCommandOutput>;
162
+ export declare const deserializeAws_restJson1GetAttendeeCommand: (
163
+ output: __HttpResponse,
164
+ context: __SerdeContext
165
+ ) => Promise<GetAttendeeCommandOutput>;
166
+ export declare const deserializeAws_restJson1GetMeetingCommand: (
167
+ output: __HttpResponse,
168
+ context: __SerdeContext
169
+ ) => Promise<GetMeetingCommandOutput>;
170
+ export declare const deserializeAws_restJson1ListAttendeesCommand: (
171
+ output: __HttpResponse,
172
+ context: __SerdeContext
173
+ ) => Promise<ListAttendeesCommandOutput>;
174
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
175
+ output: __HttpResponse,
176
+ context: __SerdeContext
177
+ ) => Promise<ListTagsForResourceCommandOutput>;
178
+ export declare const deserializeAws_restJson1StartMeetingTranscriptionCommand: (
179
+ output: __HttpResponse,
180
+ context: __SerdeContext
181
+ ) => Promise<StartMeetingTranscriptionCommandOutput>;
182
+ export declare const deserializeAws_restJson1StopMeetingTranscriptionCommand: (
183
+ output: __HttpResponse,
184
+ context: __SerdeContext
185
+ ) => Promise<StopMeetingTranscriptionCommandOutput>;
186
+ export declare const deserializeAws_restJson1TagResourceCommand: (
187
+ output: __HttpResponse,
188
+ context: __SerdeContext
189
+ ) => Promise<TagResourceCommandOutput>;
190
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
191
+ output: __HttpResponse,
192
+ context: __SerdeContext
193
+ ) => Promise<UntagResourceCommandOutput>;
194
+ export declare const deserializeAws_restJson1UpdateAttendeeCapabilitiesCommand: (
195
+ output: __HttpResponse,
196
+ context: __SerdeContext
197
+ ) => Promise<UpdateAttendeeCapabilitiesCommandOutput>;
@@ -1,38 +1,68 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { ChimeSDKMeetingsClientConfig } from "./ChimeSDKMeetingsClient";
3
-
4
- export declare const getRuntimeConfig: (config: ChimeSDKMeetingsClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { ChimeSDKMeetingsClientConfig } from "./ChimeSDKMeetingsClient";
3
+
4
+ export declare const getRuntimeConfig: (
5
+ config: ChimeSDKMeetingsClientConfig
6
+ ) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<
9
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
10
+ >;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
14
+ credentialDefaultProvider: (
15
+ input: any
16
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
17
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
18
+ import("@aws-sdk/types").UserAgent
19
+ >;
20
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
21
+ region: string | import("@aws-sdk/types").Provider<any>;
22
+ requestHandler:
23
+ | (import("@aws-sdk/types").RequestHandler<
24
+ any,
25
+ any,
26
+ import("@aws-sdk/types").HttpHandlerOptions
27
+ > &
28
+ import("@aws-sdk/protocol-http").HttpHandler)
29
+ | RequestHandler;
30
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
31
+ sha256: import("@aws-sdk/types").HashConstructor;
32
+ streamCollector: import("@aws-sdk/types").StreamCollector;
33
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
34
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
35
+ utf8Decoder: import("@aws-sdk/types").Decoder;
36
+ utf8Encoder: import("@aws-sdk/types").Encoder;
37
+ apiVersion: string;
38
+ urlParser: import("@aws-sdk/types").UrlParser;
39
+ disableHostPrefix: boolean;
40
+ logger: import("@aws-sdk/types").Logger;
41
+ serviceId: string;
42
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
43
+ endpoint?:
44
+ | string
45
+ | import("@aws-sdk/types").Endpoint
46
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
47
+ | undefined;
48
+ tls?: boolean | undefined;
49
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
50
+ credentials?:
51
+ | import("@aws-sdk/types").Credentials
52
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
53
+ | undefined;
54
+ signer?:
55
+ | import("@aws-sdk/types").RequestSigner
56
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
57
+ | undefined;
58
+ signingEscapePath?: boolean | undefined;
59
+ systemClockOffset?: number | undefined;
60
+ signingRegion?: string | undefined;
61
+ signerConstructor?:
62
+ | (new (
63
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
64
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
65
+ ) => import("@aws-sdk/types").RequestSigner)
66
+ | undefined;
67
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
68
+ };
@@ -1,38 +1,68 @@
1
- import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
- import { ChimeSDKMeetingsClientConfig } from "./ChimeSDKMeetingsClient";
3
-
4
- export declare const getRuntimeConfig: (config: ChimeSDKMeetingsClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<string>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { ChimeSDKMeetingsClientConfig } from "./ChimeSDKMeetingsClient";
3
+
4
+ export declare const getRuntimeConfig: (
5
+ config: ChimeSDKMeetingsClientConfig
6
+ ) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<
9
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
10
+ >;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
14
+ credentialDefaultProvider: (
15
+ input: any
16
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
17
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
18
+ import("@aws-sdk/types").UserAgent
19
+ >;
20
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
21
+ region: string | import("@aws-sdk/types").Provider<string>;
22
+ requestHandler:
23
+ | (import("@aws-sdk/types").RequestHandler<
24
+ any,
25
+ any,
26
+ import("@aws-sdk/types").HttpHandlerOptions
27
+ > &
28
+ import("@aws-sdk/protocol-http").HttpHandler)
29
+ | RequestHandler;
30
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
31
+ sha256: import("@aws-sdk/types").HashConstructor;
32
+ streamCollector: import("@aws-sdk/types").StreamCollector;
33
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
34
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
35
+ utf8Decoder: import("@aws-sdk/types").Decoder;
36
+ utf8Encoder: import("@aws-sdk/types").Encoder;
37
+ apiVersion: string;
38
+ urlParser: import("@aws-sdk/types").UrlParser;
39
+ disableHostPrefix: boolean;
40
+ logger: import("@aws-sdk/types").Logger;
41
+ serviceId: string;
42
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
43
+ endpoint?:
44
+ | string
45
+ | import("@aws-sdk/types").Endpoint
46
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
47
+ | undefined;
48
+ tls?: boolean | undefined;
49
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
50
+ credentials?:
51
+ | import("@aws-sdk/types").Credentials
52
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
53
+ | undefined;
54
+ signer?:
55
+ | import("@aws-sdk/types").RequestSigner
56
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
57
+ | undefined;
58
+ signingEscapePath?: boolean | undefined;
59
+ systemClockOffset?: number | undefined;
60
+ signingRegion?: string | undefined;
61
+ signerConstructor?:
62
+ | (new (
63
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
64
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
65
+ ) => import("@aws-sdk/types").RequestSigner)
66
+ | undefined;
67
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
68
+ };
@@ -1,37 +1,69 @@
1
- import { ChimeSDKMeetingsClientConfig } from "./ChimeSDKMeetingsClient";
2
-
3
- export declare const getRuntimeConfig: (config: ChimeSDKMeetingsClientConfig) => {
4
- runtime: string;
5
- sha256: import("@aws-sdk/types").HashConstructor;
6
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
- apiVersion: string;
8
- urlParser: import("@aws-sdk/types").UrlParser;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- streamCollector: import("@aws-sdk/types").StreamCollector;
11
- base64Decoder: import("@aws-sdk/types").Decoder;
12
- base64Encoder: import("@aws-sdk/types").Encoder;
13
- utf8Decoder: import("@aws-sdk/types").Decoder;
14
- utf8Encoder: import("@aws-sdk/types").Encoder;
15
- disableHostPrefix: boolean;
16
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
- retryMode: string | import("@aws-sdk/types").Provider<string>;
18
- logger: import("@aws-sdk/types").Logger;
19
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
- serviceId: string;
22
- region: string | import("@aws-sdk/types").Provider<any>;
23
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
- defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
27
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
- tls?: boolean | undefined;
29
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
- signingEscapePath?: boolean | undefined;
33
- systemClockOffset?: number | undefined;
34
- signingRegion?: string | undefined;
35
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
- };
1
+ import { ChimeSDKMeetingsClientConfig } from "./ChimeSDKMeetingsClient";
2
+
3
+ export declare const getRuntimeConfig: (
4
+ config: ChimeSDKMeetingsClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ sha256: import("@aws-sdk/types").HashConstructor;
8
+ requestHandler:
9
+ | (import("@aws-sdk/types").RequestHandler<
10
+ any,
11
+ any,
12
+ import("@aws-sdk/types").HttpHandlerOptions
13
+ > &
14
+ import("@aws-sdk/protocol-http").HttpHandler)
15
+ | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
16
+ apiVersion: string;
17
+ urlParser: import("@aws-sdk/types").UrlParser;
18
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
19
+ streamCollector: import("@aws-sdk/types").StreamCollector;
20
+ base64Decoder: import("@aws-sdk/types").Decoder;
21
+ base64Encoder: import("@aws-sdk/types").Encoder;
22
+ utf8Decoder: import("@aws-sdk/types").Decoder;
23
+ utf8Encoder: import("@aws-sdk/types").Encoder;
24
+ disableHostPrefix: boolean;
25
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
26
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
27
+ logger: import("@aws-sdk/types").Logger;
28
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
29
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
30
+ serviceId: string;
31
+ region: string | import("@aws-sdk/types").Provider<any>;
32
+ credentialDefaultProvider: (
33
+ input: any
34
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
35
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
36
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
37
+ import("@aws-sdk/types").UserAgent
38
+ >;
39
+ defaultsMode:
40
+ | import("@aws-sdk/smithy-client").DefaultsMode
41
+ | import("@aws-sdk/types").Provider<
42
+ import("@aws-sdk/smithy-client").DefaultsMode
43
+ >;
44
+ endpoint?:
45
+ | string
46
+ | import("@aws-sdk/types").Endpoint
47
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
48
+ | undefined;
49
+ tls?: boolean | undefined;
50
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
51
+ credentials?:
52
+ | import("@aws-sdk/types").Credentials
53
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
54
+ | undefined;
55
+ signer?:
56
+ | import("@aws-sdk/types").RequestSigner
57
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
58
+ | undefined;
59
+ signingEscapePath?: boolean | undefined;
60
+ systemClockOffset?: number | undefined;
61
+ signingRegion?: string | undefined;
62
+ signerConstructor?:
63
+ | (new (
64
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
65
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
66
+ ) => import("@aws-sdk/types").RequestSigner)
67
+ | undefined;
68
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
69
+ };