AWSTextractAdapterOverview

Objective-C

@interface AWSTextractAdapterOverview

Swift

class AWSTextractAdapterOverview

Contains information on the adapter, including the adapter ID, Name, Creation time, and feature types.

  • A unique identifier for the adapter resource.

    Declaration

    Objective-C

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

    Swift

    var adapterId: String? { get set }
  • A string naming the adapter resource.

    Declaration

    Objective-C

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

    Swift

    var adapterName: String? { get set }
  • The date and time that the adapter was created.

    Declaration

    Objective-C

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

    Swift

    var creationTime: Date? { get set }
  • The feature types that the adapter is operating on.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable featureTypes;

    Swift

    var featureTypes: [String]? { get set }