Module Values.ImportTaskSource

Import task.

Sourcetype nonrec t = {
  1. importID : ImportID.t option;
    (*

    Import task id.

    *)
  2. arn : ARN.t option;
    (*

    ImportTask arn.

    *)
  3. s3BucketSource : S3BucketSource.t option;
    (*

    Import task s3 bucket source.

    *)
  4. creationDateTime : ISO8601DatetimeString.t option;
    (*

    Import task creation datetime.

    *)
  5. endDateTime : ISO8601DatetimeString.t option;
    (*

    Import task end datetime.

    *)
  6. status : ImportStatus.t option;
    (*

    Import task status.

    *)
  7. progressPercentage : Float_.t option;
    (*

    Import task progress percentage.

    *)
  8. summary : ImportTaskSummary.t option;
    (*

    Import task summary.

    *)
  9. tags : TagsMap.t option;
    (*

    Import task tags.

    *)
}
Sourceval make : ?importID:??? -> ?arn:??? -> ?s3BucketSource:??? -> ?creationDateTime:??? -> ?endDateTime:??? -> ?status:??? -> ?progressPercentage:??? -> ?summary:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Float of Float_.t | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ImportID.t | `Structure of (string * [> `String of S3BucketName.t | `Structure of (string * [> `Long of PositiveInteger.t ]) list ]) list ]) 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