class Aws::Glacier::Types::SelectParameters

Contains information about the parameters used for a select.

@note When making an API call, you may pass SelectParameters

data as a hash:

    {
      input_serialization: {
        csv: {
          file_header_info: "USE", # accepts USE, IGNORE, NONE
          comments: "string",
          quote_escape_character: "string",
          record_delimiter: "string",
          field_delimiter: "string",
          quote_character: "string",
        },
      },
      expression_type: "SQL", # accepts SQL
      expression: "string",
      output_serialization: {
        csv: {
          quote_fields: "ALWAYS", # accepts ALWAYS, ASNEEDED
          quote_escape_character: "string",
          record_delimiter: "string",
          field_delimiter: "string",
          quote_character: "string",
        },
      },
    }

@!attribute [rw] input_serialization

Describes the serialization format of the object.
@return [Types::InputSerialization]

@!attribute [rw] expression_type

The type of the provided expression, for example `SQL`.
@return [String]

@!attribute [rw] expression

The expression that is used to select the object.
@return [String]

@!attribute [rw] output_serialization

Describes how the results of the select job are serialized.
@return [Types::OutputSerialization]

Constants

SENSITIVE