@aws-sdk/client-chime-sdk-voice 3.312.0 → 3.315.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/dist-cjs/commands/CreateVoiceConnectorCommand.js +2 -1
- package/dist-cjs/models/models_0.js +14 -8
- package/dist-cjs/protocols/Aws_restJson1.js +916 -1824
- package/dist-es/commands/CreateVoiceConnectorCommand.js +2 -1
- package/dist-es/models/models_0.js +10 -5
- package/dist-es/protocols/Aws_restJson1.js +786 -1694
- package/dist-types/commands/CreateSipMediaApplicationCommand.d.ts +6 -0
- package/dist-types/commands/CreateVoiceConnectorCommand.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +37 -21
- package/dist-types/ts3.4/models/models_0.d.ts +11 -5
- package/package.json +6 -6
|
@@ -35,6 +35,12 @@ export interface CreateSipMediaApplicationCommandOutput extends CreateSipMediaAp
|
|
|
35
35
|
* LambdaArn: "STRING_VALUE",
|
|
36
36
|
* },
|
|
37
37
|
* ],
|
|
38
|
+
* Tags: [ // TagList
|
|
39
|
+
* { // Tag
|
|
40
|
+
* Key: "STRING_VALUE", // required
|
|
41
|
+
* Value: "STRING_VALUE", // required
|
|
42
|
+
* },
|
|
43
|
+
* ],
|
|
38
44
|
* };
|
|
39
45
|
* const command = new CreateSipMediaApplicationCommand(input);
|
|
40
46
|
* const response = await client.send(command);
|
|
@@ -33,6 +33,12 @@ export interface CreateVoiceConnectorCommandOutput extends CreateVoiceConnectorR
|
|
|
33
33
|
* Name: "STRING_VALUE", // required
|
|
34
34
|
* AwsRegion: "us-east-1" || "us-west-2" || "ca-central-1" || "eu-central-1" || "eu-west-1" || "eu-west-2" || "ap-northeast-2" || "ap-northeast-1" || "ap-southeast-1" || "ap-southeast-2",
|
|
35
35
|
* RequireEncryption: true || false, // required
|
|
36
|
+
* Tags: [ // TagList
|
|
37
|
+
* { // Tag
|
|
38
|
+
* Key: "STRING_VALUE", // required
|
|
39
|
+
* Value: "STRING_VALUE", // required
|
|
40
|
+
* },
|
|
41
|
+
* ],
|
|
36
42
|
* };
|
|
37
43
|
* const command = new CreateVoiceConnectorCommand(input);
|
|
38
44
|
* const response = await client.send(command);
|
|
@@ -565,7 +565,7 @@ export type GeoMatchLevel = (typeof GeoMatchLevel)[keyof typeof GeoMatchLevel];
|
|
|
565
565
|
*/
|
|
566
566
|
export interface GeoMatchParams {
|
|
567
567
|
/**
|
|
568
|
-
* <p>The country
|
|
568
|
+
* <p>The country.</p>
|
|
569
569
|
*/
|
|
570
570
|
Country: string | undefined;
|
|
571
571
|
/**
|
|
@@ -742,6 +742,20 @@ export interface SipMediaApplicationEndpoint {
|
|
|
742
742
|
*/
|
|
743
743
|
LambdaArn?: string;
|
|
744
744
|
}
|
|
745
|
+
/**
|
|
746
|
+
* @public
|
|
747
|
+
* <p>Describes a tag applied to a resource.</p>
|
|
748
|
+
*/
|
|
749
|
+
export interface Tag {
|
|
750
|
+
/**
|
|
751
|
+
* <p>The tag's key.</p>
|
|
752
|
+
*/
|
|
753
|
+
Key: string | undefined;
|
|
754
|
+
/**
|
|
755
|
+
* <p>The tag's value.</p>
|
|
756
|
+
*/
|
|
757
|
+
Value: string | undefined;
|
|
758
|
+
}
|
|
745
759
|
/**
|
|
746
760
|
* @public
|
|
747
761
|
*/
|
|
@@ -758,6 +772,10 @@ export interface CreateSipMediaApplicationRequest {
|
|
|
758
772
|
* <p>List of endpoints (Lambda ARNs) specified for the SIP media application.</p>
|
|
759
773
|
*/
|
|
760
774
|
Endpoints: SipMediaApplicationEndpoint[] | undefined;
|
|
775
|
+
/**
|
|
776
|
+
* <p>The tags assigned to the SIP media application.</p>
|
|
777
|
+
*/
|
|
778
|
+
Tags?: Tag[];
|
|
761
779
|
}
|
|
762
780
|
/**
|
|
763
781
|
* @public
|
|
@@ -778,7 +796,7 @@ export interface SipMediaApplication {
|
|
|
778
796
|
*/
|
|
779
797
|
Name?: string;
|
|
780
798
|
/**
|
|
781
|
-
* <p>List of endpoints for SIP media application. Currently, only one endpoint per
|
|
799
|
+
* <p>List of endpoints for a SIP media application. Currently, only one endpoint per
|
|
782
800
|
* SIP media application is permitted.</p>
|
|
783
801
|
*/
|
|
784
802
|
Endpoints?: SipMediaApplicationEndpoint[];
|
|
@@ -790,6 +808,10 @@ export interface SipMediaApplication {
|
|
|
790
808
|
* <p>The time at which the SIP media application was updated.</p>
|
|
791
809
|
*/
|
|
792
810
|
UpdatedTimestamp?: Date;
|
|
811
|
+
/**
|
|
812
|
+
* <p>The ARN of the SIP media application.</p>
|
|
813
|
+
*/
|
|
814
|
+
SipMediaApplicationArn?: string;
|
|
793
815
|
}
|
|
794
816
|
/**
|
|
795
817
|
* @public
|
|
@@ -999,6 +1021,10 @@ export interface CreateVoiceConnectorRequest {
|
|
|
999
1021
|
* <p>Enables or disables encryption for the Voice Connector.</p>
|
|
1000
1022
|
*/
|
|
1001
1023
|
RequireEncryption: boolean | undefined;
|
|
1024
|
+
/**
|
|
1025
|
+
* <p>The tags assigned to the Voice Connector.</p>
|
|
1026
|
+
*/
|
|
1027
|
+
Tags?: Tag[];
|
|
1002
1028
|
}
|
|
1003
1029
|
/**
|
|
1004
1030
|
* @public
|
|
@@ -1199,20 +1225,6 @@ export interface ServerSideEncryptionConfiguration {
|
|
|
1199
1225
|
*/
|
|
1200
1226
|
KmsKeyArn: string | undefined;
|
|
1201
1227
|
}
|
|
1202
|
-
/**
|
|
1203
|
-
* @public
|
|
1204
|
-
* <p>Describes a tag applied to a resource.</p>
|
|
1205
|
-
*/
|
|
1206
|
-
export interface Tag {
|
|
1207
|
-
/**
|
|
1208
|
-
* <p>The tag's key.</p>
|
|
1209
|
-
*/
|
|
1210
|
-
Key: string | undefined;
|
|
1211
|
-
/**
|
|
1212
|
-
* <p>The tag's value.</p>
|
|
1213
|
-
*/
|
|
1214
|
-
Value: string | undefined;
|
|
1215
|
-
}
|
|
1216
1228
|
/**
|
|
1217
1229
|
* @public
|
|
1218
1230
|
*/
|
|
@@ -2000,7 +2012,7 @@ export interface GetVoiceConnectorLoggingConfigurationRequest {
|
|
|
2000
2012
|
*/
|
|
2001
2013
|
export interface LoggingConfiguration {
|
|
2002
2014
|
/**
|
|
2003
|
-
* <p>Boolean that enables sending SIP message logs to Amazon CloudWatch
|
|
2015
|
+
* <p>Boolean that enables sending SIP message logs to Amazon CloudWatch.</p>
|
|
2004
2016
|
*/
|
|
2005
2017
|
EnableSIPLogs?: boolean;
|
|
2006
2018
|
/**
|
|
@@ -3617,6 +3629,10 @@ export declare const CreateProxySessionResponseFilterSensitiveLog: (obj: CreateP
|
|
|
3617
3629
|
* @internal
|
|
3618
3630
|
*/
|
|
3619
3631
|
export declare const SipMediaApplicationEndpointFilterSensitiveLog: (obj: SipMediaApplicationEndpoint) => any;
|
|
3632
|
+
/**
|
|
3633
|
+
* @internal
|
|
3634
|
+
*/
|
|
3635
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
3620
3636
|
/**
|
|
3621
3637
|
* @internal
|
|
3622
3638
|
*/
|
|
@@ -3636,19 +3652,19 @@ export declare const CreateSipMediaApplicationCallRequestFilterSensitiveLog: (ob
|
|
|
3636
3652
|
/**
|
|
3637
3653
|
* @internal
|
|
3638
3654
|
*/
|
|
3639
|
-
export declare const
|
|
3655
|
+
export declare const CreateVoiceConnectorRequestFilterSensitiveLog: (obj: CreateVoiceConnectorRequest) => any;
|
|
3640
3656
|
/**
|
|
3641
3657
|
* @internal
|
|
3642
3658
|
*/
|
|
3643
|
-
export declare const
|
|
3659
|
+
export declare const VoiceProfileFilterSensitiveLog: (obj: VoiceProfile) => any;
|
|
3644
3660
|
/**
|
|
3645
3661
|
* @internal
|
|
3646
3662
|
*/
|
|
3647
|
-
export declare const
|
|
3663
|
+
export declare const CreateVoiceProfileResponseFilterSensitiveLog: (obj: CreateVoiceProfileResponse) => any;
|
|
3648
3664
|
/**
|
|
3649
3665
|
* @internal
|
|
3650
3666
|
*/
|
|
3651
|
-
export declare const
|
|
3667
|
+
export declare const ServerSideEncryptionConfigurationFilterSensitiveLog: (obj: ServerSideEncryptionConfiguration) => any;
|
|
3652
3668
|
/**
|
|
3653
3669
|
* @internal
|
|
3654
3670
|
*/
|
|
@@ -297,10 +297,15 @@ export declare class ConflictException extends __BaseException {
|
|
|
297
297
|
export interface SipMediaApplicationEndpoint {
|
|
298
298
|
LambdaArn?: string;
|
|
299
299
|
}
|
|
300
|
+
export interface Tag {
|
|
301
|
+
Key: string | undefined;
|
|
302
|
+
Value: string | undefined;
|
|
303
|
+
}
|
|
300
304
|
export interface CreateSipMediaApplicationRequest {
|
|
301
305
|
AwsRegion: string | undefined;
|
|
302
306
|
Name: string | undefined;
|
|
303
307
|
Endpoints: SipMediaApplicationEndpoint[] | undefined;
|
|
308
|
+
Tags?: Tag[];
|
|
304
309
|
}
|
|
305
310
|
export interface SipMediaApplication {
|
|
306
311
|
SipMediaApplicationId?: string;
|
|
@@ -309,6 +314,7 @@ export interface SipMediaApplication {
|
|
|
309
314
|
Endpoints?: SipMediaApplicationEndpoint[];
|
|
310
315
|
CreatedTimestamp?: Date;
|
|
311
316
|
UpdatedTimestamp?: Date;
|
|
317
|
+
SipMediaApplicationArn?: string;
|
|
312
318
|
}
|
|
313
319
|
export interface CreateSipMediaApplicationResponse {
|
|
314
320
|
SipMediaApplication?: SipMediaApplication;
|
|
@@ -375,6 +381,7 @@ export interface CreateVoiceConnectorRequest {
|
|
|
375
381
|
Name: string | undefined;
|
|
376
382
|
AwsRegion?: VoiceConnectorAwsRegion | string;
|
|
377
383
|
RequireEncryption: boolean | undefined;
|
|
384
|
+
Tags?: Tag[];
|
|
378
385
|
}
|
|
379
386
|
export interface VoiceConnector {
|
|
380
387
|
VoiceConnectorId?: string;
|
|
@@ -432,10 +439,6 @@ export declare class GoneException extends __BaseException {
|
|
|
432
439
|
export interface ServerSideEncryptionConfiguration {
|
|
433
440
|
KmsKeyArn: string | undefined;
|
|
434
441
|
}
|
|
435
|
-
export interface Tag {
|
|
436
|
-
Key: string | undefined;
|
|
437
|
-
Value: string | undefined;
|
|
438
|
-
}
|
|
439
442
|
export interface CreateVoiceProfileDomainRequest {
|
|
440
443
|
Name: string | undefined;
|
|
441
444
|
Description?: string;
|
|
@@ -1209,6 +1212,7 @@ export declare const CreateProxySessionResponseFilterSensitiveLog: (
|
|
|
1209
1212
|
export declare const SipMediaApplicationEndpointFilterSensitiveLog: (
|
|
1210
1213
|
obj: SipMediaApplicationEndpoint
|
|
1211
1214
|
) => any;
|
|
1215
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1212
1216
|
export declare const CreateSipMediaApplicationRequestFilterSensitiveLog: (
|
|
1213
1217
|
obj: CreateSipMediaApplicationRequest
|
|
1214
1218
|
) => any;
|
|
@@ -1221,6 +1225,9 @@ export declare const CreateSipMediaApplicationResponseFilterSensitiveLog: (
|
|
|
1221
1225
|
export declare const CreateSipMediaApplicationCallRequestFilterSensitiveLog: (
|
|
1222
1226
|
obj: CreateSipMediaApplicationCallRequest
|
|
1223
1227
|
) => any;
|
|
1228
|
+
export declare const CreateVoiceConnectorRequestFilterSensitiveLog: (
|
|
1229
|
+
obj: CreateVoiceConnectorRequest
|
|
1230
|
+
) => any;
|
|
1224
1231
|
export declare const VoiceProfileFilterSensitiveLog: (obj: VoiceProfile) => any;
|
|
1225
1232
|
export declare const CreateVoiceProfileResponseFilterSensitiveLog: (
|
|
1226
1233
|
obj: CreateVoiceProfileResponse
|
|
@@ -1228,7 +1235,6 @@ export declare const CreateVoiceProfileResponseFilterSensitiveLog: (
|
|
|
1228
1235
|
export declare const ServerSideEncryptionConfigurationFilterSensitiveLog: (
|
|
1229
1236
|
obj: ServerSideEncryptionConfiguration
|
|
1230
1237
|
) => any;
|
|
1231
|
-
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1232
1238
|
export declare const CreateVoiceProfileDomainRequestFilterSensitiveLog: (
|
|
1233
1239
|
obj: CreateVoiceProfileDomainRequest
|
|
1234
1240
|
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chime-sdk-voice",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chime Sdk Voice Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.315.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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.315.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.315.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.315.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.315.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.315.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|