AWSTextractCreateAdapterRequest

Objective-C

@interface AWSTextractCreateAdapterRequest

Swift

class AWSTextractCreateAdapterRequest
  • The name to be assigned to the adapter being created.

    Declaration

    Objective-C

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

    Swift

    var adapterName: String? { get set }
  • Controls whether or not the adapter should automatically update.

    Declaration

    Objective-C

    @property (nonatomic) AWSTextractAutoUpdate autoUpdate;

    Swift

    var autoUpdate: AWSTextractAutoUpdate { get set }
  • Idempotent token is used to recognize the request. If the same token is used with multiple CreateAdapter requests, the same session is returned. This token is employed to avoid unintentionally creating the same session multiple times.

    Declaration

    Objective-C

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

    Swift

    var clientRequestToken: String? { get set }
  • The description to be assigned to the adapter being created.

    Declaration

    Objective-C

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

    Swift

    var detail: String? { get set }
  • The type of feature that the adapter is being trained on. Currrenly, supported feature types are: QUERIES

    Declaration

    Objective-C

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

    Swift

    var featureTypes: [String]? { get set }
  • A list of tags to be added to the adapter.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable tags;

    Swift

    var tags: [String : String]? { get set }