Module Values.IAMFederationOptionsOutputSource

Output parameters showing the current IAM identity federation configuration.

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

    Indicates whether IAM identity federation is currently enabled for the domain.

    *)
  2. subjectKey : IAMFederationSubjectKey.t option;
    (*

    The configured key in the SAML assertion for the user's subject identifier.

    *)
  3. rolesKey : IAMFederationRolesKey.t option;
    (*

    The configured key in the SAML assertion for the user's role information.

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