Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

InputSerialization

import type { InputSerialization } from "https://aws-api.deno.dev/v0.4/services/s3.ts?docs=full";

Describes the serialization format of the object.

interface InputSerialization {
CompressionType?: CompressionType | null;
CSV?: CSVInput | null;
JSON?: JSONInput | null;
Parquet?: ParquetInput | null;
}

§Properties

§
CompressionType?: CompressionType | null
[src]

Specifies object's compression format. Valid values: NONE, GZIP, BZIP2. Default Value: NONE.

§
CSV?: CSVInput | null
[src]

Describes the serialization of a CSV-encoded object.

§
JSON?: JSONInput | null
[src]

Specifies JSON as object's input serialization format.

§
Parquet?: ParquetInput | null
[src]

Specifies Parquet as object's input serialization format.