Module Values.IamFederationConfigOptionsSource

Describes IAM federation options for an OpenSearch Serverless security configuration in the form of a key-value map. These options define how OpenSearch Serverless integrates with external identity providers using federation.

Sourcetype nonrec t = {
  1. groupAttribute : IamFederationGroupAttribute.t option;
    (*

    The group attribute for this IAM federation integration. This attribute is used to map identity provider groups to OpenSearch Serverless permissions.

    *)
  2. userAttribute : IamFederationUserAttribute.t option;
    (*

    The user attribute for this IAM federation integration. This attribute is used to identify users in the federated authentication process.

    *)
}
Sourceval make : ?groupAttribute:??? -> ?userAttribute:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of IamFederationGroupAttribute.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