AWSMachineLearningDescribeMLModelsOutput

Objective-C

@interface AWSMachineLearningDescribeMLModelsOutput

Swift

class AWSMachineLearningDescribeMLModelsOutput

Represents the output of a DescribeMLModels operation. The content is essentially a list of MLModel.

  • The ID of the next page in the paginated results that indicates at least one more page follows.

    Declaration

    Objective-C

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

    Swift

    var nextToken: String? { get set }
  • A list of MLModel that meet the search criteria.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSMachineLearningMLModel *> *_Nullable results;

    Swift

    var results: [AWSMachineLearningMLModel]? { get set }