export declare const SignalingChannelType: { readonly SingleMaster: "SINGLE_MASTER"; }; /** * The type of the Kinesis Video Signaling Channel to create. Currently, SINGLE_MASTER is the only supported channel type. */ export type SignalingChannelType = (typeof SignalingChannelType)[keyof typeof SignalingChannelType]; export declare const StreamStorageConfigurationDefaultStorageTier: { readonly Hot: "HOT"; readonly Warm: "WARM"; }; /** * The storage tier for the Kinesis Video Stream. Determines the storage class used for stream data. */ export type StreamStorageConfigurationDefaultStorageTier = (typeof StreamStorageConfigurationDefaultStorageTier)[keyof typeof StreamStorageConfigurationDefaultStorageTier];