AWSS3InputSerialization

Objective-C

@interface AWSS3InputSerialization

Swift

class AWSS3InputSerialization

Describes the serialization format of the object.

  • CSV

    Describes the serialization of a CSV-encoded object.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSS3CSVInput *_Nullable CSV;

    Swift

    var csv: AWSS3CSVInput? { get set }
  • Specifies object’s compression format. Valid values: NONE, GZIP, BZIP2. Default Value: NONE.

    Declaration

    Objective-C

    @property (nonatomic) AWSS3CompressionType compressionType;

    Swift

    var compressionType: AWSS3CompressionType { get set }
  • Specifies JSON as object’s input serialization format.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSS3JSONInput *_Nullable JSON;

    Swift

    var json: AWSS3JSONInput? { get set }
  • Specifies Parquet as object’s input serialization format.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSS3ParquetInput *_Nullable parquet;

    Swift

    var parquet: AWSS3ParquetInput? { get set }