AWSS3SelectParameters
Objective-C
@interface AWSS3SelectParameters
Swift
class AWSS3SelectParameters
Describes the parameters for Select job types.
Required parameters: [InputSerialization, ExpressionType, Expression, OutputSerialization]
-
The expression that is used to query the object.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable expression;
Swift
var expression: String? { get set }
-
The type of the provided expression (for example, SQL).
Declaration
Objective-C
@property (nonatomic) AWSS3ExpressionType expressionType;
Swift
var expressionType: AWSS3ExpressionType { get set }
-
Describes the serialization format of the object.
Declaration
Objective-C
@property (nonatomic, strong) AWSS3InputSerialization *_Nullable inputSerialization;
Swift
var inputSerialization: AWSS3InputSerialization? { get set }
-
Describes how the results of the Select job are serialized.
Declaration
Objective-C
@property (nonatomic, strong) AWSS3OutputSerialization *_Nullable outputSerialization;
Swift
var outputSerialization: AWSS3OutputSerialization? { get set }