Module Values.CreatePortalResponseSource

Creates a portal.

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

    The authorization for the portal. Supports Cognito-based user authentication or no authentication.

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

    The endpoint configuration.

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

    The ARNs of the portal products included in the portal.

    *)
  4. lastModified : string option;
    (*

    The timestamp when the portal configuration was last modified.

    *)
  5. lastPublished : string option;
    (*

    The timestamp when the portal was last published.

    *)
  6. lastPublishedDescription : string option;
    (*

    A user-written description of the changes made in the last published version of the portal.

    *)
  7. portalArn : string option;
    (*

    The ARN of the portal.

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

    The name, description, and theme for the portal.

    *)
  9. portalId : string option;
    (*

    The portal identifier.

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

    The current publishing status of the portal.

    *)
  11. rumAppMonitorName : string option;
    (*

    The name of the Amazon CloudWatch RUM app monitor.

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

    Error information for failed portal operations. Contains details about any issues encountered during portal creation or publishing.

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

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

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `BadRequestException of BadRequestException.t
  3. | `TooManyRequestsException of TooManyRequestsException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?authorization:??? -> ?endpointConfiguration:??? -> ?includedPortalProductArns:??? -> ?lastModified:??? -> ?lastPublished:??? -> ?lastPublishedDescription:??? -> ?portalArn:??? -> ?portalContent:??? -> ?portalId:??? -> ?publishStatus:??? -> ?rumAppMonitorName:??? -> ?statusException:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `BadRequestException of BadRequestException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `BadRequestException of BadRequestException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.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 * [> `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