AWSIoTSearchIndexResponse

Objective-C

@interface AWSIoTSearchIndexResponse

Swift

class AWSIoTSearchIndexResponse
  • 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 thing groups that match the search query.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSIoTThingGroupDocument *> *_Nullable thingGroups;

    Swift

    var thingGroups: [AWSIoTThingGroupDocument]? { get set }
  • The things that match the search query.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSIoTThingDocument *> *_Nullable things;

    Swift

    var things: [AWSIoTThingDocument]? { get set }