AWSComprehendEndpointFilter
Objective-C
@interface AWSComprehendEndpointFilter
Swift
class AWSComprehendEndpointFilter
The filter used to determine which endpoints are returned. You can filter jobs on their name, model, status, or the date and time that they were created. You can only set one filter at a time.
-
Specifies a date after which the returned endpoint or endpoints were created.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable creationTimeAfter;
Swift
var creationTimeAfter: Date? { get set }
-
Specifies a date before which the returned endpoint or endpoints were created.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable creationTimeBefore;
Swift
var creationTimeBefore: Date? { get set }
-
The Amazon Resource Number (ARN) of the model to which the endpoint is attached.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable modelArn;
Swift
var modelArn: String? { get set }
-
Specifies the status of the endpoint being returned. Possible values are: Creating, Ready, Updating, Deleting, Failed.
Declaration
Objective-C
@property (nonatomic) AWSComprehendEndpointStatus status;
Swift
var status: AWSComprehendEndpointStatus { get set }