AWSTextractListAdaptersRequest

Objective-C

@interface AWSTextractListAdaptersRequest

Swift

class AWSTextractListAdaptersRequest
  • Specifies the lower bound for the ListAdapters operation. Ensures ListAdapters returns only adapters created after the specified creation time.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable afterCreationTime;

    Swift

    var afterCreationTime: Date? { get set }
  • Specifies the upper bound for the ListAdapters operation. Ensures ListAdapters returns only adapters created before the specified creation time.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable beforeCreationTime;

    Swift

    var beforeCreationTime: Date? { get set }
  • The maximum number of results to return when listing adapters.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable maxResults;

    Swift

    var maxResults: NSNumber? { get set }
  • Identifies the next page of results to return when listing adapters.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable nextToken;

    Swift

    var nextToken: String? { get set }