Module Values.CognitoOptionsSource

Options to specify the Cognito user and identity pools for Kibana authentication. For more information, see Amazon Cognito Authentication for Kibana.

Sourcetype nonrec t = {
  1. enabled : Boolean.t option;
    (*

    Specifies the option to enable Cognito for Kibana authentication.

    *)
  2. userPoolId : UserPoolId.t option;
    (*

    Specifies the Cognito user pool ID for Kibana authentication.

    *)
  3. identityPoolId : IdentityPoolId.t option;
    (*

    Specifies the Cognito identity pool ID for Kibana authentication.

    *)
  4. roleArn : RoleArn.t option;
    (*

    Specifies the role ARN that provides Elasticsearch permissions for accessing Cognito resources.

    *)
}
Sourceval make : ?enabled:??? -> ?userPoolId:??? -> ?identityPoolId:??? -> ?roleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of UserPoolId.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