Struct rusoto_glacier::SelectParameters[][src]

pub struct SelectParameters {
    pub expression: Option<String>,
    pub expression_type: Option<String>,
    pub input_serialization: Option<InputSerialization>,
    pub output_serialization: Option<OutputSerialization>,
}

Contains information about the parameters used for a select.

Fields

The expression that is used to select the object.

The type of the provided expression, for example SQL.

Describes the serialization format of the object.

Describes how the results of the select job are serialized.

Trait Implementations

impl Default for SelectParameters
[src]

Returns the "default value" for a type. Read more

impl Debug for SelectParameters
[src]

Formats the value using the given formatter. Read more

impl Clone for SelectParameters
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SelectParameters
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations