An AWS S3 credential that will be used to send HLS stream. The stream will only be uploaded if credentials are provided

Export

S3Credentials

interface S3Credentials {
    accessKeyId: string;
    bucket: string;
    region: string;
    secretAccessKey: string;
}

Properties

accessKeyId: string

An AWS access key identifier, linked to your AWS account.

Memberof

S3Credentials

bucket: string

The name of the S3 bucket where your data will be stored.

Memberof

S3Credentials

region: string

The AWS region where your bucket is located.

Memberof

S3Credentials

secretAccessKey: string

The secret key that is linked to the Access Key ID.

Memberof

S3Credentials