Module Values.BenefitSummarySource

A summary view of a benefit containing key information for list operations.

Sourcetype nonrec t = {
  1. id : BenefitSummaryIdString.t option;
    (*

    The unique identifier of the benefit.

    *)
  2. catalog : CatalogName.t option;
    (*

    The catalog identifier that the benefit belongs to.

    *)
  3. arn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the benefit.

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

    The human-readable name of the benefit.

    *)
  5. description : BenefitSummaryDescriptionString.t option;
    (*

    A brief description of the benefit and its purpose.

    *)
  6. programs : Programs.t option;
    (*

    The AWS partner programs that this benefit is associated with.

    *)
  7. fulfillmentTypes : FulfillmentTypes.t option;
    (*

    The available fulfillment types for this benefit.

    *)
  8. status : BenefitStatus.t option;
    (*

    The current status of the benefit.

    *)
}
Sourceval make : ?id:??? -> ?catalog:??? -> ?arn:??? -> ?name:??? -> ?description:??? -> ?programs:??? -> ?fulfillmentTypes:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `String of Program.t ] list | `String of BenefitSummaryIdString.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