@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
21 lines (20 loc) • 557 B
TypeScript
/**
* @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<LiveStandbyPoolUpdate>);
}
export default LiveStandbyPoolUpdate;