CreateBatchPredictionInput

public struct CreateBatchPredictionInput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The ID of the DataSource that points to the group of observations to predict.

    Declaration

    Swift

    public let batchPredictionDataSourceId: String
  • A user-supplied ID that uniquely identifies the BatchPrediction.

    Declaration

    Swift

    public let batchPredictionId: String
  • A user-supplied name or description of the BatchPrediction. BatchPredictionName can only use the UTF-8 character set.

    Declaration

    Swift

    public let batchPredictionName: String?
  • The ID of the MLModel that will generate predictions for the group of observations.

    Declaration

    Swift

    public let mLModelId: String
  • The location of an Amazon Simple Storage Service (Amazon S3) bucket or directory to store the batch prediction results. The following substrings are not allowed in the s3 key portion of the outputURI field: ‘:’, ‘//’, ‘/./’, ‘/../’. Amazon ML needs permissions to store and retrieve the logs on your behalf. For information about how to set permissions, see the Amazon Machine Learning Developer Guide.

    Declaration

    Swift

    public let outputUri: String
  • Undocumented

    Declaration

    Swift

    public init(batchPredictionDataSourceId: String, batchPredictionId: String, batchPredictionName: String? = nil, mLModelId: String, outputUri: String)
  • Declaration

    Swift

    public func validate(name: String) throws