@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.
@@ -293,11 +293,16 @@ export interface GetVoiceConnectorOriginationRequest {
293
293
  }
294
294
  /**
295
295
  * @public
296
+ * @enum
296
297
  */
297
- export declare enum OriginationRouteProtocol {
298
- TCP = "TCP",
299
- UDP = "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 enum NotificationTarget {
416
- EventBridge = "EventBridge",
417
- SNS = "SNS",
418
- SQS = "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 enum SortOrder {
920
- ASCENDING = "ASCENDING",
921
- DESCENDING = "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
  */