Struct aws_sdk_s3::model::output_serialization::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for OutputSerialization
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn csv(self, input: CsvOutput) -> Self
pub fn csv(self, input: CsvOutput) -> Self
Describes the serialization of CSV-encoded Select results.
sourcepub fn set_csv(self, input: Option<CsvOutput>) -> Self
pub fn set_csv(self, input: Option<CsvOutput>) -> Self
Describes the serialization of CSV-encoded Select results.
sourcepub fn json(self, input: JsonOutput) -> Self
pub fn json(self, input: JsonOutput) -> Self
Specifies JSON as request's output serialization format.
sourcepub fn set_json(self, input: Option<JsonOutput>) -> Self
pub fn set_json(self, input: Option<JsonOutput>) -> Self
Specifies JSON as request's output serialization format.
sourcepub fn build(self) -> OutputSerialization
pub fn build(self) -> OutputSerialization
Consumes the builder and constructs a OutputSerialization
.