UNPKG

418 BTypeScriptView Raw
1/**
2 * An interface that represents the location of a specific object in an S3 Bucket.
3 */
4export interface Location {
5 /**
6 * The name of the S3 Bucket the object is in.
7 */
8 readonly bucketName: string;
9 /**
10 * The path inside the Bucket where the object is located at.
11 */
12 readonly objectKey: string;
13 /**
14 * The S3 object version.
15 */
16 readonly objectVersion?: string;
17}