Module Values.GetApplicationResponseSource

Get an Application resource.

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

    The Amazon Resource Name (ARN) of the Application.

    *)
  2. id : UUID.t option;
    (*

    A unique identifier for the Application.

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

    The name of the application.

    *)
  4. namespace : ApplicationNamespace.t option;
    (*

    The namespace of the application.

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

    The description of the application.

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

    The configuration for where the application should be loaded from.

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

    The events that the application subscribes.

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

    The events that the application publishes.

    *)
  9. createdTime : Timestamp.t option;
    (*

    The created time of the Application.

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

    The last modified time of the Application.

    *)
  11. tags : TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.

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

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

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

    Indicates whether the application is a service.

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

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

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

    The configuration settings for the application.

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

    The iframe configuration for the application.

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

    The type of application.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServiceError of InternalServiceError.t
  3. | `InvalidRequestException of InvalidRequestException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?id:??? -> ?name:??? -> ?namespace:??? -> ?description:??? -> ?applicationSourceConfig:??? -> ?subscriptions:??? -> ?publications:??? -> ?createdTime:??? -> ?lastModifiedTime:??? -> ?tags:??? -> ?permissions:??? -> ?isService:??? -> ?initializationTimeout:??? -> ?applicationConfig:??? -> ?iframeConfig:??? -> ?applicationType:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServiceError of InternalServiceError.t | `InvalidRequestException of InvalidRequestException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServiceError of InternalServiceError.t | `InvalidRequestException of InvalidRequestException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.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 | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Arn.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 | `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