Module Values.SopRecommendationSource

Defines a standard operating procedure (SOP) recommendation.

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

    Name of the Application Component.

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

    Description of the SOP recommendation.

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

    The recommendation items.

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

    Name of the SOP recommendation.

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

    Prerequisite for the SOP recommendation.

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

    Identifier for the SOP recommendation.

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

    Status of the recommended standard operating procedure.

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

    Reference identifier for the SOP recommendation.

    *)
  9. serviceType : SopServiceType.t option;
    (*

    The service type.

    *)
}
Sourceval make : ?appComponentName:??? -> ?description:??? -> ?items:??? -> ?name:??? -> ?prerequisite:??? -> ?recommendationId:??? -> ?recommendationStatus:??? -> ?referenceId:??? -> ?serviceType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `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