@aws-sdk/client-chime-sdk-meetings 3.142.0 → 3.150.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 +27 -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 +260 -1
  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 +333 -5
  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 +8 -3
@@ -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";
@@ -246,6 +246,9 @@ export declare class ServiceFailureException extends __BaseException {
246
246
  readonly $fault: "server";
247
247
  Code?: string;
248
248
  Message?: string;
249
+ /**
250
+ * <p>The ID of the failed request.</p>
251
+ */
249
252
  RequestId?: string;
250
253
  /**
251
254
  * @internal
@@ -281,6 +284,9 @@ export declare class ThrottlingException extends __BaseException {
281
284
  readonly $fault: "client";
282
285
  Code?: string;
283
286
  Message?: string;
287
+ /**
288
+ * <p>The ID of the request that exceeded the throttling limit.</p>
289
+ */
284
290
  RequestId?: string;
285
291
  /**
286
292
  * @internal
@@ -343,6 +349,9 @@ export declare class ConflictException extends __BaseException {
343
349
  readonly $fault: "client";
344
350
  Code?: string;
345
351
  Message?: string;
352
+ /**
353
+ * <p>The ID of the request involved in the conflict.</p>
354
+ */
346
355
  RequestId?: string;
347
356
  /**
348
357
  * @internal
@@ -418,6 +427,19 @@ export interface NotificationsConfiguration {
418
427
  */
419
428
  SqsQueueArn?: string;
420
429
  }
430
+ /**
431
+ * <p>A key-value pair that you define.</p>
432
+ */
433
+ export interface Tag {
434
+ /**
435
+ * <p>The tag's key.</p>
436
+ */
437
+ Key: string | undefined;
438
+ /**
439
+ * <p>The tag's value.</p>
440
+ */
441
+ Value: string | undefined;
442
+ }
421
443
  export interface CreateMeetingRequest {
422
444
  /**
423
445
  * <p>The unique identifier for the client request. Use a different token for different meetings.</p>
@@ -474,6 +496,51 @@ export interface CreateMeetingRequest {
474
496
  * <p>A consistent and opaque identifier, created and maintained by the builder to represent a segment of their users.</p>
475
497
  */
476
498
  TenantIds?: string[];
499
+ /**
500
+ * <p>Applies one or more tags to an Amazon Chime SDK meeting. Note the following:</p>
501
+ * <ul>
502
+ * <li>
503
+ * <p>Not all resources have tags. For a list of services with resources that support tagging using this operation, see
504
+ * <a href="https://docs.aws.amazon.com/resourcegroupstagging/latest/APIReference/supported-services.html">Services that support the Resource Groups Tagging API</a>. If the resource
505
+ * doesn't yet support this operation, the resource's service might support tagging using its own API operations. For more information, refer to the documentation for that service.</p>
506
+ * </li>
507
+ * <li>
508
+ * <p>Each resource can have up to 50 tags. For other limits, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html#tag-conventions">Tag Naming and Usage Conventions</a> in the
509
+ * <i>AWS General Reference</i>.</p>
510
+ * </li>
511
+ * <li>
512
+ * <p>You can only tag resources that are located in the specified AWS Region for the AWS account.</p>
513
+ * </li>
514
+ * <li>
515
+ * <p>To add tags to a resource, you need the necessary permissions for the service that the resource belongs to as well as permissions for adding tags. For more information, see the
516
+ * documentation for each service.</p>
517
+ * </li>
518
+ * </ul>
519
+ * <important>
520
+ * <p>Do not store personally identifiable information (PII) or other confidential or sensitive information in tags. We use tags to provide you with billing and administration services. Tags are not intended to be
521
+ * used for private or sensitive data.</p>
522
+ * </important>
523
+ * <p>
524
+ * <b>Minimum permissions</b>
525
+ * </p>
526
+ *
527
+ * <p> In addition to the <code>tag:TagResources </code>permission required by this operation, you must also have the tagging permission defined by the service that created the resource. For example,
528
+ * to tag a <code>ChimeSDKMeetings</code> instance using the <code>TagResources</code> operation, you must have both of the following permissions:</p>
529
+ *
530
+ * <p>
531
+ * <code>tag:TagResources</code>
532
+ * </p>
533
+ *
534
+ * <p>
535
+ * <code>ChimeSDKMeetings:CreateTags</code>
536
+ * </p>
537
+ *
538
+ * <note>
539
+ * <p>Some services might have specific requirements for tagging some resources. For example, to tag an Amazon S3 bucket, you must also have the <code>s3:GetBucketTagging</code> permission.
540
+ * If the expected minimum permissions don't work, check the documentation for that service's tagging APIs for more information.</p>
541
+ * </note>
542
+ */
543
+ Tags?: Tag[];
477
544
  }
