Module Values_0.SnapshotJobS3ResultSource

The Amazon S3 result from the snapshot job. The result includes the DestinationConfiguration and the Amazon S3 Uri. If an error occured during the job, the result returns information on the error.

Sourcetype nonrec t = {
  1. s3DestinationConfiguration : SnapshotS3DestinationConfiguration.t option;
    (*

    A list of Amazon S3 bucket configurations that are provided when you make a StartDashboardSnapshotJob API call.

    *)
  2. s3Uri : SensitiveS3Uri.t option;
    (*

    The Amazon S3 Uri.

    *)
  3. errorInfo : SnapshotJobResultErrorInfoList.t option;
    (*

    An array of error records that describe any failures that occur while the dashboard snapshot job runs.

    *)
}
Sourceval make : ?s3DestinationConfiguration:??? -> ?s3Uri:??? -> ?errorInfo:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of SensitiveS3Uri.t | `Structure of (string * [> `Structure of (string * [> `String of NonEmptyString.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