@aws-sdk/client-chime 3.428.0 → 3.429.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.
|
@@ -363,7 +363,7 @@ export interface OriginationRoute {
|
|
|
363
363
|
* @public
|
|
364
364
|
* <p>The protocol to use for the origination route. Encryption-enabled Amazon Chime Voice Connectors use TCP protocol by default.</p>
|
|
365
365
|
*/
|
|
366
|
-
Protocol?: OriginationRouteProtocol
|
|
366
|
+
Protocol?: OriginationRouteProtocol;
|
|
367
367
|
/**
|
|
368
368
|
* @public
|
|
369
369
|
* <p>The priority associated with the host, with 1 being the highest priority. Higher priority
|
|
@@ -487,7 +487,7 @@ export interface StreamingNotificationTarget {
|
|
|
487
487
|
* @public
|
|
488
488
|
* <p>The streaming notification target.</p>
|
|
489
489
|
*/
|
|
490
|
-
NotificationTarget: NotificationTarget |
|
|
490
|
+
NotificationTarget: NotificationTarget | undefined;
|
|
491
491
|
}
|
|
492
492
|
/**
|
|
493
493
|
* @public
|
|
@@ -627,7 +627,7 @@ export interface Invite {
|
|
|
627
627
|
* @public
|
|
628
628
|
* <p>The status of the invite.</p>
|
|
629
629
|
*/
|
|
630
|
-
Status?: InviteStatus
|
|
630
|
+
Status?: InviteStatus;
|
|
631
631
|
/**
|
|
632
632
|
* @public
|
|
633
633
|
* <p>The email address to which the invite is sent.</p>
|
|
@@ -637,7 +637,7 @@ export interface Invite {
|
|
|
637
637
|
* @public
|
|
638
638
|
* <p>The status of the invite email.</p>
|
|
639
639
|
*/
|
|
640
|
-
EmailStatus?: EmailStatus
|
|
640
|
+
EmailStatus?: EmailStatus;
|
|
641
641
|
}
|
|
642
642
|
/**
|
|
643
643
|
* @public
|
|
@@ -657,7 +657,7 @@ export interface InviteUsersRequest {
|
|
|
657
657
|
* @public
|
|
658
658
|
* <p>The user type.</p>
|
|
659
659
|
*/
|
|
660
|
-
UserType?: UserType
|
|
660
|
+
UserType?: UserType;
|
|
661
661
|
}
|
|
662
662
|
/**
|
|
663
663
|
* @public
|
|
@@ -975,7 +975,7 @@ export interface ListChannelMembershipsRequest {
|
|
|
975
975
|
* are only returned if the type filter in <code>ListChannelMemberships</code> equals
|
|
976
976
|
* <code>HIDDEN</code>. Otherwise hidden members are not returned.</p>
|
|
977
977
|
*/
|
|
978
|
-
Type?: ChannelMembershipType
|
|
978
|
+
Type?: ChannelMembershipType;
|
|
979
979
|
/**
|
|
980
980
|
* @public
|
|
981
981
|
* <p>The maximum number of channel memberships that you want returned.</p>
|
|
@@ -1080,7 +1080,7 @@ export interface ListChannelMessagesRequest {
|
|
|
1080
1080
|
* <p>The order in which you want messages sorted. Default is Descending, based on time
|
|
1081
1081
|
* created.</p>
|
|
1082
1082
|
*/
|
|
1083
|
-
SortOrder?: SortOrder
|
|
1083
|
+
SortOrder?: SortOrder;
|
|
1084
1084
|
/**
|
|
1085
1085
|
* @public
|
|
1086
1086
|
* <p>The initial or starting time stamp for your requested messages.</p>
|
|
@@ -1189,7 +1189,7 @@ export interface ListChannelsRequest {
|
|
|
1189
1189
|
* <code>PRIVATE</code> retrieves private channels. Only an <code>AppInstanceAdmin</code>
|
|
1190
1190
|
* can retrieve private channels. </p>
|
|
1191
1191
|
*/
|
|
1192
|
-
Privacy?: ChannelPrivacy
|
|
1192
|
+
Privacy?: ChannelPrivacy;
|
|
1193
1193
|
/**
|
|
1194
1194
|
* @public
|
|
1195
1195
|
* <p>The maximum number of channels that you want to return.</p>
|
|
@@ -1382,17 +1382,17 @@ export interface ListPhoneNumbersRequest {
|
|
|
1382
1382
|
* @public
|
|
1383
1383
|
* <p>The phone number status.</p>
|
|
1384
1384
|
*/
|
|
1385
|
-
Status?: PhoneNumberStatus
|
|
1385
|
+
Status?: PhoneNumberStatus;
|
|
1386
1386
|
/**
|
|
1387
1387
|
* @public
|
|
1388
1388
|
* <p>The phone number product type.</p>
|
|
1389
1389
|
*/
|
|
1390
|
-
ProductType?: PhoneNumberProductType
|
|
1390
|
+
ProductType?: PhoneNumberProductType;
|
|
1391
1391
|
/**
|
|
1392
1392
|
* @public
|
|
1393
1393
|
* <p>The filter to use to limit the number of results.</p>
|
|
1394
1394
|
*/
|
|
1395
|
-
FilterName?: PhoneNumberAssociationName
|
|
1395
|
+
FilterName?: PhoneNumberAssociationName;
|
|
1396
1396
|
/**
|
|
1397
1397
|
* @public
|
|
1398
1398
|
* <p>The value to use for the filter.</p>
|
|
@@ -1437,7 +1437,7 @@ export interface ListProxySessionsRequest {
|
|
|
1437
1437
|
* @public
|
|
1438
1438
|
* <p>The proxy session status.</p>
|
|
1439
1439
|
*/
|
|
1440
|
-
Status?: ProxySessionStatus
|
|
1440
|
+
Status?: ProxySessionStatus;
|
|
1441
1441
|
/**
|
|
1442
1442
|
* @public
|
|
1443
1443
|
* <p>The token to use to retrieve the next page of results.</p>
|
|
@@ -1617,7 +1617,7 @@ export interface ListSupportedPhoneNumberCountriesRequest {
|
|
|
1617
1617
|
* @public
|
|
1618
1618
|
* <p>The phone number product type.</p>
|
|
1619
1619
|
*/
|
|
1620
|
-
ProductType: PhoneNumberProductType |
|
|
1620
|
+
ProductType: PhoneNumberProductType | undefined;
|
|
1621
1621
|
}
|
|
1622
1622
|
/**
|
|
1623
1623
|
* @public
|
|
@@ -1633,7 +1633,7 @@ export interface PhoneNumberCountry {
|
|
|
1633
1633
|
* @public
|
|
1634
1634
|
* <p>The supported phone number types. </p>
|
|
1635
1635
|
*/
|
|
1636
|
-
SupportedPhoneNumberTypes?:
|
|
1636
|
+
SupportedPhoneNumberTypes?: PhoneNumberType[];
|
|
1637
1637
|
}
|
|
1638
1638
|
/**
|
|
1639
1639
|
* @public
|
|
@@ -1683,7 +1683,7 @@ export interface ListUsersRequest {
|
|
|
1683
1683
|
* @public
|
|
1684
1684
|
* <p>The user type.</p>
|
|
1685
1685
|
*/
|
|
1686
|
-
UserType?: UserType
|
|
1686
|
+
UserType?: UserType;
|
|
1687
1687
|
/**
|
|
1688
1688
|
* @public
|
|
1689
1689
|
* <p>The maximum number of results to return in a single call. Defaults to 100.</p>
|
|
@@ -2324,7 +2324,7 @@ export interface SearchAvailablePhoneNumbersRequest {
|
|
|
2324
2324
|
* @public
|
|
2325
2325
|
* <p>The phone number type used to filter results. Required for non-US numbers.</p>
|
|
2326
2326
|
*/
|
|
2327
|
-
PhoneNumberType?: PhoneNumberType
|
|
2327
|
+
PhoneNumberType?: PhoneNumberType;
|
|
2328
2328
|
/**
|
|
2329
2329
|
* @public
|
|
2330
2330
|
* <p>The maximum number of results to return in a single call.</p>
|
|
@@ -2369,12 +2369,12 @@ export interface SendChannelMessageRequest {
|
|
|
2369
2369
|
* @public
|
|
2370
2370
|
* <p>The type of message, <code>STANDARD</code> or <code>CONTROL</code>.</p>
|
|
2371
2371
|
*/
|
|
2372
|
-
Type: ChannelMessageType |
|
|
2372
|
+
Type: ChannelMessageType | undefined;
|
|
2373
2373
|
/**
|
|
2374
2374
|
* @public
|
|
2375
2375
|
* <p>Boolean that controls whether the message is persisted on the back end. Required.</p>
|
|
2376
2376
|
*/
|
|
2377
|
-
Persistence: ChannelMessagePersistenceType |
|
|
2377
|
+
Persistence: ChannelMessagePersistenceType | undefined;
|
|
2378
2378
|
/**
|
|
2379
2379
|
* @public
|
|
2380
2380
|
* <p>The optional metadata for each message.</p>
|
|
@@ -2575,7 +2575,7 @@ export interface UpdateAccountRequest {
|
|
|
2575
2575
|
* @public
|
|
2576
2576
|
* <p>The default license applied when you add users to an Amazon Chime account.</p>
|
|
2577
2577
|
*/
|
|
2578
|
-
DefaultLicense?: License
|
|
2578
|
+
DefaultLicense?: License;
|
|
2579
2579
|
}
|
|
2580
2580
|
/**
|
|
2581
2581
|
* @public
|
|
@@ -2715,7 +2715,7 @@ export interface UpdateChannelRequest {
|
|
|
2715
2715
|
* @public
|
|
2716
2716
|
* <p>The mode of the update request.</p>
|
|
2717
2717
|
*/
|
|
2718
|
-
Mode: ChannelMode |
|
|
2718
|
+
Mode: ChannelMode | undefined;
|
|
2719
2719
|
/**
|
|
2720
2720
|
* @public
|
|
2721
2721
|
* <p>The metadata for the update request.</p>
|
|
@@ -2835,7 +2835,7 @@ export interface UpdatePhoneNumberRequest {
|
|
|
2835
2835
|
* @public
|
|
2836
2836
|
* <p>The product type.</p>
|
|
2837
2837
|
*/
|
|
2838
|
-
ProductType?: PhoneNumberProductType
|
|
2838
|
+
ProductType?: PhoneNumberProductType;
|
|
2839
2839
|
/**
|
|
2840
2840
|
* @public
|
|
2841
2841
|
* <p>The outbound calling name associated with the phone number.</p>
|
|
@@ -2880,7 +2880,7 @@ export interface UpdateProxySessionRequest {
|
|
|
2880
2880
|
* @public
|
|
2881
2881
|
* <p>The proxy session capabilities.</p>
|
|
2882
2882
|
*/
|
|
2883
|
-
Capabilities:
|
|
2883
|
+
Capabilities: Capability[] | undefined;
|
|
2884
2884
|
/**
|
|
2885
2885
|
* @public
|
|
2886
2886
|
* <p>The number of minutes allowed for the proxy session.</p>
|
|
@@ -2950,7 +2950,7 @@ export interface UpdateRoomMembershipRequest {
|
|
|
2950
2950
|
* @public
|
|
2951
2951
|
* <p>The role of the member.</p>
|
|
2952
2952
|
*/
|
|
2953
|
-
Role?: RoomMembershipRole
|
|
2953
|
+
Role?: RoomMembershipRole;
|
|
2954
2954
|
}
|
|
2955
2955
|
/**
|
|
2956
2956
|
* @public
|
|
@@ -3076,12 +3076,12 @@ export interface UpdateUserRequest {
|
|
|
3076
3076
|
* <p>The user license type to update. This must be a supported license type for the Amazon Chime
|
|
3077
3077
|
* account that the user belongs to.</p>
|
|
3078
3078
|
*/
|
|
3079
|
-
LicenseType?: License
|
|
3079
|
+
LicenseType?: License;
|
|
3080
3080
|
/**
|
|
3081
3081
|
* @public
|
|
3082
3082
|
* <p>The user type.</p>
|
|
3083
3083
|
*/
|
|
3084
|
-
UserType?: UserType
|
|
3084
|
+
UserType?: UserType;
|
|
3085
3085
|
/**
|
|
3086
3086
|
* @public
|
|
3087
3087
|
* <p>The Alexa for Business metadata.</p>
|