import { _CSVOutput, _UnmarshalledCSVOutput } from "./_CSVOutput"; import { _JSONOutput, _UnmarshalledJSONOutput } from "./_JSONOutput"; /** *

Describes how results of the Select job are serialized.

*/ export interface _OutputSerialization { /** *

Describes the serialization of CSV-encoded Select results.

*/ CSV?: _CSVOutput; /** *

Specifies JSON as request's output serialization format.

*/ JSON?: _JSONOutput; } export interface _UnmarshalledOutputSerialization extends _OutputSerialization { /** *

Describes the serialization of CSV-encoded Select results.

*/ CSV?: _UnmarshalledCSVOutput; /** *

Specifies JSON as request's output serialization format.

*/ JSON?: _UnmarshalledJSONOutput; }