Module Values.UnlinkDeveloperIdentityInputSource

Input to the UnlinkDeveloperIdentity action.

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

    A unique identifier in the format REGION:GUID.

    *)
  2. identityPoolId : IdentityPoolId.t;
    (*

    An identity pool ID in the format REGION:GUID.

    *)
  3. developerProviderName : DeveloperProviderName.t;
    (*

    The "domain" by which Cognito will refer to your users.

    *)
  4. developerUserIdentifier : DeveloperUserIdentifier.t;
    (*

    A unique ID used by your backend authentication process to identify a user.

    *)
}
Sourceval context_ : string
Sourceval make : identityId:IdentityId.t -> identityPoolId:IdentityPoolId.t -> developerProviderName:DeveloperProviderName.t -> developerUserIdentifier:DeveloperUserIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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