AWSIoTSearchIndexRequest
Objective-C
@interface AWSIoTSearchIndexRequest
Swift
class AWSIoTSearchIndexRequest
-
The search index name.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable indexName;
Swift
var indexName: String? { get set }
-
The maximum number of results to return per page at one time. This maximum number cannot exceed 100. The response might contain fewer results but will never contain more. You can use
nextToken
to retrieve the next set of results untilnextToken
returnsNULL
.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable maxResults;
Swift
var maxResults: NSNumber? { get set }
-
The token used to get the next set of results, or
null
if there are no additional results.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable nextToken;
Swift
var nextToken: String? { get set }
-
The search query string. For more information about the search query syntax, see Query syntax.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable queryString;
Swift
var queryString: String? { get set }
-
The query version.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable queryVersion;
Swift
var queryVersion: String? { get set }