You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Glacier::Types::SelectParameters

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing SelectParameters as input to an Aws::Client method, you can use a vanilla 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",
    },
  },
}

Contains information about the parameters used for a select.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#expressionString

The expression that is used to select the object.

Returns:

  • (String)

    The expression that is used to select the object.

#expression_typeString

The type of the provided expression, for example SQL.

Possible values:

  • SQL

Returns:

  • (String)

    The type of the provided expression, for example SQL.

#input_serializationTypes::InputSerialization

Describes the serialization format of the object.

Returns:

#output_serializationTypes::OutputSerialization

Describes how the results of the select job are serialized.

Returns: