/** * @export * @class LiveStandbyPoolUpdate */ export declare class LiveStandbyPoolUpdate { /** * Number of instances to keep ready for streaming while the pool is running * @type {number} * @memberof LiveStandbyPoolUpdate */ targetPoolSize?: number; /** * Base64 encoded template used to start the encodings in the pool * @type {string} * @memberof LiveStandbyPoolUpdate */ encodingTemplate?: string; constructor(obj?: Partial); } export default LiveStandbyPoolUpdate;