Module Values.AccessPreviewSummarySource

Contains a summary of information about an access preview.

Sourcetype nonrec t = {
  1. id : AccessPreviewId.t option;
    (*

    The unique ID for the access preview.

    *)
  2. analyzerArn : AnalyzerArn.t option;
    (*

    The ARN of the analyzer used to generate the access preview.

    *)
  3. createdAt : Timestamp.t option;
    (*

    The time at which the access preview was created.

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

    The status of the access preview. Creating - The access preview creation is in progress. Completed - The access preview is complete and previews the findings for external access to the resource. Failed - The access preview creation has failed.

    *)
  5. statusReason : AccessPreviewStatusReason.t option;
}
Sourceval make : ?id:??? -> ?analyzerArn:??? -> ?createdAt:??? -> ?status:??? -> ?statusReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AccessPreviewId.t | `Structure of (string * [> `Enum of string ]) list | `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