Module Values.ApplicationSource

Summary information for an Amazon Q Business application.

Sourcetype nonrec t = {
  1. displayName : ApplicationName.t option;
    (*

    The name of the Amazon Q Business application.

    *)
  2. applicationId : ApplicationId.t option;
    (*

    The identifier for the Amazon Q Business application.

    *)
  3. createdAt : Timestamp.t option;
    (*

    The Unix timestamp when the Amazon Q Business application was created.

    *)
  4. updatedAt : Timestamp.t option;
    (*

    The Unix timestamp when the Amazon Q Business application was last updated.

    *)
  5. status : ApplicationStatus.t option;
    (*

    The status of the Amazon Q Business application. The application is ready to use when the status is ACTIVE.

    *)
  6. identityType : IdentityType.t option;
    (*

    The authentication type being used by a Amazon Q Business application.

    *)
  7. quickSightConfiguration : QuickSightConfiguration.t option;
    (*

    The Amazon Quick Suite configuration for an Amazon Q Business application that uses Quick Suite as the identity provider.

    *)
}
Sourceval make : ?displayName:??? -> ?applicationId:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?status:??? -> ?identityType:??? -> ?quickSightConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ApplicationName.t | `Structure of (string * [> `String of ClientNamespace.t ]) 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