SelectObjectContentRequest
public struct SelectObjectContentRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The S3 bucket.
Declaration
Swift
public let bucket: String
-
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.
Declaration
Swift
public let expectedBucketOwner: String?
-
The expression that is used to query the object.
Declaration
Swift
public let expression: String
-
The type of the provided expression (for example, SQL).
Declaration
Swift
public let expressionType: ExpressionType
-
Describes the format of the data in the object that is being queried.
Declaration
Swift
public let inputSerialization: InputSerialization
-
The object key.
Declaration
Swift
public let key: String
-
Describes the format of the data that you want Amazon S3 to return in response.
Declaration
Swift
public let outputSerialization: OutputSerialization
-
Specifies if periodic request progress information should be enabled.
Declaration
Swift
public let requestProgress: RequestProgress?
-
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. ScanRangemay be used in the following ways: <scanrange><start>50</start><end>100</end></scanrange> - process only the records starting between the bytes 50 and 100 (inclusive, counting from zero) <scanrange><start>50</start></scanrange> - process only the records starting after the byte 50 <scanrange><end>50</end></scanrange> - process only the records within the last 50 bytes of the file.
Declaration
Swift
public let scanRange: ScanRange?
-
The SSE Algorithm used to encrypt the object. For more information, see Server-Side Encryption (Using Customer-Provided Encryption Keys.
Declaration
Swift
public let sSECustomerAlgorithm: String?
-
The SSE Customer Key. For more information, see Server-Side Encryption (Using Customer-Provided Encryption Keys.
Declaration
Swift
public let sSECustomerKey: String?
-
The SSE Customer Key MD5. For more information, see Server-Side Encryption (Using Customer-Provided Encryption Keys.
Declaration
Swift
public let sSECustomerKeyMD5: String?
-
init(bucket:expectedBucketOwner:expression:expressionType:inputSerialization:key:outputSerialization:requestProgress:scanRange:sSECustomerAlgorithm:sSECustomerKey:sSECustomerKeyMD5:)
Undocumented
Declaration
Swift
public init(bucket: String, expectedBucketOwner: String? = nil, expression: String, expressionType: ExpressionType, inputSerialization: InputSerialization, key: String, outputSerialization: OutputSerialization, requestProgress: RequestProgress? = nil, scanRange: ScanRange? = nil, sSECustomerAlgorithm: String? = nil, sSECustomerKey: String? = nil, sSECustomerKeyMD5: String? = nil)
-
Declaration
Swift
public func validate(name: String) throws