@aws-sdk/client-chime 3.301.0 → 3.303.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/models/models_0.js +254 -302
- package/dist-cjs/models/models_1.js +13 -16
- package/dist-es/models/models_0.js +254 -302
- package/dist-es/models/models_1.js +13 -16
- package/dist-types/models/models_0.d.ts +494 -254
- package/dist-types/models/models_1.d.ts +28 -13
- package/dist-types/ts3.4/models/models_0.d.ts +336 -254
- package/dist-types/ts3.4/models/models_1.d.ts +18 -13
- package/package.json +34 -34
|
@@ -293,11 +293,16 @@ export interface GetVoiceConnectorOriginationRequest {
|
|
|
293
293
|
}
|
|
294
294
|
/**
|
|
295
295
|
* @public
|
|
296
|
+
* @enum
|
|
296
297
|
*/
|
|
297
|
-
export declare
|
|
298
|
-
TCP
|
|
299
|
-
UDP
|
|
300
|
-
}
|
|
298
|
+
export declare const OriginationRouteProtocol: {
|
|
299
|
+
readonly TCP: "TCP";
|
|
300
|
+
readonly UDP: "UDP";
|
|
301
|
+
};
|
|
302
|
+
/**
|
|
303
|
+
* @public
|
|
304
|
+
*/
|
|
305
|
+
export type OriginationRouteProtocol = (typeof OriginationRouteProtocol)[keyof typeof OriginationRouteProtocol];
|
|
301
306
|
/**
|
|
302
307
|
* @public
|
|
303
308
|
* <p>Origination routes define call distribution properties for your SIP hosts to receive inbound
|
|
@@ -411,12 +416,17 @@ export interface GetVoiceConnectorStreamingConfigurationRequest {
|
|
|
411
416
|
}
|
|
412
417
|
/**
|
|
413
418
|
* @public
|
|
419
|
+
* @enum
|
|
414
420
|
*/
|
|
415
|
-
export declare
|
|
416
|
-
EventBridge
|
|
417
|
-
SNS
|
|
418
|
-
SQS
|
|
419
|
-
}
|
|
421
|
+
export declare const NotificationTarget: {
|
|
422
|
+
readonly EventBridge: "EventBridge";
|
|
423
|
+
readonly SNS: "SNS";
|
|
424
|
+
readonly SQS: "SQS";
|
|
425
|
+
};
|
|
426
|
+
/**
|
|
427
|
+
* @public
|
|
428
|
+
*/
|
|
429
|
+
export type NotificationTarget = (typeof NotificationTarget)[keyof typeof NotificationTarget];
|
|
420
430
|
/**
|
|
421
431
|
* @public
|
|
422
432
|
* <p>The targeted recipient for a streaming configuration notification.</p>
|
|
@@ -915,11 +925,16 @@ export interface ListChannelMembershipsForAppInstanceUserResponse {
|
|
|
915
925
|
}
|
|
916
926
|
/**
|
|
917
927
|
* @public
|
|
928
|
+
* @enum
|
|
918
929
|
*/
|
|
919
|
-
export declare
|
|
920
|
-
ASCENDING
|
|
921
|
-
DESCENDING
|
|
922
|
-
}
|
|
930
|
+
export declare const SortOrder: {
|
|
931
|
+
readonly ASCENDING: "ASCENDING";
|
|
932
|
+
readonly DESCENDING: "DESCENDING";
|
|
933
|
+
};
|
|
934
|
+
/**
|
|
935
|
+
* @public
|
|
936
|
+
*/
|
|
937
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
923
938
|
/**
|
|
924
939
|
* @public
|
|
925
940
|
*/
|