@aws-sdk/client-chime-sdk-meetings 3.299.0 → 3.301.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.
@@ -27,6 +27,19 @@ export interface BatchCreateAttendeeCommandOutput extends BatchCreateAttendeeRes
27
27
  * import { ChimeSDKMeetingsClient, BatchCreateAttendeeCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
28
28
  * // const { ChimeSDKMeetingsClient, BatchCreateAttendeeCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
29
29
  * const client = new ChimeSDKMeetingsClient(config);
30
+ * const input = { // BatchCreateAttendeeRequest
31
+ * MeetingId: "STRING_VALUE", // required
32
+ * Attendees: [ // CreateAttendeeRequestItemList // required
33
+ * { // CreateAttendeeRequestItem
34
+ * ExternalUserId: "STRING_VALUE", // required
35
+ * Capabilities: { // AttendeeCapabilities
36
+ * Audio: "SendReceive" || "Send" || "Receive" || "None", // required
37
+ * Video: "SendReceive" || "Send" || "Receive" || "None", // required
38
+ * Content: "SendReceive" || "Send" || "Receive" || "None", // required
39
+ * },
40
+ * },
41
+ * ],
42
+ * };
30
43
  * const command = new BatchCreateAttendeeCommand(input);
31
44
  * const response = await client.send(command);
32
45
  * ```
@@ -46,6 +46,19 @@ export interface BatchUpdateAttendeeCapabilitiesExceptCommandOutput extends __Me
46
46
  * import { ChimeSDKMeetingsClient, BatchUpdateAttendeeCapabilitiesExceptCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
47
47
  * // const { ChimeSDKMeetingsClient, BatchUpdateAttendeeCapabilitiesExceptCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
48
48
  * const client = new ChimeSDKMeetingsClient(config);
49
+ * const input = { // BatchUpdateAttendeeCapabilitiesExceptRequest
50
+ * MeetingId: "STRING_VALUE", // required
51
+ * ExcludedAttendeeIds: [ // AttendeeIdsList // required
52
+ * { // AttendeeIdItem
53
+ * AttendeeId: "STRING_VALUE", // required
54
+ * },
55
+ * ],
56
+ * Capabilities: { // AttendeeCapabilities
57
+ * Audio: "SendReceive" || "Send" || "Receive" || "None", // required
58
+ * Video: "SendReceive" || "Send" || "Receive" || "None", // required
59
+ * Content: "SendReceive" || "Send" || "Receive" || "None", // required
60
+ * },
61
+ * };
49
62
  * const command = new BatchUpdateAttendeeCapabilitiesExceptCommand(input);
50
63
  * const response = await client.send(command);
51
64
  * ```
@@ -31,6 +31,15 @@ export interface CreateAttendeeCommandOutput extends CreateAttendeeResponse, __M
31
31
  * import { ChimeSDKMeetingsClient, CreateAttendeeCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
32
32
  * // const { ChimeSDKMeetingsClient, CreateAttendeeCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
33
33
  * const client = new ChimeSDKMeetingsClient(config);
34
+ * const input = { // CreateAttendeeRequest
35
+ * MeetingId: "STRING_VALUE", // required
36
+ * ExternalUserId: "STRING_VALUE", // required
37
+ * Capabilities: { // AttendeeCapabilities
38
+ * Audio: "SendReceive" || "Send" || "Receive" || "None", // required
39
+ * Video: "SendReceive" || "Send" || "Receive" || "None", // required
40
+ * Content: "SendReceive" || "Send" || "Receive" || "None", // required
41
+ * },
42
+ * };
34
43
  * const command = new CreateAttendeeCommand(input);
35
44
  * const response = await client.send(command);
36
45
  * ```
@@ -32,6 +32,32 @@ export interface CreateMeetingCommandOutput extends CreateMeetingResponse, __Met
32
32
  * import { ChimeSDKMeetingsClient, CreateMeetingCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
33
33
  * // const { ChimeSDKMeetingsClient, CreateMeetingCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
34
34
  * const client = new ChimeSDKMeetingsClient(config);
35
+ * const input = { // CreateMeetingRequest
36
+ * ClientRequestToken: "STRING_VALUE", // required
37
+ * MediaRegion: "STRING_VALUE", // required
38
+ * MeetingHostId: "STRING_VALUE",
39
+ * ExternalMeetingId: "STRING_VALUE", // required
40
+ * NotificationsConfiguration: { // NotificationsConfiguration
41
+ * LambdaFunctionArn: "STRING_VALUE",
42
+ * SnsTopicArn: "STRING_VALUE",
43
+ * SqsQueueArn: "STRING_VALUE",
44
+ * },
45
+ * MeetingFeatures: { // MeetingFeaturesConfiguration
46
+ * Audio: { // AudioFeatures
47
+ * EchoReduction: "AVAILABLE" || "UNAVAILABLE",
48
+ * },
49
+ * },
50
+ * PrimaryMeetingId: "STRING_VALUE",
51
+ * TenantIds: [ // TenantIdList
52
+ * "STRING_VALUE",
53
+ * ],
54
+ * Tags: [ // TagList
55
+ * { // Tag
56
+ * Key: "STRING_VALUE", // required
57
+ * Value: "STRING_VALUE", // required
58
+ * },
59
+ * ],
60
+ * };
35
61
  * const command = new CreateMeetingCommand(input);
36
62
  * const response = await client.send(command);
37
63
  * ```
@@ -32,6 +32,42 @@ export interface CreateMeetingWithAttendeesCommandOutput extends CreateMeetingWi
32
32
  * import { ChimeSDKMeetingsClient, CreateMeetingWithAttendeesCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
33
33
  * // const { ChimeSDKMeetingsClient, CreateMeetingWithAttendeesCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
34
34
  * const client = new ChimeSDKMeetingsClient(config);
35
+ * const input = { // CreateMeetingWithAttendeesRequest
36
+ * ClientRequestToken: "STRING_VALUE", // required
37
+ * MediaRegion: "STRING_VALUE", // required
38
+ * MeetingHostId: "STRING_VALUE",
39
+ * ExternalMeetingId: "STRING_VALUE", // required
40
+ * MeetingFeatures: { // MeetingFeaturesConfiguration
41
+ * Audio: { // AudioFeatures
42
+ * EchoReduction: "AVAILABLE" || "UNAVAILABLE",
43
+ * },
44
+ * },
45
+ * NotificationsConfiguration: { // NotificationsConfiguration
46
+ * LambdaFunctionArn: "STRING_VALUE",
47
+ * SnsTopicArn: "STRING_VALUE",
48
+ * SqsQueueArn: "STRING_VALUE",
49
+ * },
50
+ * Attendees: [ // CreateMeetingWithAttendeesRequestItemList // required
51
+ * { // CreateAttendeeRequestItem
52
+ * ExternalUserId: "STRING_VALUE", // required
53
+ * Capabilities: { // AttendeeCapabilities
54
+ * Audio: "SendReceive" || "Send" || "Receive" || "None", // required
55
+ * Video: "SendReceive" || "Send" || "Receive" || "None", // required
56
+ * Content: "SendReceive" || "Send" || "Receive" || "None", // required
57
+ * },
58
+ * },
59
+ * ],
60
+ * PrimaryMeetingId: "STRING_VALUE",
61
+ * TenantIds: [ // TenantIdList
62
+ * "STRING_VALUE",
63
+ * ],
64
+ * Tags: [ // TagList
65
+ * { // Tag
66
+ * Key: "STRING_VALUE", // required
67
+ * Value: "STRING_VALUE", // required
68
+ * },
69
+ * ],
70
+ * };
35
71
  * const command = new CreateMeetingWithAttendeesCommand(input);
36
72
  * const response = await client.send(command);
37
73
  * ```
@@ -29,6 +29,10 @@ export interface DeleteAttendeeCommandOutput extends __MetadataBearer {
29
29
  * import { ChimeSDKMeetingsClient, DeleteAttendeeCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
30
30
  * // const { ChimeSDKMeetingsClient, DeleteAttendeeCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
31
31
  * const client = new ChimeSDKMeetingsClient(config);
32
+ * const input = { // DeleteAttendeeRequest
33
+ * MeetingId: "STRING_VALUE", // required
34
+ * AttendeeId: "STRING_VALUE", // required
35
+ * };
32
36
  * const command = new DeleteAttendeeCommand(input);
33
37
  * const response = await client.send(command);
34
38
  * ```
@@ -29,6 +29,9 @@ export interface DeleteMeetingCommandOutput extends __MetadataBearer {
29
29
  * import { ChimeSDKMeetingsClient, DeleteMeetingCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
30
30
  * // const { ChimeSDKMeetingsClient, DeleteMeetingCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
31
31
  * const client = new ChimeSDKMeetingsClient(config);
32
+ * const input = { // DeleteMeetingRequest
33
+ * MeetingId: "STRING_VALUE", // required
34
+ * };
32
35
  * const command = new DeleteMeetingCommand(input);
33
36
  * const response = await client.send(command);
34
37
  * ```
@@ -30,6 +30,10 @@ export interface GetAttendeeCommandOutput extends GetAttendeeResponse, __Metadat
30
30
  * import { ChimeSDKMeetingsClient, GetAttendeeCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
31
31
  * // const { ChimeSDKMeetingsClient, GetAttendeeCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
32
32
  * const client = new ChimeSDKMeetingsClient(config);
33
+ * const input = { // GetAttendeeRequest
34
+ * MeetingId: "STRING_VALUE", // required
35
+ * AttendeeId: "STRING_VALUE", // required
36
+ * };
33
37
  * const command = new GetAttendeeCommand(input);
34
38
  * const response = await client.send(command);
35
39
  * ```
@@ -28,6 +28,9 @@ export interface GetMeetingCommandOutput extends GetMeetingResponse, __MetadataB
28
28
  * import { ChimeSDKMeetingsClient, GetMeetingCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
29
29
  * // const { ChimeSDKMeetingsClient, GetMeetingCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
30
30
  * const client = new ChimeSDKMeetingsClient(config);
31
+ * const input = { // GetMeetingRequest
32
+ * MeetingId: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new GetMeetingCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -30,6 +30,11 @@ export interface ListAttendeesCommandOutput extends ListAttendeesResponse, __Met
30
30
  * import { ChimeSDKMeetingsClient, ListAttendeesCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
31
31
  * // const { ChimeSDKMeetingsClient, ListAttendeesCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
32
32
  * const client = new ChimeSDKMeetingsClient(config);
33
+ * const input = { // ListAttendeesRequest
34
+ * MeetingId: "STRING_VALUE", // required
35
+ * NextToken: "STRING_VALUE",
36
+ * MaxResults: Number("int"),
37
+ * };
33
38
  * const command = new ListAttendeesCommand(input);
34
39
  * const response = await client.send(command);
35
40
  * ```
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { ChimeSDKMeetingsClient, ListTagsForResourceCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
27
27
  * // const { ChimeSDKMeetingsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
28
28
  * const client = new ChimeSDKMeetingsClient(config);
29
+ * const input = { // ListTagsForResourceRequest
30
+ * ResourceARN: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ListTagsForResourceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -32,6 +32,35 @@ export interface StartMeetingTranscriptionCommandOutput extends __MetadataBearer
32
32
  * import { ChimeSDKMeetingsClient, StartMeetingTranscriptionCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
33
33
  * // const { ChimeSDKMeetingsClient, StartMeetingTranscriptionCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
34
34
  * const client = new ChimeSDKMeetingsClient(config);
35
+ * const input = { // StartMeetingTranscriptionRequest
36
+ * MeetingId: "STRING_VALUE", // required
37
+ * TranscriptionConfiguration: { // TranscriptionConfiguration
38
+ * EngineTranscribeSettings: { // EngineTranscribeSettings
39
+ * LanguageCode: "en-US" || "en-GB" || "es-US" || "fr-CA" || "fr-FR" || "en-AU" || "it-IT" || "de-DE" || "pt-BR" || "ja-JP" || "ko-KR" || "zh-CN",
40
+ * VocabularyFilterMethod: "remove" || "mask" || "tag",
41
+ * VocabularyFilterName: "STRING_VALUE",
42
+ * VocabularyName: "STRING_VALUE",
43
+ * Region: "us-east-2" || "us-east-1" || "us-west-2" || "ap-northeast-2" || "ap-southeast-2" || "ap-northeast-1" || "ca-central-1" || "eu-central-1" || "eu-west-1" || "eu-west-2" || "sa-east-1" || "auto" || "us-gov-west-1",
44
+ * EnablePartialResultsStabilization: true || false,
45
+ * PartialResultsStability: "low" || "medium" || "high",
46
+ * ContentIdentificationType: "PII",
47
+ * ContentRedactionType: "PII",
48
+ * PiiEntityTypes: "STRING_VALUE",
49
+ * LanguageModelName: "STRING_VALUE",
50
+ * IdentifyLanguage: true || false,
51
+ * LanguageOptions: "STRING_VALUE",
52
+ * PreferredLanguage: "en-US" || "en-GB" || "es-US" || "fr-CA" || "fr-FR" || "en-AU" || "it-IT" || "de-DE" || "pt-BR" || "ja-JP" || "ko-KR" || "zh-CN",
53
+ * },
54
+ * EngineTranscribeMedicalSettings: { // EngineTranscribeMedicalSettings
55
+ * LanguageCode: "en-US", // required
56
+ * Specialty: "PRIMARYCARE" || "CARDIOLOGY" || "NEUROLOGY" || "ONCOLOGY" || "RADIOLOGY" || "UROLOGY", // required
57
+ * Type: "CONVERSATION" || "DICTATION", // required
58
+ * VocabularyName: "STRING_VALUE",
59
+ * Region: "us-east-1" || "us-east-2" || "us-west-2" || "ap-southeast-2" || "ca-central-1" || "eu-west-1" || "auto",
60
+ * ContentIdentificationType: "PHI",
61
+ * },
62
+ * },
63
+ * };
35
64
  * const command = new StartMeetingTranscriptionCommand(input);
36
65
  * const response = await client.send(command);
37
66
  * ```
@@ -32,6 +32,9 @@ export interface StopMeetingTranscriptionCommandOutput extends __MetadataBearer
32
32
  * import { ChimeSDKMeetingsClient, StopMeetingTranscriptionCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
33
33
  * // const { ChimeSDKMeetingsClient, StopMeetingTranscriptionCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
34
34
  * const client = new ChimeSDKMeetingsClient(config);
35
+ * const input = { // StopMeetingTranscriptionRequest
36
+ * MeetingId: "STRING_VALUE", // required
37
+ * };
35
38
  * const command = new StopMeetingTranscriptionCommand(input);
36
39
  * const response = await client.send(command);
37
40
  * ```
@@ -26,6 +26,15 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { ChimeSDKMeetingsClient, TagResourceCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
27
27
  * // const { ChimeSDKMeetingsClient, TagResourceCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
28
28
  * const client = new ChimeSDKMeetingsClient(config);
29
+ * const input = { // TagResourceRequest
30
+ * ResourceARN: "STRING_VALUE", // required
31
+ * Tags: [ // TagList // required
32
+ * { // Tag
33
+ * Key: "STRING_VALUE", // required
34
+ * Value: "STRING_VALUE", // required
35
+ * },
36
+ * ],
37
+ * };
29
38
  * const command = new TagResourceCommand(input);
30
39
  * const response = await client.send(command);
31
40
  * ```
@@ -47,6 +47,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
47
47
  * import { ChimeSDKMeetingsClient, UntagResourceCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
48
48
  * // const { ChimeSDKMeetingsClient, UntagResourceCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
49
49
  * const client = new ChimeSDKMeetingsClient(config);
50
+ * const input = { // UntagResourceRequest
51
+ * ResourceARN: "STRING_VALUE", // required
52
+ * TagKeys: [ // TagKeyList // required
53
+ * "STRING_VALUE",
54
+ * ],
55
+ * };
50
56
  * const command = new UntagResourceCommand(input);
51
57
  * const response = await client.send(command);
52
58
  * ```
@@ -46,6 +46,15 @@ export interface UpdateAttendeeCapabilitiesCommandOutput extends UpdateAttendeeC
46
46
  * import { ChimeSDKMeetingsClient, UpdateAttendeeCapabilitiesCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
47
47
  * // const { ChimeSDKMeetingsClient, UpdateAttendeeCapabilitiesCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
48
48
  * const client = new ChimeSDKMeetingsClient(config);
49
+ * const input = { // UpdateAttendeeCapabilitiesRequest
50
+ * MeetingId: "STRING_VALUE", // required
51
+ * AttendeeId: "STRING_VALUE", // required
52
+ * Capabilities: { // AttendeeCapabilities
53
+ * Audio: "SendReceive" || "Send" || "Receive" || "None", // required
54
+ * Video: "SendReceive" || "Send" || "Receive" || "None", // required
55
+ * Content: "SendReceive" || "Send" || "Receive" || "None", // required
56
+ * },
57
+ * };
49
58
  * const command = new UpdateAttendeeCapabilitiesCommand(input);
50
59
  * const response = await client.send(command);
51
60
  * ```
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.299.0",
4
+ "version": "3.301.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",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0",
57
57
  "uuid": "^8.3.2"