Module Values.ImportSummarySource

Summary information about the source file for the import.

Sourcetype nonrec t = {
  1. importArn : ImportArn.t option;
    (*

    The Amazon Resource Number (ARN) corresponding to the import request.

    *)
  2. importStatus : ImportStatus.t option;
    (*

    The status of the import operation.

    *)
  3. tableArn : TableArn.t option;
    (*

    The Amazon Resource Number (ARN) of the table being imported into.

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

    The path and S3 bucket of the source file that is being imported. This includes the S3Bucket (required), S3KeyPrefix (optional) and S3BucketOwner (optional if the bucket is owned by the requester).

    *)
  5. cloudWatchLogGroupArn : CloudWatchLogGroupArn.t option;
    (*

    The Amazon Resource Number (ARN) of the Cloudwatch Log Group associated with this import task.

    *)
  6. inputFormat : InputFormat.t option;
    (*

    The format of the source data. Valid values are CSV, DYNAMODB_JSON or ION.

    *)
  7. startTime : ImportStartTime.t option;
    (*

    The time at which this import task began.

    *)
  8. endTime : ImportEndTime.t option;
    (*

    The time at which this import task ended. (Does this include the successful complete creation of the table it was imported to?)

    *)
}
Sourceval make : ?importArn:??? -> ?importStatus:??? -> ?tableArn:??? -> ?s3BucketSource:??? -> ?cloudWatchLogGroupArn:??? -> ?inputFormat:??? -> ?startTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ImportArn.t | `Structure of (string * [> `String of S3BucketOwner.t ]) list | `Timestamp of ImportStartTime.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