@aws-sdk/client-chime-sdk-meetings 3.141.0 → 3.145.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 (32) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist-cjs/ChimeSDKMeetings.js +45 -0
  3. package/dist-cjs/commands/ListTagsForResourceCommand.js +36 -0
  4. package/dist-cjs/commands/TagResourceCommand.js +36 -0
  5. package/dist-cjs/commands/UntagResourceCommand.js +36 -0
  6. package/dist-cjs/commands/index.js +3 -0
  7. package/dist-cjs/models/models_0.js +64 -2
  8. package/dist-cjs/protocols/Aws_restJson1.js +452 -382
  9. package/dist-es/ChimeSDKMeetings.js +45 -0
  10. package/dist-es/commands/ListTagsForResourceCommand.js +39 -0
  11. package/dist-es/commands/TagResourceCommand.js +39 -0
  12. package/dist-es/commands/UntagResourceCommand.js +39 -0
  13. package/dist-es/commands/index.js +3 -0
  14. package/dist-es/models/models_0.js +39 -0
  15. package/dist-es/protocols/Aws_restJson1.js +575 -394
  16. package/dist-types/ChimeSDKMeetings.d.ts +46 -0
  17. package/dist-types/ChimeSDKMeetingsClient.d.ts +5 -2
  18. package/dist-types/commands/ListTagsForResourceCommand.d.ts +35 -0
  19. package/dist-types/commands/TagResourceCommand.d.ts +35 -0
  20. package/dist-types/commands/UntagResourceCommand.d.ts +60 -0
  21. package/dist-types/commands/index.d.ts +3 -0
  22. package/dist-types/models/models_0.d.ts +181 -0
  23. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  24. package/dist-types/ts3.4/ChimeSDKMeetings.d.ts +15 -0
  25. package/dist-types/ts3.4/ChimeSDKMeetingsClient.d.ts +5 -2
  26. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  30. package/dist-types/ts3.4/models/models_0.d.ts +80 -0
  31. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +9 -0
  32. package/package.json +11 -6
@@ -0,0 +1,17 @@
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
+ }
@@ -8,6 +8,9 @@ export * from "./DeleteMeetingCommand";
8
8
  export * from "./GetAttendeeCommand";
9
9
  export * from "./GetMeetingCommand";
10
10
  export * from "./ListAttendeesCommand";
11
+ export * from "./ListTagsForResourceCommand";
11
12
  export * from "./StartMeetingTranscriptionCommand";
12
13
  export * from "./StopMeetingTranscriptionCommand";
14
+ export * from "./TagResourceCommand";
15
+ export * from "./UntagResourceCommand";
13
16
  export * from "./UpdateAttendeeCapabilitiesCommand";
