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
- Struct
- Aws::Glacier::Types::SelectParameters
- 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
-
#expression ⇒ String
The expression that is used to select the object.
-
#expression_type ⇒ String
The type of the provided expression, for example
SQL
. -
#input_serialization ⇒ Types::InputSerialization
Describes the serialization format of the object.
-
#output_serialization ⇒ Types::OutputSerialization
Describes how the results of the select job are serialized.
Instance Attribute Details
#expression ⇒ String
The expression that is used to select the object.
#expression_type ⇒ String
The type of the provided expression, for example SQL
.
Possible values:
- SQL
#input_serialization ⇒ Types::InputSerialization
Describes the serialization format of the object.
#output_serialization ⇒ Types::OutputSerialization
Describes how the results of the select job are serialized.