478
545
  /**
479
546
  * <p>A set of endpoints used by clients to connect to the media service group for an Amazon Chime SDK meeting.</p>
@@ -554,6 +621,10 @@ export interface Meeting {
554
621
  * <p>Array of strings.</p>
555
622
  */
556
623
  TenantIds?: string[];
624
+ /**
625
+ * <p>The ARN of the meeting.</p>
626
+ */
627
+ MeetingArn?: string;
557
628
  }
558
629
  export interface CreateMeetingResponse {
559
630
  /**
@@ -622,6 +693,10 @@ export interface CreateMeetingWithAttendeesRequest {
622
693
  * <p>A consistent and opaque identifier, created and maintained by the builder to represent a segment of their users.</p>
623
694
  */
624
695
  TenantIds?: string[];
696
+ /**
697
+ * <p>The tags in the request.</p>
698
+ */
699
+ Tags?: Tag[];
625
700
  }
626
701
  export interface CreateMeetingWithAttendeesResponse {
627
702
  /**
@@ -706,6 +781,39 @@ export interface ListAttendeesResponse {
706
781
  */
707
782
  NextToken?: string;
708
783
  }
784
+ export interface ListTagsForResourceRequest {
785
+ /**
786
+ * <p>The ARN of the resource.</p>
787
+ */
788
+ ResourceARN: string | undefined;
789
+ }
790
+ export interface ListTagsForResourceResponse {
791
+ /**
792
+ * <p>The tags requested for the specified resource.</p>
793
+ */
794
+ Tags?: Tag[];
795
+ }
796
+ /**
797
+ * <p>The resource that you want to tag couldn't be found.</p>
798
+ */
799
+ export declare class ResourceNotFoundException extends __BaseException {
800
+ readonly name: "ResourceNotFoundException";
801
+ readonly $fault: "client";
802
+ Code?: string;
803
+ Message?: string;
804
+ /**
805
+ * <p>The ID of the resource that couldn't be found.</p>
806
+ */
807
+ RequestId?: string;
808
+ /**
809
+ * <p>The name of the resource that couldn't be found.</p>
810
+ */
811
+ ResourceName?: string;
812
+ /**
813
+ * @internal
814
+ */
815
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
816
+ }
709
817
  export declare enum TranscribeMedicalContentIdentificationType {
710
818
  PHI = "PHI"
711
819
  }
@@ -908,6 +1016,51 @@ export interface StopMeetingTranscriptionRequest {
908
1016
  */
909
1017
  MeetingId: string | undefined;
910
1018
  }