@@ -118,6 +118,7 @@ export declare class ServiceFailureException extends __BaseException {
118
118
  readonly $fault: "server";
119
119
  Code?: string;
120
120
  Message?: string;
121
+
121
122
  RequestId?: string;
122
123
 
123
124
  constructor(opts: __ExceptionOptionType<ServiceFailureException, __BaseException>);
@@ -141,6 +142,7 @@ export declare class ThrottlingException extends __BaseException {
141
142
  readonly $fault: "client";
142
143
  Code?: string;
143
144
  Message?: string;
145
+
144
146
  RequestId?: string;
145
147
 
146
148
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
@@ -181,6 +183,7 @@ export declare class ConflictException extends __BaseException {
181
183
  readonly $fault: "client";
182
184
  Code?: string;
183
185
  Message?: string;
186
+
184
187
  RequestId?: string;
185
188
 
186
189
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
@@ -211,6 +214,13 @@ export interface NotificationsConfiguration {
211
214
 
212
215
  SqsQueueArn?: string;
213
216
  }
217
+
218
+ export interface Tag {
219
+
220
+ Key: string | undefined;
221
+
222
+ Value: string | undefined;
223
+ }
214
224
  export interface CreateMeetingRequest {
215
225
 
216
226
  ClientRequestToken?: string;
@@ -228,6 +238,8 @@ export interface CreateMeetingRequest {
228
238
  PrimaryMeetingId?: string;
229
239
 
230
240
  TenantIds?: string[];
241
+
242
+ Tags?: Tag[];
231
243
  }
232
244
 
233
245
  export interface MediaPlacement {
@@ -266,6 +278,8 @@ export interface Meeting {
266
278
  PrimaryMeetingId?: string;
267
279
 
268
280
  TenantIds?: string[];
281
+
282
+ MeetingArn?: string;
269
283
  }
270
284
  export interface CreateMeetingResponse {
271
285
 
@@ -290,6 +304,8 @@ export interface CreateMeetingWithAttendeesRequest {
290
304
  PrimaryMeetingId?: string;
291
305
 
292
306
  TenantIds?: string[];
307
+
308
+ Tags?: Tag[];
293
309
  }
294
310
  export interface CreateMeetingWithAttendeesResponse {
295
311
 
@@ -341,6 +357,27 @@ export interface ListAttendeesResponse {
341
357
 
342
358
  NextToken?: string;
343
359
  }
360
+ export interface ListTagsForResourceRequest {
361
+
362
+ ResourceARN: string | undefined;
363
+ }
364
+ export interface ListTagsForResourceResponse {
365
+
366
+ Tags?: Tag[];
367
+ }
368
+
369
+ export declare class ResourceNotFoundException extends __BaseException {
370
+ readonly name: "ResourceNotFoundException";
371
+ readonly $fault: "client";
372
+ Code?: string;
373
+ Message?: string;
374
+
375
+ RequestId?: string;
376
+
377
+ ResourceName?: string;
378
+
379
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
380
+ }
344
381
  export declare enum TranscribeMedicalContentIdentificationType {
345
382
  PHI = "PHI"
346
383
  }
@@ -476,6 +513,35 @@ export interface StopMeetingTranscriptionRequest {
476
513
 
477
514
  MeetingId: string | undefined;
478
515
  }
516
+ export interface TagResourceRequest {
517
+
518
+ ResourceARN: string | undefined;
519
+
520
+ Tags: Tag[] | undefined;
521
+ }
522
+ export interface TagResourceResponse {
523
+ }
524
+
525
+ export declare class TooManyTagsException extends __BaseException {
526
+ readonly name: "TooManyTagsException";
527
+ readonly $fault: "client";
528
+ Code?: string;
529
+ Message?: string;
530
+
531
+ RequestId?: string;
532
+
533
+ ResourceName?: string;
534
+
535
+ constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
536
+ }
537
+ export interface UntagResourceRequest {
538
+
539
+ ResourceARN: string | undefined;
540
+
541
+ TagKeys: string[] | undefined;
542
+ }
543
+ export interface UntagResourceResponse {
544
+ }
479
545
  export interface UpdateAttendeeCapabilitiesRequest {
480
546
 
481
547
  MeetingId: string | undefined;
@@ -515,6 +581,8 @@ export declare const MeetingFeaturesConfigurationFilterSensitiveLog: (obj: Meeti
515
581
 
516
582
  export declare const NotificationsConfigurationFilterSensitiveLog: (obj: NotificationsConfiguration) => any;
517
583
 
584
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
585
+
518
586
  export declare const CreateMeetingRequestFilterSensitiveLog: (obj: CreateMeetingRequest) => any;
519
587
 
520
588
  export declare const MediaPlacementFilterSensitiveLog: (obj: MediaPlacement) => any;
@@ -543,6 +611,10 @@ export declare const ListAttendeesRequestFilterSensitiveLog: (obj: ListAttendees
543
611
 
544
612
  export declare const ListAttendeesResponseFilterSensitiveLog: (obj: ListAttendeesResponse) => any;
545
613
 
614
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
615
+
616
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
617
+
546
618
  export declare const EngineTranscribeMedicalSettingsFilterSensitiveLog: (obj: EngineTranscribeMedicalSettings) => any;
547
619
 
548
620
  export declare const EngineTranscribeSettingsFilterSensitiveLog: (obj: EngineTranscribeSettings) => any;
@@ -553,6 +625,14 @@ export declare const StartMeetingTranscriptionRequestFilterSensitiveLog: (obj: S
553
625
 
554
626
  export declare const StopMeetingTranscriptionRequestFilterSensitiveLog: (obj: StopMeetingTranscriptionRequest) => any;
555
627
 
628
+ export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
629
+
630
+ export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
631
+
632
+ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
633
+
634
+ export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
635
+
556
636
  export declare const UpdateAttendeeCapabilitiesRequestFilterSensitiveLog: (obj: UpdateAttendeeCapabilitiesRequest) => any;
557
637
 
558
638
  export declare const UpdateAttendeeCapabilitiesResponseFilterSensitiveLog: (obj: UpdateAttendeeCapabilitiesResponse) => any;
@@ -10,8 +10,11 @@ import { DeleteMeetingCommandInput, DeleteMeetingCommandOutput } from "../comman
10
10
  import { GetAttendeeCommandInput, GetAttendeeCommandOutput } from "../commands/GetAttendeeCommand";
11
11
  import { GetMeetingCommandInput, GetMeetingCommandOutput } from "../commands/GetMeetingCommand";
12
12
  import { ListAttendeesCommandInput, ListAttendeesCommandOutput } from "../commands/ListAttendeesCommand";
13
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
13
14
  import { StartMeetingTranscriptionCommandInput, StartMeetingTranscriptionCommandOutput } from "../commands/StartMeetingTranscriptionCommand";
14
15
  import { StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOutput } from "../commands/StopMeetingTranscriptionCommand";
16
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
17
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
15
18
  import { UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput } from "../commands/UpdateAttendeeCapabilitiesCommand";
16
19
  export declare const serializeAws_restJson1BatchCreateAttendeeCommand: (input: BatchCreateAttendeeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
20
  export declare const serializeAws_restJson1BatchUpdateAttendeeCapabilitiesExceptCommand: (input: BatchUpdateAttendeeCapabilitiesExceptCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -23,8 +26,11 @@ export declare const serializeAws_restJson1DeleteMeetingCommand: (input: DeleteM
23
26
  export declare const serializeAws_restJson1GetAttendeeCommand: (input: GetAttendeeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
27
  export declare const serializeAws_restJson1GetMeetingCommand: (input: GetMeetingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
28
  export declare const serializeAws_restJson1ListAttendeesCommand: (input: ListAttendeesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
30
  export declare const serializeAws_restJson1StartMeetingTranscriptionCommand: (input: StartMeetingTranscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
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>;
28
34
  export declare const serializeAws_restJson1UpdateAttendeeCapabilitiesCommand: (input: UpdateAttendeeCapabilitiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
35
  export declare const deserializeAws_restJson1BatchCreateAttendeeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchCreateAttendeeCommandOutput>;
30
36
  export declare const deserializeAws_restJson1BatchUpdateAttendeeCapabilitiesExceptCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchUpdateAttendeeCapabilitiesExceptCommandOutput>;
@@ -36,6 +42,9 @@ export declare const deserializeAws_restJson1DeleteMeetingCommand: (output: __Ht
36
42
  export declare const deserializeAws_restJson1GetAttendeeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAttendeeCommandOutput>;
37
43
  export declare const deserializeAws_restJson1GetMeetingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMeetingCommandOutput>;
38
44
  export declare const deserializeAws_restJson1ListAttendeesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAttendeesCommandOutput>;
45
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
39
46
  export declare const deserializeAws_restJson1StartMeetingTranscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartMeetingTranscriptionCommandOutput>;
40
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>;
41
50
  export declare const deserializeAws_restJson1UpdateAttendeeCapabilitiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAttendeeCapabilitiesCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-chime-sdk-meetings",
3
3
  "description": "AWS SDK for JavaScript Chime Sdk Meetings Client for Node.js, Browser and React Native",
4
- "version": "3.141.0",
4
+ "version": "3.145.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,9 +18,9 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.141.0",
21
+ "@aws-sdk/client-sts": "3.145.0",
22
22
  "@aws-sdk/config-resolver": "3.130.0",
23
- "@aws-sdk/credential-provider-node": "3.141.0",
23
+ "@aws-sdk/credential-provider-node": "3.145.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.131.0",
25
25
  "@aws-sdk/hash-node": "3.127.0",
26
26
  "@aws-sdk/invalid-dependency": "3.127.0",
@@ -36,15 +36,15 @@
36
36
  "@aws-sdk/node-config-provider": "3.127.0",
37
37
  "@aws-sdk/node-http-handler": "3.127.0",
38
38
  "@aws-sdk/protocol-http": "3.127.0",
39
- "@aws-sdk/smithy-client": "3.137.0",
39
+ "@aws-sdk/smithy-client": "3.142.0",
40
40
  "@aws-sdk/types": "3.127.0",
41
41
  "@aws-sdk/url-parser": "3.127.0",
42
42
  "@aws-sdk/util-base64-browser": "3.109.0",
43
43
  "@aws-sdk/util-base64-node": "3.55.0",
44
44
  "@aws-sdk/util-body-length-browser": "3.55.0",
45
45
  "@aws-sdk/util-body-length-node": "3.55.0",
46
- "@aws-sdk/util-defaults-mode-browser": "3.137.0",
47
- "@aws-sdk/util-defaults-mode-node": "3.137.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.142.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.142.0",
48
48
  "@aws-sdk/util-user-agent-browser": "3.127.0",
49
49
  "@aws-sdk/util-user-agent-node": "3.127.0",
50
50
  "@aws-sdk/util-utf8-browser": "3.109.0",
@@ -63,6 +63,11 @@
63
63
  "typedoc": "0.19.2",
64
64
  "typescript": "~4.6.2"
65
65
  },
66
+ "overrides": {
67
+ "typedoc": {
68
+ "typescript": "~4.6.2"
69
+ }
70
+ },
66
71
  "engines": {
67
72
  "node": ">=12.0.0"
68
73
  },