Module Values.AlarmRecommendationSource

Defines a recommendation for a CloudWatch alarm.

Sourcetype nonrec t = {
  1. appComponentName : EntityId.t option;
    (*

    Application Component name for the CloudWatch alarm recommendation. This name is saved as the first item in the appComponentNames list.

    *)
  2. appComponentNames : AppComponentNameList.t option;
    (*

    List of Application Component names for the CloudWatch alarm recommendation.

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

    Description of the alarm recommendation.

    *)
  4. items : RecommendationItemList.t option;
    (*

    List of CloudWatch alarm recommendations.

    *)
  5. name : String500.t option;
    (*

    Name of the alarm recommendation.

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

    The prerequisite for the alarm recommendation.

    *)
  7. recommendationId : Uuid.t option;
    (*

    Identifier of the alarm recommendation.

    *)
  8. recommendationStatus : RecommendationStatus.t option;
    (*

    Status of the recommended Amazon CloudWatch alarm.

    *)
  9. referenceId : SpecReferenceId.t option;
    (*

    Reference identifier of the alarm recommendation.

    *)
  10. type_ : AlarmType.t option;
    (*

    Type of alarm recommendation.

    *)
}
Sourceval make : ?appComponentName:??? -> ?appComponentNames:??? -> ?description:??? -> ?items:??? -> ?name:??? -> ?prerequisite:??? -> ?recommendationId:??? -> ?recommendationStatus:??? -> ?referenceId:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String255.t | `Structure of (string * [> `Boolean of BooleanOptional.t | `Enum of string | `String of String500.t | `Structure of (string * [> `String of Arn.t ]) list ]) list ] list | `String of EntityId.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