Struct rusoto_s3::SelectParameters[][src]

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

Describes the parameters for Select job types.

Fields

The expression that is used to query the object.

The type of the provided expression (e.g., 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