Module Values.RecommendationSource

A recommendation generated for your account.

Sourcetype nonrec t = {
  1. resourceArn : AmazonResourceName.t option;
    (*

    The resource affected by the recommendation, with values like arn:aws:ses:us-east-1:123456789012:identity/example.com.

    *)
  2. type_ : RecommendationType.t option;
    (*

    The recommendation type, with values like DKIM, SPF, DMARC, BIMI, or COMPLAINT.

    *)
  3. description : RecommendationDescription.t option;
    (*

    The recommendation description / disambiguator - e.g. DKIM1 and DKIM2 are different recommendations about your DKIM setup.

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

    The recommendation status, with values like OPEN or FIXED.

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

    The first time this issue was encountered and the recommendation was generated.

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

    The last time the recommendation was updated.

    *)
  7. impact : RecommendationImpact.t option;
    (*

    The recommendation impact, with values like HIGH or LOW.

    *)
}
Sourceval make : ?resourceArn:??? -> ?type_:??? -> ?description:??? -> ?status:??? -> ?createdTimestamp:??? -> ?lastUpdatedTimestamp:??? -> ?impact:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AmazonResourceName.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