1019
+ export interface TagResourceRequest {
1020
+ /**
1021
+ * <p>The ARN of the resource.</p>
1022
+ */
1023
+ ResourceARN: string | undefined;
1024
+ /**
1025
+ * <p>Lists the requested tags.</p>
1026
+ */
1027
+ Tags: Tag[] | undefined;
1028
+ }
1029
+ export interface TagResourceResponse {
1030
+ }
1031
+ /**
1032
+ * <p>Too many tags were added to the specified resource.</p>
1033
+ */
1034
+ export declare class TooManyTagsException extends __BaseException {
1035
+ readonly name: "TooManyTagsException";
1036
+ readonly $fault: "client";
1037
+ Code?: string;
1038
+ Message?: string;
1039
+ /**
1040
+ * <p>The ID of the request that contains too many tags.</p>
1041
+ */
1042
+ RequestId?: string;
1043
+ /**
1044
+ * <p>The name of the resource that received too many tags.</p>
1045
+ */
1046
+ ResourceName?: string;
1047
+ /**
1048
+ * @internal
1049
+ */
1050
+ constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
1051
+ }
1052
+ export interface UntagResourceRequest {
1053
+ /**
1054
+ * <p>The ARN of the resource that you're removing tags from.</p>
1055
+ */
1056
+ ResourceARN: string | undefined;
1057
+ /**
1058
+ * <p>The tag keys being removed from the resources.</p>
1059
+ */
1060
+ TagKeys: string[] | undefined;
1061
+ }
1062
+ export interface UntagResourceResponse {
1063
+ }
911
1064
  export interface UpdateAttendeeCapabilitiesRequest {
912
1065
  /**
913
1066
  * <p>The ID of the meeting associated with the update request.</p>
@@ -980,6 +1133,10 @@ export declare const MeetingFeaturesConfigurationFilterSensitiveLog: (obj: Meeti
980
1133
  * @internal
981
1134
  */
982
1135
  export declare const NotificationsConfigurationFilterSensitiveLog: (obj: NotificationsConfiguration) => any;
1136
+ /**
1137
+ * @internal
1138
+ */
1139
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
983
1140
  /**
984
1141
  * @internal
985
1142
  */
@@ -1036,6 +1193,14 @@ export declare const ListAttendeesRequestFilterSensitiveLog: (obj: ListAttendees
1036
1193
  * @internal
1037
1194
  */
1038
1195
  export declare const ListAttendeesResponseFilterSensitiveLog: (obj: ListAttendeesResponse) => any;
1196
+ /**
1197
+ * @internal
1198
+ */
1199
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
1200
+ /**
1201
+ * @internal
1202
+ */
1203
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1039
1204
  /**
1040
1205
  * @internal
1041
1206
  */
@@ -1056,6 +1221,22 @@ export declare const StartMeetingTranscriptionRequestFilterSensitiveLog: (obj: S
1056
1221
  * @internal
1057
1222
  */
1058
1223
  export declare const StopMeetingTranscriptionRequestFilterSensitiveLog: (obj: StopMeetingTranscriptionRequest) => any;
1224
+ /**
1225
+ * @internal
1226
+ */
1227
+ export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
1228
+ /**
1229
+ * @internal
1230
+ */
1231
+ export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
1232
+ /**
1233
+ * @internal
1234
+ */
1235
+ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
1236
+ /**
1237
+ * @internal
1238
+ */
1239
+ export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
1059
1240
  /**
1060
1241
  * @internal
1061
1242
  */
@@ -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>;
@@ -10,8 +10,11 @@ import { DeleteMeetingCommandInput, DeleteMeetingCommandOutput } from "./command
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
 
17
20
  export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
@@ -56,6 +59,10 @@ export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
56
59
  listAttendees(args: ListAttendeesCommandInput, cb: (err: any, data?: ListAttendeesCommandOutput) => void): void;
57
60
  listAttendees(args: ListAttendeesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAttendeesCommandOutput) => void): void;
58
61
 
62
+ listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
63
+ listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
64
+ listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
65
+
59
66
  startMeetingTranscription(args: StartMeetingTranscriptionCommandInput, options?: __HttpHandlerOptions): Promise<StartMeetingTranscriptionCommandOutput>;
60
67
  startMeetingTranscription(args: StartMeetingTranscriptionCommandInput, cb: (err: any, data?: StartMeetingTranscriptionCommandOutput) => void): void;
61
68
  startMeetingTranscription(args: StartMeetingTranscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartMeetingTranscriptionCommandOutput) => void): void;
@@ -64,6 +71,14 @@ export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
64
71
  stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void): void;
65
72
  stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void): void;
