Class SelectObjectContentRequest
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.
public class SelectObjectContentRequest : AmazonWebServiceRequest
- Inheritance
-
SelectObjectContentRequest
Constructors
SelectObjectContentRequest()
public SelectObjectContentRequest()
Properties
Bucket
The S3 Bucket.
public string Bucket { get; set; }
Property Value
ExpectedBucketOwner
The account id of the expected bucket owner. If the bucket is owned by a different account, the request will fail with an HTTP 403 (Access Denied) error.
public string ExpectedBucketOwner { get; set; }
Property Value
Expression
The expression that is used to query the object.
public string Expression { get; set; }
Property Value
ExpressionType
The type of the provided expression (e.g., SQL).
public ExpressionType ExpressionType { get; set; }
Property Value
InputSerialization
Describes the format of the data in the object that is being queried.
public InputSerialization InputSerialization { get; set; }
Property Value
Key
The Object Key.
public string Key { get; set; }
Property Value
OutputSerialization
Describes the format of the data that you want Amazon S3 to return in response.
public OutputSerialization OutputSerialization { get; set; }
Property Value
RequestProgress
Specifies if periodic request progress information should be enabled.
public bool? RequestProgress { get; set; }
Property Value
- bool?
ScanRange
The byte range of the object to get the records from.
public ScanRange ScanRange { get; set; }
Property Value
ServerSideCustomerEncryptionMethod
The SSE Algorithm used to encrypt the object.
public ServerSideEncryptionCustomerMethod ServerSideCustomerEncryptionMethod { get; set; }
Property Value
- See Also
ServerSideEncryptionCustomerProvidedKey
The SSE Customer Key.
public string ServerSideEncryptionCustomerProvidedKey { get; set; }
Property Value
- See Also
ServerSideEncryptionCustomerProvidedKeyMD5
The SSE Customer Key MD5.
public string ServerSideEncryptionCustomerProvidedKeyMD5 { get; set; }
Property Value
- See Also