Module Values.UpdateApplicationRequestSource

Updates and persists an Application resource.

Sourcetype nonrec t = {
  1. arn : ArnOrUUID.t;
    (*

    The Amazon Resource Name (ARN) of the Application.

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

    The name of the application.

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

    The description of the application.

    *)
  4. applicationSourceConfig : ApplicationSourceConfig.t option;
    (*

    The configuration for where the application should be loaded from.

    *)
  5. subscriptions : SubscriptionList.t option;
    (*

    The events that the application subscribes.

    *)
  6. publications : PublicationList.t option;
    (*

    The events that the application publishes.

    *)
  7. permissions : PermissionList.t option;
    (*

    The configuration of events or requests that the application has access to.

    *)
  8. isService : Boolean.t option;
    (*

    Indicates whether the application is a service.

    *)
  9. initializationTimeout : InitializationTimeout.t option;
    (*

    The maximum time in milliseconds allowed to establish a connection with the workspace.

    *)
  10. applicationConfig : ApplicationConfig.t option;
    (*

    The configuration settings for the application.

    *)
  11. iframeConfig : IframeConfig.t option;
    (*

    The iframe configuration for the application.

    *)
  12. applicationType : ApplicationType.t option;
    (*

    The type of application.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?applicationSourceConfig:??? -> ?subscriptions:??? -> ?publications:??? -> ?permissions:??? -> ?isService:??? -> ?initializationTimeout:??? -> ?applicationConfig:??? -> ?iframeConfig:??? -> ?applicationType:??? -> arn:ArnOrUUID.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of InitializationTimeout.t | `List of [> `String of Permission.t | `Structure of (string * [> `String of EventName.t ]) list ] list | `String of ArnOrUUID.t | `Structure of (string * [> `List of [> `String of IframePermission.t ] list | `Structure of (string * [> `Enum of string | `List of [> `String of ApplicationTrustedSource.t ] list | `String of URL.t ]) list ]) list ]) 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