@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
22 lines (21 loc) • 661 B
TypeScript
import BitmovinResource from './BitmovinResource';
/**
* @export
* @class LiveStandbyPoolRequest
*/
export declare class LiveStandbyPoolRequest extends BitmovinResource {
/**
* Number of instances to keep ready for streaming while the pool is running (required)
* @type {number}
* @memberof LiveStandbyPoolRequest
*/
targetPoolSize?: number;
/**
* Base64 encoded template used to start the encodings in the pool (required)
* @type {string}
* @memberof LiveStandbyPoolRequest
*/
encodingTemplate?: string;
constructor(obj?: Partial<LiveStandbyPoolRequest>);
}
export default LiveStandbyPoolRequest;