Package version:

Interface AmazonS3Dataset

A single Amazon Simple Storage Service (S3) object or a set of S3 objects.

interface AmazonS3Dataset {
    annotations?: any[];
    bucketName: any;
    compression?: DatasetCompression;
    description?: string;
    folder?: DatasetFolder;
    format?: DatasetStorageFormatUnion;
    key?: any;
    linkedServiceName: LinkedServiceReference;
    modifiedDatetimeEnd?: any;
    modifiedDatetimeStart?: any;
    parameters?: {
        [propertyName: string]: ParameterSpecification;
    };
    prefix?: any;
    schema?: any;
    structure?: any;
    type: "AmazonS3Object";
    version?: any;
}

Hierarchy (view full)

Properties

annotations?: any[]

List of tags that can be used for describing the Dataset.

bucketName: any

The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).

compression?: DatasetCompression

The data compression method used for the Amazon S3 object.

description?: string

Dataset description.

folder?: DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

The format of files.

key?: any

The key of the Amazon S3 object. Type: string (or Expression with resultType string).

linkedServiceName: LinkedServiceReference

Linked service reference.

modifiedDatetimeEnd?: any

The end of S3 object's modified datetime. Type: string (or Expression with resultType string).

modifiedDatetimeStart?: any

The start of S3 object's modified datetime. Type: string (or Expression with resultType string).

parameters?: {
    [propertyName: string]: ParameterSpecification;
}

Parameters for dataset.

prefix?: any

The prefix filter for the S3 object name. Type: string (or Expression with resultType string).

schema?: any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure?: any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

type

Polymorphic discriminator, which specifies the different types this object can be

version?: any

The version for the S3 object. Type: string (or Expression with resultType string).