Module Values.TestRecommendationSource

Defines a test recommendation.

Sourcetype nonrec t = {
  1. appComponentId : EntityName255.t option;
    (*

    Indicates the identifier of the AppComponent.

    *)
  2. appComponentName : EntityId.t option;
    (*

    Name of the Application Component.

    *)
  3. dependsOnAlarms : AlarmReferenceIdList.t option;
    (*

    A list of recommended alarms that are used in the test and must be exported before or with the test.

    *)
  4. description : String500.t option;
    (*

    Description for the test recommendation.

    *)
  5. intent : EntityDescription.t option;
    (*

    Intent of the test recommendation.

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

    The test recommendation items.

    *)
  7. name : DocumentName.t option;
    (*

    Name of the test recommendation.

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

    Prerequisite of the test recommendation.

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

    Identifier for the test recommendation.

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

    Status of the recommended test.

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

    Reference identifier for the test recommendation.

    *)
  12. risk : TestRisk.t option;
    (*

    Level of risk for this test recommendation.

    *)
  13. type_ : TestType.t option;
    (*

    Type of test recommendation.

    *)
}
Sourceval make : ?appComponentId:??? -> ?appComponentName:??? -> ?dependsOnAlarms:??? -> ?description:??? -> ?intent:??? -> ?items:??? -> ?name:??? -> ?prerequisite:??? -> ?recommendationId:??? -> ?recommendationStatus:??? -> ?referenceId:??? -> ?risk:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String500.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 EntityName255.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