UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

42 lines (41 loc) 1 kB
import AwsCloudRegion from './AwsCloudRegion'; import Input from './Input'; import InputType from './InputType'; /** * @export * @class S3Input */ export declare class S3Input extends Input { /** * Discriminator property for Input * @type {string} * @memberof S3Input */ readonly type: InputType; /** * The cloud region in which the bucket is located. Is used to determine the ideal location for your encodings automatically. * @type {AwsCloudRegion} * @memberof S3Input */ cloudRegion?: AwsCloudRegion; /** * Name of the bucket (required) * @type {string} * @memberof S3Input */ bucketName?: string; /** * Amazon access key (required) * @type {string} * @memberof S3Input */ accessKey?: string; /** * Amazon secret key (required) * @type {string} * @memberof S3Input */ secretKey?: string; constructor(obj?: Partial<S3Input>); } export default S3Input;