Module Values.UnlinkIdentityInputSource

Input to the UnlinkIdentity action.

Sourcetype nonrec t = {
  1. identityId : IdentityId.t;
    (*

    A unique identifier in the format REGION:GUID.

    *)
  2. logins : LoginsMap.t;
    (*

    A set of optional name-value pairs that map provider names to provider tokens.

    *)
  3. loginsToRemove : LoginsList.t;
    (*

    Provider names to unlink from this identity.

    *)
}
Sourceval context_ : string
Sourceval make : identityId:IdentityId.t -> logins:LoginsMap.t -> loginsToRemove:LoginsList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of IdentityProviderName.t ] list | `Map of ([> `String of IdentityProviderName.t ] * [> `String of IdentityProviderToken.t ]) list | `String of IdentityId.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