Module Values.ReportDetailSource

Full detail for report resource metadata.

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

    Unique resource ID for the report resource.

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

    Name for the report resource.

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

    Description for the report resource.

    *)
  4. periodStart : TimestampAttribute.t option;
    (*

    Timestamp indicating the report resource effective start.

    *)
  5. periodEnd : TimestampAttribute.t option;
    (*

    Timestamp indicating the report resource effective end.

    *)
  6. createdAt : TimestampAttribute.t option;
    (*

    Timestamp indicating when the report resource was created.

    *)
  7. lastModifiedAt : TimestampAttribute.t option;
    (*

    Timestamp indicating when the report resource was last modified.

    *)
  8. deletedAt : TimestampAttribute.t option;
    (*

    Timestamp indicating when the report resource was deleted.

    *)
  9. state : PublishedState.t option;
    (*

    Current state of the report resource

    *)
  10. arn : LongStringAttribute.t option;
    (*

    ARN for the report resource.

    *)
  11. series : ShortStringAttribute.t option;
    (*

    Series for the report resource.

    *)
  12. category : ShortStringAttribute.t option;
    (*

    Category for the report resource.

    *)
  13. companyName : ShortStringAttribute.t option;
    (*

    Associated company name for the report resource.

    *)
  14. productName : ShortStringAttribute.t option;
    (*

    Associated product name for the report resource.

    *)
  15. termArn : LongStringAttribute.t option;
    (*

    Unique resource ARN for term resource.

    *)
  16. version : VersionAttribute.t option;
    (*

    Version for the report resource.

    *)
  17. acceptanceType : AcceptanceType.t option;
    (*

    Acceptance type for report.

    *)
  18. sequenceNumber : SequenceNumberAttribute.t option;
    (*

    Sequence number to enforce optimistic locking.

    *)
  19. uploadState : UploadState.t option;
    (*

    The current state of the document upload.

    *)
  20. statusMessage : StatusMessage.t option;
    (*

    The message associated with the current upload state.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?description:??? -> ?periodStart:??? -> ?periodEnd:??? -> ?createdAt:??? -> ?lastModifiedAt:??? -> ?deletedAt:??? -> ?state:??? -> ?arn:??? -> ?series:??? -> ?category:??? -> ?companyName:??? -> ?productName:??? -> ?termArn:??? -> ?version:??? -> ?acceptanceType:??? -> ?sequenceNumber:??? -> ?uploadState:??? -> ?statusMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of VersionAttribute.t | `String of ReportId.t | `Timestamp of TimestampAttribute.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