@aws-sdk/client-chime 3.42.0 → 3.47.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.
- package/CHANGELOG.md +50 -0
- package/README.md +1 -2
- package/dist-cjs/commands/GetRetentionSettingsCommand.js +2 -1
- package/dist-cjs/commands/GetRoomCommand.js +3 -3
- package/dist-cjs/commands/GetSipMediaApplicationCommand.js +1 -2
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +24 -97
- package/dist-cjs/models/models_1.js +29 -4
- package/dist-cjs/protocols/Aws_restJson1.js +16 -0
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/commands/GetRetentionSettingsCommand.js +2 -1
- package/dist-es/commands/GetRoomCommand.js +1 -1
- package/dist-es/commands/GetSipMediaApplicationCommand.js +1 -2
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +18 -60
- package/dist-es/models/models_1.js +16 -0
- package/dist-es/protocols/Aws_restJson1.js +11 -2
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/Chime.d.ts +1 -2
- package/dist-types/ChimeClient.d.ts +6 -3
- package/dist-types/commands/GetRetentionSettingsCommand.d.ts +2 -1
- package/dist-types/commands/GetRoomCommand.d.ts +1 -1
- package/dist-types/commands/GetSipMediaApplicationCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +49 -122
- package/dist-types/models/models_1.d.ts +56 -0
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/ChimeClient.d.ts +3 -1
- package/dist-types/ts3.4/commands/GetRetentionSettingsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetRoomCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetSipMediaApplicationCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_0.d.ts +28 -80
- package/dist-types/ts3.4/models/models_1.d.ts +36 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +38 -45
|
@@ -1,4 +1,60 @@
|
|
|
1
1
|
import { Account, AccountSettings, AlexaForBusinessMetadata, AppInstanceAdminSummary, AppInstanceRetentionSettings, AppInstanceStreamingConfiguration, AppInstanceSummary, AppInstanceUserSummary, Attendee, Bot, BusinessCallingSettings, Capability, ChannelBanSummary, ChannelMembershipForAppInstanceUserSummary, ChannelMembershipSummary, ChannelMembershipType, ChannelMessagePersistenceType, ChannelMessageSummary, ChannelMessageType, ChannelMode, ChannelModeratedByAppInstanceUserSummary, ChannelModeratorSummary, ChannelPrivacy, ChannelSummary, Credential, EmailStatus, EmergencyCallingConfiguration, EngineTranscribeMedicalSettings, EngineTranscribeSettings, EventsConfiguration, InviteStatus, License, MediaCapturePipeline, Meeting, PhoneNumber, PhoneNumberAssociationName, PhoneNumberOrder, PhoneNumberProductType, PhoneNumberStatus, PhoneNumberType, ProxySession, ProxySessionStatus, RetentionSettings, Room, RoomMembership, RoomMembershipRole, SipMediaApplication, SipMediaApplicationCall, SipMediaApplicationEndpoint, SipRule, SipRuleTargetApplication, Tag, User, UserType, VoiceConnector, VoiceConnectorGroup, VoiceConnectorItem, VoiceConnectorSettings } from "./models_0";
|
|
2
|
+
export interface GetRetentionSettingsResponse {
|
|
3
|
+
/**
|
|
4
|
+
* <p>The retention settings.</p>
|
|
5
|
+
*/
|
|
6
|
+
RetentionSettings?: RetentionSettings;
|
|
7
|
+
/**
|
|
8
|
+
* <p>The timestamp representing the time at which the specified items are permanently deleted, in ISO 8601 format.</p>
|
|
9
|
+
*/
|
|
10
|
+
InitiateDeletionTimestamp?: Date;
|
|
11
|
+
}
|
|
12
|
+
export declare namespace GetRetentionSettingsResponse {
|
|
13
|
+
/**
|
|
14
|
+
* @internal
|
|
15
|
+
*/
|
|
16
|
+
const filterSensitiveLog: (obj: GetRetentionSettingsResponse) => any;
|
|
17
|
+
}
|
|
18
|
+
export interface GetRoomRequest {
|
|
19
|
+
/**
|
|
20
|
+
* <p>The Amazon Chime account ID.</p>
|
|
21
|
+
*/
|
|
22
|
+
AccountId: string | undefined;
|
|
23
|
+
/**
|
|
24
|
+
* <p>The room ID.</p>
|
|
25
|
+
*/
|
|
26
|
+
RoomId: string | undefined;
|
|
27
|
+
}
|
|
28
|
+
export declare namespace GetRoomRequest {
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
const filterSensitiveLog: (obj: GetRoomRequest) => any;
|
|
33
|
+
}
|
|
34
|
+
export interface GetRoomResponse {
|
|
35
|
+
/**
|
|
36
|
+
* <p>The room details.</p>
|
|
37
|
+
*/
|
|
38
|
+
Room?: Room;
|
|
39
|
+
}
|
|
40
|
+
export declare namespace GetRoomResponse {
|
|
41
|
+
/**
|
|
42
|
+
* @internal
|
|
43
|
+
*/
|
|
44
|
+
const filterSensitiveLog: (obj: GetRoomResponse) => any;
|
|
45
|
+
}
|
|
46
|
+
export interface GetSipMediaApplicationRequest {
|
|
47
|
+
/**
|
|
48
|
+
* <p>The SIP media application ID.</p>
|
|
49
|
+
*/
|
|
50
|
+
SipMediaApplicationId: string | undefined;
|
|
51
|
+
}
|
|
52
|
+
export declare namespace GetSipMediaApplicationRequest {
|
|
53
|
+
/**
|
|
54
|
+
* @internal
|
|
55
|
+
*/
|
|
56
|
+
const filterSensitiveLog: (obj: GetSipMediaApplicationRequest) => any;
|
|
57
|
+
}
|
|
2
58
|
export interface GetSipMediaApplicationResponse {
|
|
3
59
|
/**
|
|
4
60
|
* <p>The SIP media application details.</p>
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { ChimeClientConfig } from "./ChimeClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: ChimeClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -12,7 +13,7 @@ export declare const getRuntimeConfig: (config: ChimeClientConfig) => {
|
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { ChimeClientConfig } from "./ChimeClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: ChimeClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
11
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
12
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (config: ChimeClientConfig) => {
|
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
26
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
27
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
28
29
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
30
|
tls?: boolean | undefined;
|
|
30
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
@@ -4,7 +4,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
|
|
|
4
4
|
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
-
import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
8
|
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AssociatePhoneNumbersWithVoiceConnectorCommandInput, AssociatePhoneNumbersWithVoiceConnectorCommandOutput } from "./commands/AssociatePhoneNumbersWithVoiceConnectorCommand";
|
|
10
10
|
import { AssociatePhoneNumbersWithVoiceConnectorGroupCommandInput, AssociatePhoneNumbersWithVoiceConnectorGroupCommandOutput } from "./commands/AssociatePhoneNumbersWithVoiceConnectorGroupCommand";
|
|
@@ -241,6 +241,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
241
241
|
regionInfoProvider?: RegionInfoProvider;
|
|
242
242
|
|
|
243
243
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
244
|
+
|
|
245
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
244
246
|
}
|
|
245
247
|
declare type ChimeClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
246
248
|
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient";
|
|
4
|
-
import { GetRetentionSettingsRequest
|
|
4
|
+
import { GetRetentionSettingsRequest } from "../models/models_0";
|
|
5
|
+
import { GetRetentionSettingsResponse } from "../models/models_1";
|
|
5
6
|
export interface GetRetentionSettingsCommandInput extends GetRetentionSettingsRequest {
|
|
6
7
|
}
|
|
7
8
|
export interface GetRetentionSettingsCommandOutput extends GetRetentionSettingsResponse, __MetadataBearer {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient";
|
|
4
|
-
import { GetRoomRequest, GetRoomResponse } from "../models/
|
|
4
|
+
import { GetRoomRequest, GetRoomResponse } from "../models/models_1";
|
|
5
5
|
export interface GetRoomCommandInput extends GetRoomRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface GetRoomCommandOutput extends GetRoomResponse, __MetadataBearer {
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient";
|
|
4
|
-
import { GetSipMediaApplicationRequest } from "../models/
|
|
5
|
-
import { GetSipMediaApplicationResponse } from "../models/models_1";
|
|
4
|
+
import { GetSipMediaApplicationRequest, GetSipMediaApplicationResponse } from "../models/models_1";
|
|
6
5
|
export interface GetSipMediaApplicationCommandInput extends GetSipMediaApplicationRequest {
|
|
7
6
|
}
|
|
8
7
|
export interface GetSipMediaApplicationCommandOutput extends GetSipMediaApplicationResponse, __MetadataBearer {
|
|
@@ -23,10 +23,6 @@ export interface AccessDeniedException extends __SmithyException, $MetadataBeare
|
|
|
23
23
|
Code?: ErrorCode | string;
|
|
24
24
|
Message?: string;
|
|
25
25
|
}
|
|
26
|
-
export declare namespace AccessDeniedException {
|
|
27
|
-
|
|
28
|
-
const filterSensitiveLog: (obj: AccessDeniedException) => any;
|
|
29
|
-
}
|
|
30
26
|
export declare enum AccountStatus {
|
|
31
27
|
Active = "Active",
|
|
32
28
|
Suspended = "Suspended"
|
|
@@ -338,10 +334,6 @@ export interface BadRequestException extends __SmithyException, $MetadataBearer
|
|
|
338
334
|
Code?: ErrorCode | string;
|
|
339
335
|
Message?: string;
|
|
340
336
|
}
|
|
341
|
-
export declare namespace BadRequestException {
|
|
342
|
-
|
|
343
|
-
const filterSensitiveLog: (obj: BadRequestException) => any;
|
|
344
|
-
}
|
|
345
337
|
|
|
346
338
|
export interface ForbiddenException extends __SmithyException, $MetadataBearer {
|
|
347
339
|
name: "ForbiddenException";
|
|
@@ -349,10 +341,6 @@ export interface ForbiddenException extends __SmithyException, $MetadataBearer {
|
|
|
349
341
|
Code?: ErrorCode | string;
|
|
350
342
|
Message?: string;
|
|
351
343
|
}
|
|
352
|
-
export declare namespace ForbiddenException {
|
|
353
|
-
|
|
354
|
-
const filterSensitiveLog: (obj: ForbiddenException) => any;
|
|
355
|
-
}
|
|
356
344
|
|
|
357
345
|
export interface NotFoundException extends __SmithyException, $MetadataBearer {
|
|
358
346
|
name: "NotFoundException";
|
|
@@ -360,10 +348,6 @@ export interface NotFoundException extends __SmithyException, $MetadataBearer {
|
|
|
360
348
|
Code?: ErrorCode | string;
|
|
361
349
|
Message?: string;
|
|
362
350
|
}
|
|
363
|
-
export declare namespace NotFoundException {
|
|
364
|
-
|
|
365
|
-
const filterSensitiveLog: (obj: NotFoundException) => any;
|
|
366
|
-
}
|
|
367
351
|
|
|
368
352
|
export interface ServiceFailureException extends __SmithyException, $MetadataBearer {
|
|
369
353
|
name: "ServiceFailureException";
|
|
@@ -371,10 +355,6 @@ export interface ServiceFailureException extends __SmithyException, $MetadataBea
|
|
|
371
355
|
Code?: ErrorCode | string;
|
|
372
356
|
Message?: string;
|
|
373
357
|
}
|
|
374
|
-
export declare namespace ServiceFailureException {
|
|
375
|
-
|
|
376
|
-
const filterSensitiveLog: (obj: ServiceFailureException) => any;
|
|
377
|
-
}
|
|
378
358
|
|
|
379
359
|
export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
|
|
380
360
|
name: "ServiceUnavailableException";
|
|
@@ -382,10 +362,6 @@ export interface ServiceUnavailableException extends __SmithyException, $Metadat
|
|
|
382
362
|
Code?: ErrorCode | string;
|
|
383
363
|
Message?: string;
|
|
384
364
|
}
|
|
385
|
-
export declare namespace ServiceUnavailableException {
|
|
386
|
-
|
|
387
|
-
const filterSensitiveLog: (obj: ServiceUnavailableException) => any;
|
|
388
|
-
}
|
|
389
365
|
|
|
390
366
|
export interface ThrottledClientException extends __SmithyException, $MetadataBearer {
|
|
391
367
|
name: "ThrottledClientException";
|
|
@@ -393,10 +369,6 @@ export interface ThrottledClientException extends __SmithyException, $MetadataBe
|
|
|
393
369
|
Code?: ErrorCode | string;
|
|
394
370
|
Message?: string;
|
|
395
371
|
}
|
|
396
|
-
export declare namespace ThrottledClientException {
|
|
397
|
-
|
|
398
|
-
const filterSensitiveLog: (obj: ThrottledClientException) => any;
|
|
399
|
-
}
|
|
400
372
|
|
|
401
373
|
export interface UnauthorizedClientException extends __SmithyException, $MetadataBearer {
|
|
402
374
|
name: "UnauthorizedClientException";
|
|
@@ -404,10 +376,6 @@ export interface UnauthorizedClientException extends __SmithyException, $Metadat
|
|
|
404
376
|
Code?: ErrorCode | string;
|
|
405
377
|
Message?: string;
|
|
406
378
|
}
|
|
407
|
-
export declare namespace UnauthorizedClientException {
|
|
408
|
-
|
|
409
|
-
const filterSensitiveLog: (obj: UnauthorizedClientException) => any;
|
|
410
|
-
}
|
|
411
379
|
export interface AssociatePhoneNumbersWithVoiceConnectorGroupRequest {
|
|
412
380
|
|
|
413
381
|
VoiceConnectorGroupId: string | undefined;
|
|
@@ -552,10 +520,6 @@ export interface ResourceLimitExceededException extends __SmithyException, $Meta
|
|
|
552
520
|
Code?: ErrorCode | string;
|
|
553
521
|
Message?: string;
|
|
554
522
|
}
|
|
555
|
-
export declare namespace ResourceLimitExceededException {
|
|
556
|
-
|
|
557
|
-
const filterSensitiveLog: (obj: ResourceLimitExceededException) => any;
|
|
558
|
-
}
|
|
559
523
|
export interface BatchCreateChannelMembershipRequest {
|
|
560
524
|
|
|
561
525
|
ChannelArn: string | undefined;
|
|
@@ -1072,10 +1036,6 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
|
1072
1036
|
Code?: ErrorCode | string;
|
|
1073
1037
|
Message?: string;
|
|
1074
1038
|
}
|
|
1075
|
-
export declare namespace ConflictException {
|
|
1076
|
-
|
|
1077
|
-
const filterSensitiveLog: (obj: ConflictException) => any;
|
|
1078
|
-
}
|
|
1079
1039
|
|
|
1080
1040
|
export interface ConversationRetentionSettings {
|
|
1081
1041
|
|
|
@@ -2094,10 +2054,6 @@ export interface UnprocessableEntityException extends __SmithyException, $Metada
|
|
|
2094
2054
|
Code?: ErrorCode | string;
|
|
2095
2055
|
Message?: string;
|
|
2096
2056
|
}
|
|
2097
|
-
export declare namespace UnprocessableEntityException {
|
|
2098
|
-
|
|
2099
|
-
const filterSensitiveLog: (obj: UnprocessableEntityException) => any;
|
|
2100
|
-
}
|
|
2101
2057
|
export interface DeleteAppInstanceRequest {
|
|
2102
2058
|
|
|
2103
2059
|
AppInstanceArn: string | undefined;
|
|
@@ -2611,6 +2567,9 @@ export declare namespace EmergencyCallingConfiguration {
|
|
|
2611
2567
|
|
|
2612
2568
|
const filterSensitiveLog: (obj: EmergencyCallingConfiguration) => any;
|
|
2613
2569
|
}
|
|
2570
|
+
export declare enum TranscribeMedicalContentIdentificationType {
|
|
2571
|
+
PHI = "PHI"
|
|
2572
|
+
}
|
|
2614
2573
|
export declare enum TranscribeMedicalLanguageCode {
|
|
2615
2574
|
EN_US = "en-US"
|
|
2616
2575
|
}
|
|
@@ -2647,11 +2606,19 @@ export interface EngineTranscribeMedicalSettings {
|
|
|
2647
2606
|
VocabularyName?: string;
|
|
2648
2607
|
|
|
2649
2608
|
Region?: TranscribeMedicalRegion | string;
|
|
2609
|
+
|
|
2610
|
+
ContentIdentificationType?: TranscribeMedicalContentIdentificationType | string;
|
|
2650
2611
|
}
|
|
2651
2612
|
export declare namespace EngineTranscribeMedicalSettings {
|
|
2652
2613
|
|
|
2653
2614
|
const filterSensitiveLog: (obj: EngineTranscribeMedicalSettings) => any;
|
|
2654
2615
|
}
|
|
2616
|
+
export declare enum TranscribeContentIdentificationType {
|
|
2617
|
+
PII = "PII"
|
|
2618
|
+
}
|
|
2619
|
+
export declare enum TranscribeContentRedactionType {
|
|
2620
|
+
PII = "PII"
|
|
2621
|
+
}
|
|
2655
2622
|
export declare enum TranscribeLanguageCode {
|
|
2656
2623
|
DE_DE = "de-DE",
|
|
2657
2624
|
EN_AU = "en-AU",
|
|
@@ -2666,6 +2633,11 @@ export declare enum TranscribeLanguageCode {
|
|
|
2666
2633
|
PT_BR = "pt-BR",
|
|
2667
2634
|
ZH_CN = "zh-CN"
|
|
2668
2635
|
}
|
|
2636
|
+
export declare enum TranscribePartialResultsStability {
|
|
2637
|
+
HIGH = "high",
|
|
2638
|
+
LOW = "low",
|
|
2639
|
+
MEDIUM = "medium"
|
|
2640
|
+
}
|
|
2669
2641
|
export declare enum TranscribeRegion {
|
|
2670
2642
|
AP_NORTHEAST_1 = "ap-northeast-1",
|
|
2671
2643
|
AP_NORTHEAST_2 = "ap-northeast-2",
|
|
@@ -2697,6 +2669,18 @@ export interface EngineTranscribeSettings {
|
|
|
2697
2669
|
VocabularyName?: string;
|
|
2698
2670
|
|
|
2699
2671
|
Region?: TranscribeRegion | string;
|
|
2672
|
+
|
|
2673
|
+
EnablePartialResultsStabilization?: boolean;
|
|
2674
|
+
|
|
2675
|
+
PartialResultsStability?: TranscribePartialResultsStability | string;
|
|
2676
|
+
|
|
2677
|
+
ContentIdentificationType?: TranscribeContentIdentificationType | string;
|
|
2678
|
+
|
|
2679
|
+
ContentRedactionType?: TranscribeContentRedactionType | string;
|
|
2680
|
+
|
|
2681
|
+
PiiEntityTypes?: string;
|
|
2682
|
+
|
|
2683
|
+
LanguageModelName?: string;
|
|
2700
2684
|
}
|
|
2701
2685
|
export declare namespace EngineTranscribeSettings {
|
|
2702
2686
|
|
|
@@ -3103,39 +3087,3 @@ export declare namespace RetentionSettings {
|
|
|
3103
3087
|
|
|
3104
3088
|
const filterSensitiveLog: (obj: RetentionSettings) => any;
|
|
3105
3089
|
}
|
|
3106
|
-
export interface GetRetentionSettingsResponse {
|
|
3107
|
-
|
|
3108
|
-
RetentionSettings?: RetentionSettings;
|
|
3109
|
-
|
|
3110
|
-
InitiateDeletionTimestamp?: Date;
|
|
3111
|
-
}
|
|
3112
|
-
export declare namespace GetRetentionSettingsResponse {
|
|
3113
|
-
|
|
3114
|
-
const filterSensitiveLog: (obj: GetRetentionSettingsResponse) => any;
|
|
3115
|
-
}
|
|
3116
|
-
export interface GetRoomRequest {
|
|
3117
|
-
|
|
3118
|
-
AccountId: string | undefined;
|
|
3119
|
-
|
|
3120
|
-
RoomId: string | undefined;
|
|
3121
|
-
}
|
|
3122
|
-
export declare namespace GetRoomRequest {
|
|
3123
|
-
|
|
3124
|
-
const filterSensitiveLog: (obj: GetRoomRequest) => any;
|
|
3125
|
-
}
|
|
3126
|
-
export interface GetRoomResponse {
|
|
3127
|
-
|
|
3128
|
-
Room?: Room;
|
|
3129
|
-
}
|
|
3130
|
-
export declare namespace GetRoomResponse {
|
|
3131
|
-
|
|
3132
|
-
const filterSensitiveLog: (obj: GetRoomResponse) => any;
|
|
3133
|
-
}
|
|
3134
|
-
export interface GetSipMediaApplicationRequest {
|
|
3135
|
-
|
|
3136
|
-
SipMediaApplicationId: string | undefined;
|
|
3137
|
-
}
|
|
3138
|
-
export declare namespace GetSipMediaApplicationRequest {
|
|
3139
|
-
|
|
3140
|
-
const filterSensitiveLog: (obj: GetSipMediaApplicationRequest) => any;
|
|
3141
|
-
}
|
|
@@ -1,4 +1,40 @@
|
|
|
1
1
|
import { Account, AccountSettings, AlexaForBusinessMetadata, AppInstanceAdminSummary, AppInstanceRetentionSettings, AppInstanceStreamingConfiguration, AppInstanceSummary, AppInstanceUserSummary, Attendee, Bot, BusinessCallingSettings, Capability, ChannelBanSummary, ChannelMembershipForAppInstanceUserSummary, ChannelMembershipSummary, ChannelMembershipType, ChannelMessagePersistenceType, ChannelMessageSummary, ChannelMessageType, ChannelMode, ChannelModeratedByAppInstanceUserSummary, ChannelModeratorSummary, ChannelPrivacy, ChannelSummary, Credential, EmailStatus, EmergencyCallingConfiguration, EngineTranscribeMedicalSettings, EngineTranscribeSettings, EventsConfiguration, InviteStatus, License, MediaCapturePipeline, Meeting, PhoneNumber, PhoneNumberAssociationName, PhoneNumberOrder, PhoneNumberProductType, PhoneNumberStatus, PhoneNumberType, ProxySession, ProxySessionStatus, RetentionSettings, Room, RoomMembership, RoomMembershipRole, SipMediaApplication, SipMediaApplicationCall, SipMediaApplicationEndpoint, SipRule, SipRuleTargetApplication, Tag, User, UserType, VoiceConnector, VoiceConnectorGroup, VoiceConnectorItem, VoiceConnectorSettings } from "./models_0";
|
|
2
|
+
export interface GetRetentionSettingsResponse {
|
|
3
|
+
|
|
4
|
+
RetentionSettings?: RetentionSettings;
|
|
5
|
+
|
|
6
|
+
InitiateDeletionTimestamp?: Date;
|
|
7
|
+
}
|
|
8
|
+
export declare namespace GetRetentionSettingsResponse {
|
|
9
|
+
|
|
10
|
+
const filterSensitiveLog: (obj: GetRetentionSettingsResponse) => any;
|
|
11
|
+
}
|
|
12
|
+
export interface GetRoomRequest {
|
|
13
|
+
|
|
14
|
+
AccountId: string | undefined;
|
|
15
|
+
|
|
16
|
+
RoomId: string | undefined;
|
|
17
|
+
}
|
|
18
|
+
export declare namespace GetRoomRequest {
|
|
19
|
+
|
|
20
|
+
const filterSensitiveLog: (obj: GetRoomRequest) => any;
|
|
21
|
+
}
|
|
22
|
+
export interface GetRoomResponse {
|
|
23
|
+
|
|
24
|
+
Room?: Room;
|
|
25
|
+
}
|
|
26
|
+
export declare namespace GetRoomResponse {
|
|
27
|
+
|
|
28
|
+
const filterSensitiveLog: (obj: GetRoomResponse) => any;
|
|
29
|
+
}
|
|
30
|
+
export interface GetSipMediaApplicationRequest {
|
|
31
|
+
|
|
32
|
+
SipMediaApplicationId: string | undefined;
|
|
33
|
+
}
|
|
34
|
+
export declare namespace GetSipMediaApplicationRequest {
|
|
35
|
+
|
|
36
|
+
const filterSensitiveLog: (obj: GetSipMediaApplicationRequest) => any;
|
|
37
|
+
}
|
|
2
38
|
export interface GetSipMediaApplicationResponse {
|
|
3
39
|
|
|
4
40
|
SipMediaApplication?: SipMediaApplication;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { ChimeClientConfig } from "./ChimeClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: ChimeClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -10,7 +11,7 @@ export declare const getRuntimeConfig: (config: ChimeClientConfig) => {
|
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { ChimeClientConfig } from "./ChimeClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: ChimeClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
9
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: ChimeClientConfig) => {
|
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
24
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
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> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
26
27
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
27
28
|
tls?: boolean | undefined;
|
|
28
29
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
package/package.json
CHANGED
|
@@ -1,18 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chime",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chime Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.47.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
|
-
"build:cjs": "tsc -p tsconfig.json",
|
|
8
|
-
"build:docs": "
|
|
7
|
+
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
8
|
+
"build:docs": "typedoc",
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
|
-
"
|
|
12
|
-
"clean
|
|
13
|
-
"clean:docs": "rimraf ./docs",
|
|
14
|
-
"downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
|
|
15
|
-
"test": "exit 0"
|
|
11
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
+
"clean": "rimraf ./dist-*"
|
|
16
13
|
},
|
|
17
14
|
"main": "./dist-cjs/index.js",
|
|
18
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -21,50 +18,46 @@
|
|
|
21
18
|
"dependencies": {
|
|
22
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
45
|
-
"@aws-sdk/util-base64-node": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-
|
|
49
|
-
"@aws-sdk/util-
|
|
50
|
-
"@aws-sdk/util-
|
|
51
|
-
"@aws-sdk/util-
|
|
21
|
+
"@aws-sdk/client-sts": "3.47.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.47.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.47.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.47.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.47.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.47.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.47.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.47.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.47.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.47.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.47.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.47.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.47.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.47.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.47.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.47.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.47.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.47.0",
|
|
39
|
+
"@aws-sdk/types": "3.47.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.47.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.47.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.47.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.47.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.47.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.47.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.47.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.47.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.47.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.47.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.47.0",
|
|
52
51
|
"tslib": "^2.3.0",
|
|
53
52
|
"uuid": "^8.3.2"
|
|
54
53
|
},
|
|
55
54
|
"devDependencies": {
|
|
56
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
55
|
+
"@aws-sdk/service-client-documentation-generator": "3.47.0",
|
|
57
56
|
"@types/node": "^12.7.5",
|
|
58
|
-
"@types/uuid": "^8.3.0"
|
|
59
|
-
"downlevel-dts": "0.7.0",
|
|
60
|
-
"jest": "^26.1.0",
|
|
61
|
-
"rimraf": "^3.0.0",
|
|
62
|
-
"ts-jest": "^26.4.1",
|
|
63
|
-
"typedoc": "^0.19.2",
|
|
64
|
-
"typescript": "~4.3.5"
|
|
57
|
+
"@types/uuid": "^8.3.0"
|
|
65
58
|
},
|
|
66
59
|
"engines": {
|
|
67
|
-
"node": ">=
|
|
60
|
+
"node": ">=12.0.0"
|
|
68
61
|
},
|
|
69
62
|
"typesVersions": {
|
|
70
63
|
"<4.0": {
|