Struct aws_sdk_s3::model::select_parameters::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for SelectParameters
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn input_serialization(self, input: InputSerialization) -> Self
pub fn input_serialization(self, input: InputSerialization) -> Self
Describes the serialization format of the object.
sourcepub fn set_input_serialization(self, input: Option<InputSerialization>) -> Self
pub fn set_input_serialization(self, input: Option<InputSerialization>) -> Self
Describes the serialization format of the object.
sourcepub fn expression_type(self, input: ExpressionType) -> Self
pub fn expression_type(self, input: ExpressionType) -> Self
The type of the provided expression (for example, SQL).
sourcepub fn set_expression_type(self, input: Option<ExpressionType>) -> Self
pub fn set_expression_type(self, input: Option<ExpressionType>) -> Self
The type of the provided expression (for example, SQL).
sourcepub fn expression(self, input: impl Into<String>) -> Self
pub fn expression(self, input: impl Into<String>) -> Self
The expression that is used to query the object.
sourcepub fn set_expression(self, input: Option<String>) -> Self
pub fn set_expression(self, input: Option<String>) -> Self
The expression that is used to query the object.
sourcepub fn output_serialization(self, input: OutputSerialization) -> Self
pub fn output_serialization(self, input: OutputSerialization) -> Self
Describes how the results of the Select job are serialized.
sourcepub fn set_output_serialization(self, input: Option<OutputSerialization>) -> Self
pub fn set_output_serialization(self, input: Option<OutputSerialization>) -> Self
Describes how the results of the Select job are serialized.
sourcepub fn build(self) -> SelectParameters
pub fn build(self) -> SelectParameters
Consumes the builder and constructs a SelectParameters
.