Struct aws_sdk_s3::input::SelectObjectContentInput
source · [−]#[non_exhaustive]pub struct SelectObjectContentInput { /* private fields */ }
Expand description
Request to filter the contents of an Amazon S3 object based on a simple Structured Query Language (SQL) statement. In the request, along with the SQL expression, you must specify a data serialization format (JSON or CSV) of the object. Amazon S3 uses this to parse object data into records. It returns only records that match the specified SQL expression. You must also specify the data serialization format for the response. For more information, see S3Select API Documentation.
Implementations
sourceimpl SelectObjectContentInput
impl SelectObjectContentInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SelectObjectContent, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SelectObjectContent, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<SelectObjectContent
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SelectObjectContentInput
.
sourceimpl SelectObjectContentInput
impl SelectObjectContentInput
sourcepub fn sse_customer_algorithm(&self) -> Option<&str>
pub fn sse_customer_algorithm(&self) -> Option<&str>
The server-side encryption (SSE) algorithm used to encrypt the object. This parameter is needed only when the object was created using a checksum algorithm. For more information, see Protecting data using SSE-C keys in the Amazon S3 User Guide.
sourcepub fn sse_customer_key(&self) -> Option<&str>
pub fn sse_customer_key(&self) -> Option<&str>
The server-side encryption (SSE) customer managed key. This parameter is needed only when the object was created using a checksum algorithm. For more information, see Protecting data using SSE-C keys in the Amazon S3 User Guide.
sourcepub fn sse_customer_key_md5(&self) -> Option<&str>
pub fn sse_customer_key_md5(&self) -> Option<&str>
The MD5 server-side encryption (SSE) customer managed key. This parameter is needed only when the object was created using a checksum algorithm. For more information, see Protecting data using SSE-C keys in the Amazon S3 User Guide.
sourcepub fn expression(&self) -> Option<&str>
pub fn expression(&self) -> Option<&str>
The expression that is used to query the object.
sourcepub fn expression_type(&self) -> Option<&ExpressionType>
pub fn expression_type(&self) -> Option<&ExpressionType>
The type of the provided expression (for example, SQL).
sourcepub fn request_progress(&self) -> Option<&RequestProgress>
pub fn request_progress(&self) -> Option<&RequestProgress>
Specifies if periodic request progress information should be enabled.
sourcepub fn input_serialization(&self) -> Option<&InputSerialization>
pub fn input_serialization(&self) -> Option<&InputSerialization>
Describes the format of the data in the object that is being queried.
sourcepub fn output_serialization(&self) -> Option<&OutputSerialization>
pub fn output_serialization(&self) -> Option<&OutputSerialization>
Describes the format of the data that you want Amazon S3 to return in response.
sourcepub fn scan_range(&self) -> Option<&ScanRange>
pub fn scan_range(&self) -> Option<&ScanRange>
Specifies the byte range of the object to get the records from. A record is processed when its first byte is contained by the range. This parameter is optional, but when specified, it must not be empty. See RFC 2616, Section 14.35.1 about how to specify the start and end of the range.
ScanRange
may be used in the following ways:
-
50 100 -
50 -
50
sourcepub fn expected_bucket_owner(&self) -> Option<&str>
pub fn expected_bucket_owner(&self) -> Option<&str>
The account ID of the expected bucket owner. If the bucket is owned by a different account, the request fails with the HTTP status code 403 Forbidden
(access denied).
Trait Implementations
sourceimpl Clone for SelectObjectContentInput
impl Clone for SelectObjectContentInput
sourcefn clone(&self) -> SelectObjectContentInput
fn clone(&self) -> SelectObjectContentInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more