66
73
 
74
+ tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
75
+ tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
76
+ tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
77
+
78
+ untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
79
+ untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
80
+ untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
81
+
67
82
  updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAttendeeCapabilitiesCommandOutput>;
68
83
  updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, cb: (err: any, data?: UpdateAttendeeCapabilitiesCommandOutput) => void): void;
69
84
  updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAttendeeCapabilitiesCommandOutput) => void): void;
@@ -16,11 +16,14 @@ import { DeleteMeetingCommandInput, DeleteMeetingCommandOutput } from "./command
16
16
  import { GetAttendeeCommandInput, GetAttendeeCommandOutput } from "./commands/GetAttendeeCommand";
17
17
  import { GetMeetingCommandInput, GetMeetingCommandOutput } from "./commands/GetMeetingCommand";
18
18
  import { ListAttendeesCommandInput, ListAttendeesCommandOutput } from "./commands/ListAttendeesCommand";
19
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
19
20
  import { StartMeetingTranscriptionCommandInput, StartMeetingTranscriptionCommandOutput } from "./commands/StartMeetingTranscriptionCommand";
20
21
  import { StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOutput } from "./commands/StopMeetingTranscriptionCommand";
22
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
23
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
21
24
  import { UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput } from "./commands/UpdateAttendeeCapabilitiesCommand";
22
- export declare type ServiceInputTypes = BatchCreateAttendeeCommandInput | BatchUpdateAttendeeCapabilitiesExceptCommandInput | CreateAttendeeCommandInput | CreateMeetingCommandInput | CreateMeetingWithAttendeesCommandInput | DeleteAttendeeCommandInput | DeleteMeetingCommandInput | GetAttendeeCommandInput | GetMeetingCommandInput | ListAttendeesCommandInput | StartMeetingTranscriptionCommandInput | StopMeetingTranscriptionCommandInput | UpdateAttendeeCapabilitiesCommandInput;
23
- export declare type ServiceOutputTypes = BatchCreateAttendeeCommandOutput | BatchUpdateAttendeeCapabilitiesExceptCommandOutput | CreateAttendeeCommandOutput | CreateMeetingCommandOutput | CreateMeetingWithAttendeesCommandOutput | DeleteAttendeeCommandOutput | DeleteMeetingCommandOutput | GetAttendeeCommandOutput | GetMeetingCommandOutput | ListAttendeesCommandOutput | StartMeetingTranscriptionCommandOutput | StopMeetingTranscriptionCommandOutput | UpdateAttendeeCapabilitiesCommandOutput;
25
+ export declare type ServiceInputTypes = BatchCreateAttendeeCommandInput | BatchUpdateAttendeeCapabilitiesExceptCommandInput | CreateAttendeeCommandInput | CreateMeetingCommandInput | CreateMeetingWithAttendeesCommandInput | DeleteAttendeeCommandInput | DeleteMeetingCommandInput | GetAttendeeCommandInput | GetMeetingCommandInput | ListAttendeesCommandInput | ListTagsForResourceCommandInput | StartMeetingTranscriptionCommandInput | StopMeetingTranscriptionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAttendeeCapabilitiesCommandInput;
26
+ export declare type ServiceOutputTypes = BatchCreateAttendeeCommandOutput | BatchUpdateAttendeeCapabilitiesExceptCommandOutput | CreateAttendeeCommandOutput | CreateMeetingCommandOutput | CreateMeetingWithAttendeesCommandOutput | DeleteAttendeeCommandOutput | DeleteMeetingCommandOutput | GetAttendeeCommandOutput | GetMeetingCommandOutput | ListAttendeesCommandOutput | ListTagsForResourceCommandOutput | StartMeetingTranscriptionCommandOutput | StopMeetingTranscriptionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAttendeeCapabilitiesCommandOutput;
24
27
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
25
28
 
26
29
  requestHandler?: __HttpHandler;
@@ -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 { 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
+ }
@@ -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 { 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
+ }
@@ -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>;