Module Values.DefaultExportDestinationSource

The default s3 bucket where Audit Manager saves the files that you export from evidence finder.

Sourcetype nonrec t = {
  1. destinationType : ExportDestinationType.t option;
    (*

    The destination type, such as Amazon S3.

    *)
  2. destination : S3Url.t option;
    (*

    The destination bucket where Audit Manager stores exported files.

    *)
}
Sourceval make : ?destinationType:??? -> ?destination:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of S3Url.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