Module Values.BenefitApplicationSummarySource

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

Sourcetype nonrec t = {
  1. catalog : CatalogName.t option;
    (*

    The catalog identifier that the benefit application belongs to.

    *)
  2. name : BenefitApplicationName.t option;
    (*

    The human-readable name of the benefit application.

    *)
  3. id : BenefitApplicationId.t option;
    (*

    The unique identifier of the benefit application.

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

    The Amazon Resource Name (ARN) of the benefit application.

    *)
  5. benefitId : BenefitId.t option;
    (*

    The identifier of the benefit being requested in this application.

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

    The AWS partner programs associated with this benefit application.

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

    The fulfillment types requested for this benefit application.

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

    The current processing status of the benefit application.

    *)
  9. stage : BenefitApplicationStage.t option;
    (*

    The current stage in the benefit application processing workflow..

    *)
  10. createdAt : Timestamp.t option;
    (*

    The timestamp when the benefit application was created.

    *)
  11. updatedAt : Timestamp.t option;
    (*

    The timestamp when the benefit application was last updated.

    *)
  12. benefitApplicationDetails : Attributes.t option;
    (*

    Additional attributes and metadata associated with the benefit application.

    *)
  13. associatedResources : Arns.t option;
    (*

    AWS resources that are associated with this benefit application.

    *)
}
Sourceval make : ?catalog:??? -> ?name:??? -> ?id:??? -> ?arn:??? -> ?benefitId:??? -> ?programs:??? -> ?fulfillmentTypes:??? -> ?status:??? -> ?stage:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?benefitApplicationDetails:??? -> ?associatedResources:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `String of Program.t ] list | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of CatalogName.t | `Timestamp of Timestamp.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