Module Values_0.AnalysisSummarySource

The summary metadata that describes an analysis.

Sourcetype nonrec t = {
  1. arn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) for the analysis.

    *)
  2. analysisId : ShortRestrictiveResourceId.t option;
    (*

    The ID of the analysis. This ID displays in the URL.

    *)
  3. name : AnalysisName.t option;
    (*

    The name of the analysis. This name is displayed in the Quick Sight console.

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

    The last known status for the analysis.

    *)
  5. createdTime : Timestamp.t option;
    (*

    The time that the analysis was created.

    *)
  6. lastUpdatedTime : Timestamp.t option;
    (*

    The time that the analysis was last updated.

    *)
}
Sourceval make : ?arn:??? -> ?analysisId:??? -> ?name:??? -> ?status:??? -> ?createdTime:??? -> ?lastUpdatedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Arn.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