Module Values.RecommendationRelatedEventSource

Information about an event that is related to a recommendation.

Sourcetype nonrec t = {
  1. name : RecommendationRelatedEventName.t option;
    (*

    The name of the event. This corresponds to the Name field in an Event object.

    *)
  2. resources : RecommendationRelatedEventResources.t option;
    (*

    A ResourceCollection object that contains arrays of the names of Amazon Web Services CloudFormation stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks.

    *)
}
Sourceval make : ?name:??? -> ?resources:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of RecommendationRelatedEventResourceName.t ]) list ] list | `String of RecommendationRelatedEventName.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