/** * @public * @enum */ export declare const APIName: { readonly GET_CLIP: "GET_CLIP"; readonly GET_DASH_STREAMING_SESSION_URL: "GET_DASH_STREAMING_SESSION_URL"; readonly GET_HLS_STREAMING_SESSION_URL: "GET_HLS_STREAMING_SESSION_URL"; readonly GET_IMAGES: "GET_IMAGES"; readonly GET_MEDIA: "GET_MEDIA"; readonly GET_MEDIA_FOR_FRAGMENT_LIST: "GET_MEDIA_FOR_FRAGMENT_LIST"; readonly LIST_FRAGMENTS: "LIST_FRAGMENTS"; readonly PUT_MEDIA: "PUT_MEDIA"; }; /** * @public */ export type APIName = (typeof APIName)[keyof typeof APIName]; /** * @public * @enum */ export declare const Status: { readonly ACTIVE: "ACTIVE"; readonly CREATING: "CREATING"; readonly DELETING: "DELETING"; readonly UPDATING: "UPDATING"; }; /** * @public */ export type Status = (typeof Status)[keyof typeof Status]; /** * @public * @enum */ export declare const ChannelType: { readonly FULL_MESH: "FULL_MESH"; readonly SINGLE_MASTER: "SINGLE_MASTER"; }; /** * @public */ export type ChannelType = (typeof ChannelType)[keyof typeof ChannelType]; /** * @public * @enum */ export declare const ComparisonOperator: { readonly BEGINS_WITH: "BEGINS_WITH"; }; /** * @public */ export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof ComparisonOperator]; /** * @public * @enum */ export declare const ChannelProtocol: { readonly HTTPS: "HTTPS"; readonly WEBRTC: "WEBRTC"; readonly WSS: "WSS"; }; /** * @public */ export type ChannelProtocol = (typeof ChannelProtocol)[keyof typeof ChannelProtocol]; /** * @public * @enum */ export declare const ChannelRole: { readonly MASTER: "MASTER"; readonly VIEWER: "VIEWER"; }; /** * @public */ export type ChannelRole = (typeof ChannelRole)[keyof typeof ChannelRole]; /** * @public * @enum */ export declare const ConfigurationStatus: { readonly DISABLED: "DISABLED"; readonly ENABLED: "ENABLED"; }; /** * @public */ export type ConfigurationStatus = (typeof ConfigurationStatus)[keyof typeof ConfigurationStatus]; /** * @public * @enum */ export declare const DefaultStorageTier: { readonly HOT: "HOT"; readonly WARM: "WARM"; }; /** * @public */ export type DefaultStorageTier = (typeof DefaultStorageTier)[keyof typeof DefaultStorageTier]; /** * @public * @enum */ export declare const StrategyOnFullSize: { readonly DELETE_OLDEST_MEDIA: "DELETE_OLDEST_MEDIA"; readonly DENY_NEW_MEDIA: "DENY_NEW_MEDIA"; }; /** * @public */ export type StrategyOnFullSize = (typeof StrategyOnFullSize)[keyof typeof StrategyOnFullSize]; /** * @public * @enum */ export declare const RecorderStatus: { readonly SUCCESS: "SUCCESS"; readonly SYSTEM_ERROR: "SYSTEM_ERROR"; readonly USER_ERROR: "USER_ERROR"; }; /** * @public */ export type RecorderStatus = (typeof RecorderStatus)[keyof typeof RecorderStatus]; /** * @public * @enum */ export declare const UploaderStatus: { readonly SUCCESS: "SUCCESS"; readonly SYSTEM_ERROR: "SYSTEM_ERROR"; readonly USER_ERROR: "USER_ERROR"; }; /** * @public */ export type UploaderStatus = (typeof UploaderStatus)[keyof typeof UploaderStatus]; /** * @public * @enum */ export declare const MediaUriType: { readonly FILE_URI: "FILE_URI"; readonly RTSP_URI: "RTSP_URI"; }; /** * @public */ export type MediaUriType = (typeof MediaUriType)[keyof typeof MediaUriType]; /** * @public * @enum */ export declare const SyncStatus: { readonly ACKNOWLEDGED: "ACKNOWLEDGED"; readonly DELETE_FAILED: "DELETE_FAILED"; readonly DELETING: "DELETING"; readonly DELETING_ACKNOWLEDGED: "DELETING_ACKNOWLEDGED"; readonly IN_SYNC: "IN_SYNC"; readonly SYNCING: "SYNCING"; readonly SYNC_FAILED: "SYNC_FAILED"; }; /** * @public */ export type SyncStatus = (typeof SyncStatus)[keyof typeof SyncStatus]; /** * @public * @enum */ export declare const Format: { readonly JPEG: "JPEG"; readonly PNG: "PNG"; }; /** * @public */ export type Format = (typeof Format)[keyof typeof Format]; /** * @public * @enum */ export declare const FormatConfigKey: { readonly JPEGQuality: "JPEGQuality"; }; /** * @public */ export type FormatConfigKey = (typeof FormatConfigKey)[keyof typeof FormatConfigKey]; /** * @public * @enum */ export declare const ImageSelectorType: { readonly PRODUCER_TIMESTAMP: "PRODUCER_TIMESTAMP"; readonly SERVER_TIMESTAMP: "SERVER_TIMESTAMP"; }; /** * @public */ export type ImageSelectorType = (typeof ImageSelectorType)[keyof typeof ImageSelectorType]; /** * @public * @enum */ export declare const MediaStorageConfigurationStatus: { readonly DISABLED: "DISABLED"; readonly ENABLED: "ENABLED"; }; /** * @public */ export type MediaStorageConfigurationStatus = (typeof MediaStorageConfigurationStatus)[keyof typeof MediaStorageConfigurationStatus]; /** * @public * @enum */ export declare const UpdateDataRetentionOperation: { readonly DECREASE_DATA_RETENTION: "DECREASE_DATA_RETENTION"; readonly INCREASE_DATA_RETENTION: "INCREASE_DATA_RETENTION"; }; /** * @public */ export type UpdateDataRetentionOperation = (typeof UpdateDataRetentionOperation)[keyof typeof UpdateDataRetentionOperation];