Module Values.AssessmentReportsDestinationSource

The location where Audit Manager saves assessment reports for the given assessment.

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

    The destination type, such as Amazon S3.

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

    The destination bucket where Audit Manager stores assessment reports.

    *)
}
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