Module Values.FlywheelSummarySource

Flywheel summary information.

Sourcetype nonrec t = {
  1. flywheelArn : ComprehendFlywheelArn.t option;
    (*

    The Amazon Resource Number (ARN) of the flywheel

    *)
  2. activeModelArn : ComprehendModelArn.t option;
    (*

    ARN of the active model version for the flywheel.

    *)
  3. dataLakeS3Uri : S3Uri.t option;
    (*

    Amazon S3 URI of the data lake location.

    *)
  4. status : FlywheelStatus.t option;
    (*

    The status of the flywheel.

    *)
  5. modelType : ModelType.t option;
    (*

    Model type of the flywheel's model.

    *)
  6. message : AnyLengthString.t option;
    (*

    A description of the status of the flywheel.

    *)
  7. creationTime : Timestamp.t option;
    (*

    Creation time of the flywheel.

    *)
  8. lastModifiedTime : Timestamp.t option;
    (*

    Last modified time for the flywheel.

    *)
  9. latestFlywheelIteration : FlywheelIterationId.t option;
    (*

    The most recent flywheel iteration.

    *)
}
Sourceval make : ?flywheelArn:??? -> ?activeModelArn:??? -> ?dataLakeS3Uri:??? -> ?status:??? -> ?modelType:??? -> ?message:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> ?latestFlywheelIteration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ComprehendFlywheelArn.t | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t