Module Values.CreateWebLoginTokenResponseSource

Creates a web login token for the Airflow Web UI. To learn more, see Creating an Apache Airflow web login token.

Sourcetype nonrec t = {
  1. webToken : Token.t option;
    (*

    An Airflow web server login token.

    *)
  2. webServerHostname : Hostname.t option;
    (*

    The Airflow web server hostname for the environment.

    *)
  3. iamIdentity : IamIdentity.t option;
    (*

    The name of the IAM identity creating the web login token. This might be an IAM user, or an assumed or federated identity. For example, assumed-role/Admin/your-name.

    *)
  4. airflowIdentity : AirflowIdentity.t option;
    (*

    The user name of the Apache Airflow identity creating the web login token.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ValidationException of ValidationException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?webToken:??? -> ?webServerHostname:??? -> ?iamIdentity:??? -> ?airflowIdentity:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Token.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