Module Values.RecommendationItemSource

Defines a recommendation.

Sourcetype nonrec t = {
  1. alreadyImplemented : BooleanOptional.t option;
    (*

    Specifies if the recommendation has already been implemented.

    *)
  2. discoveredAlarm : Alarm.t option;
    (*

    Indicates the previously implemented Amazon CloudWatch alarm discovered by Resilience Hub.

    *)
  3. excludeReason : ExcludeRecommendationReason.t option;
    (*

    Indicates the reason for excluding an operational recommendation.

    *)
  4. excluded : BooleanOptional.t option;
    (*

    Indicates if an operational recommendation item is excluded.

    *)
  5. latestDiscoveredExperiment : Experiment.t option;
    (*

    Indicates the experiment created in FIS that was discovered by Resilience Hub, which matches the recommendation.

    *)
  6. resourceId : String500.t option;
    (*

    Identifier of the resource.

    *)
  7. targetAccountId : CustomerId.t option;
    (*

    Identifier of the target account.

    *)
  8. targetRegion : AwsRegion.t option;
    (*

    The target region.

    *)
}
Sourceval make : ?alreadyImplemented:??? -> ?discoveredAlarm:??? -> ?excludeReason:??? -> ?excluded:??? -> ?latestDiscoveredExperiment:??? -> ?resourceId:??? -> ?targetAccountId:??? -> ?targetRegion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `Enum of string | `String of String500.t | `Structure of (string * [> `String of Arn.t ]) list ]) 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