@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
28 lines (27 loc) • 826 B
TypeScript
import AclEntry from './AclEntry';
/**
* @export
* @class EncodingOutput
*/
export declare class EncodingOutput {
/**
* Id of the corresponding output (required)
* @type {string}
* @memberof EncodingOutput
*/
outputId?: string;
/**
* Subdirectory where to save the files to (required)
* @type {string}
* @memberof EncodingOutput
*/
outputPath?: string;
/**
* Determines accessibility of files written to this output. Only applies to output types that support ACLs. Defaults to PUBLIC_READ if the list is empty. The destination (e.g. cloud storage bucket) needs to allow the configured ACL
* @type {AclEntry[]}
* @memberof EncodingOutput
*/
acl?: AclEntry[];
constructor(obj?: Partial<EncodingOutput>);
}
export default EncodingOutput;