Module Values.PortalSummarySource

Represents a portal summary.

Sourcetype nonrec t = {
  1. authorization : Authorization.t option;
    (*

    The authorization of the portal.

    *)
  2. endpointConfiguration : EndpointConfigurationResponse.t option;
    (*

    The endpoint configuration of the portal.

    *)
  3. includedPortalProductArns : string list option;
    (*

    The ARNs of the portal products included in the portal.

    *)
  4. lastModified : string option;
    (*

    The timestamp when the portal was last modified.

    *)
  5. lastPublished : string option;
    (*

    The timestamp when the portal was last published.

    *)
  6. lastPublishedDescription : string option;
    (*

    The description of the portal the last time it was published.

    *)
  7. portalArn : string option;
    (*

    The ARN of the portal.

    *)
  8. portalContent : PortalContent.t option;
    (*

    Contains the content that is visible to portal consumers including the themes, display names, and description.

    *)
  9. portalId : string option;
    (*

    The portal identifier.

    *)
  10. preview : Preview.t option;
    (*

    Represents the preview endpoint and the any possible error messages during preview generation.

    *)
  11. publishStatus : PublishStatus.t option;
    (*

    The publish status.

    *)
  12. rumAppMonitorName : string option;
    (*

    The CloudWatch RUM app monitor name.

    *)
  13. statusException : StatusException.t option;
    (*

    The status exception information.

    *)
  14. tags : Tags.t option;
    (*

    The collection of tags. Each tag element is associated with a given resource.

    *)
}
Sourceval make : ?authorization:??? -> ?endpointConfiguration:??? -> ?includedPortalProductArns:??? -> ?lastModified:??? -> ?lastPublished:??? -> ?lastPublishedDescription:??? -> ?portalArn:??? -> ?portalContent:??? -> ?portalId:??? -> ?preview:??? -> ?publishStatus:??? -> ?rumAppMonitorName:??? -> ?statusException:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of string ] list | `Map of ([> `String of string ] * [> `String of StringWithLengthBetween1And1600.t ]) list | `String of string | `Structure of (string * [> `Enum of string | `String of string | `Structure of (string * [> `String of string | `Structure of (string * [> `String of string ]) list | `Timestamp of string ]) list ]) list | `Timestamp of string ]) 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