import { _RequestProgress } from "./_RequestProgress"; import { _InputSerialization } from "./_InputSerialization"; import { _OutputSerialization } from "./_OutputSerialization"; import { NodeHttpOptions as __HttpOptions__ } from "@aws-sdk/types"; import * as __aws_sdk_types from "@aws-sdk/types"; /** *
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 also specify a data serialization format (JSON or CSV) of the object. Amazon S3 uses this to parse object data into records, and returns only records that match the specified SQL expression. You must also specify the data serialization format for the response. For more information, go to S3Select API Documentation.
*/ export interface SelectObjectContentInput { /** *The S3 Bucket.
*/ Bucket: string; /** *The Object Key.
*/ Key: string; /** *The SSE Algorithm used to encrypt the object. For more information, go to Server-Side Encryption (Using Customer-Provided Encryption Keys.
*/ SSECustomerAlgorithm?: string; /** *The expression that is used to query the object.
*/ Expression: string; /** *The type of the provided expression (e.g., SQL).
*/ ExpressionType: "SQL" | string; /** *Specifies if periodic request progress information should be enabled.
*/ RequestProgress?: _RequestProgress; /** *Describes the format of the data in the object that is being queried.
*/ InputSerialization: _InputSerialization; /** *Describes the format of the data that you want Amazon S3 to return in response.
*/ OutputSerialization: _OutputSerialization; /** * Whether to use the bucket name as the endpoint for this request. The bucket * name must be a domain name with a CNAME record alias to an appropriate virtual * hosted-style S3 hostname, e.g. a bucket of `images.johnsmith.net` and a DNS * record of: * * ``` * images.johnsmith.net CNAME images.johnsmith.net.s3.amazonaws.com. * ``` * * @see https://docs.aws.amazon.com/AmazonS3/latest/dev/VirtualHosting.html#VirtualHostingCustomURLs */ $bucketEndpoint?: string; /** * Whether to force path style URLs for S3 objects (e.g., https://s3.amazonaws.com/