Smaws_Client_CognitoIdentity
Cognito Identity client library built on EIO.
val service : Smaws_Lib.Service.descriptor
Thrown when the requested resource (for example, a dataset or record) does not exist.
Thrown when a user tries to use a login which is already linked to another account.
Thrown when a user is not authorized to access the requested resource.
Thrown when the total number of user pools has exceeded a preset limit.
Thrown when the service encounters an error during processing the request.
Thrown if there are parallel requests to modify a resource.
type cognito_identity_provider = {
server_side_token_check : bool option;
TRUE if server-side token validation is enabled for the identity provider’s token.
Once you set ServerSideTokenCheck
to TRUE for an identity pool, that identity pool will check with the integrated user pools to make sure that the user has not been globally signed out or deleted before the identity pool provides an OIDC token or AWS credentials for the user.
If the user is signed out or deleted, the identity pool will return a 400 Not Authorized error.
*)client_id : string option;
The client ID for the Amazon Cognito user pool.
*)provider_name : string option;
The provider name for an Amazon Cognito user pool. For example, cognito-idp.us-east-1.amazonaws.com/us-east-1_123456789
.
}
A provider representing an Amazon Cognito user pool and its client ID.
type identity_pool = {
saml_provider_ar_ns : string list option;
An array of Amazon Resource Names (ARNs) of the SAML provider for your identity pool.
*)cognito_identity_providers : cognito_identity_provider list option;
A list representing an Amazon Cognito user pool and its client ID.
*)open_id_connect_provider_ar_ns : string list option;
The ARNs of the OpenID Connect providers.
*)developer_provider_name : string option;
The "domain" by which Cognito will refer to your users.
*)supported_login_providers : (string * string) list option;
Optional key:value pairs mapping provider names to provider app IDs.
*)allow_classic_flow : bool option;
Enables or disables the Basic (Classic) authentication flow. For more information, see Identity Pools (Federated Identities) Authentication Flow in the Amazon Cognito Developer Guide.
*)allow_unauthenticated_identities : bool;
TRUE if the identity pool supports unauthenticated logins.
*)identity_pool_name : string;
A string that you provide.
*)identity_pool_id : string;
An identity pool ID in the format REGION:GUID.
*)}
An object representing an Amazon Cognito identity pool.
type unprocessed_identity_id = {
error_code : error_code option;
The error code indicating the type of error that occurred.
*)identity_id : string option;
A unique identifier in the format REGION:GUID.
*)}
An array of UnprocessedIdentityId objects, each of which contains an ErrorCode and IdentityId.
type unlink_identity_input = {
logins_to_remove : string list;
Provider names to unlink from this identity.
*)logins : (string * string) list;
A set of optional name-value pairs that map provider names to provider tokens.
*)identity_id : string;
A unique identifier in the format REGION:GUID.
*)}
Input to the UnlinkIdentity action.
An exception thrown when a dependent service such as Facebook or Twitter is not responding
type unlink_developer_identity_input = {
developer_user_identifier : string;
A unique ID used by your backend authentication process to identify a user.
*)developer_provider_name : string;
The "domain" by which Cognito will refer to your users.
*)identity_pool_id : string;
An identity pool ID in the format REGION:GUID.
*)identity_id : string;
A unique identifier in the format REGION:GUID.
*)}
Input to the UnlinkDeveloperIdentity
action.
type set_principal_tag_attribute_map_response = {
use_defaults : bool option;
You can use this operation to select default (username and clientID) attribute mappings.
*)identity_provider_name : string option;
The provider name you want to use for attribute mappings.
*)identity_pool_id : string option;
The ID of the Identity Pool you want to set attribute mappings for.
*)}
type set_principal_tag_attribute_map_input = {
use_defaults : bool option;
You can use this operation to use default (username and clientID) attribute mappings.
*)identity_provider_name : string;
The provider name you want to use for attribute mappings.
*)identity_pool_id : string;
The ID of the Identity Pool you want to set attribute mappings for.
*)}
type mapping_rule = {
role_ar_n : string;
The role ARN.
*)value : string;
A brief string that the claim must match, for example, "paid" or "yes".
*)match_type : mapping_rule_match_type;
The match condition that specifies how closely the claim value in the IdP token must match Value
.
claim : string;
The claim name that must be present in the token, for example, "isAdmin" or "paid".
*)}
A rule that maps a claim name, a claim value, and a match type to a role ARN.
type rules_configuration_type = {
rules : mapping_rule list;
An array of rules. You can specify up to 25 rules per identity provider.
Rules are evaluated in order. The first one to match specifies the role.
*)}
A container for rules.
type role_mapping = {
rules_configuration : rules_configuration_type option;
The rules to be used for mapping users to roles.
If you specify Rules as the role mapping type, RulesConfiguration
is required.
ambiguous_role_resolution : ambiguous_role_resolution_type option;
If you specify Token or Rules as the Type
, AmbiguousRoleResolution
is required.
Specifies the action to be taken if either no rules match the claim value for the Rules
type, or there is no cognito:preferred_role
claim and there are multiple cognito:roles
matches for the Token
type.
type_ : role_mapping_type;
The role mapping type. Token will use cognito:roles
and cognito:preferred_role
claims from the Cognito identity provider token to map groups to roles. Rules will attempt to match claims from the token to map to a role.
}
A role mapping.
type set_identity_pool_roles_input = {
role_mappings : (string * role_mapping) list option;
How users for a specific identity provider are to mapped to roles. This is a string to RoleMapping
object map. The string identifies the identity provider, for example, "graph.facebook.com" or "cognito-idp.us-east-1.amazonaws.com/us-east-1_abcdefghi:app_client_id".
Up to 25 rules can be specified per identity provider.
*)roles : (string * string) list;
The map of roles associated with this pool. For a given role, the key will be either "authenticated" or "unauthenticated" and the value will be the Role ARN.
*)identity_pool_id : string;
An identity pool ID in the format REGION:GUID.
*)}
Input to the SetIdentityPoolRoles
action.
Returned in response to a successful MergeDeveloperIdentities
action.
type merge_developer_identities_input = {
identity_pool_id : string;
An identity pool ID in the format REGION:GUID.
*)developer_provider_name : string;
The "domain" by which Cognito will refer to your users. This is a (pseudo) domain name that you provide while creating an identity pool. This name acts as a placeholder that allows your backend and the Cognito service to communicate about the developer provider. For the DeveloperProviderName
, you can use letters as well as period (.), underscore (_), and dash (-).
destination_user_identifier : string;
User identifier for the destination user. The value should be a DeveloperUserIdentifier
.
source_user_identifier : string;
User identifier for the source user. The value should be a DeveloperUserIdentifier
.
}
Input to the MergeDeveloperIdentities
action.
type lookup_developer_identity_response = {
next_token : string option;
A pagination token. The first call you make will have NextToken
set to null. After that the service will return NextToken
values as needed. For example, let's say you make a request with MaxResults
set to 10, and there are 20 matches in the database. The service will return a pagination token as a part of the response. This token can be used to call the API again and get results starting from the 11th match.
developer_user_identifier_list : string list option;
This is the list of developer user identifiers associated with an identity ID. Cognito supports the association of multiple developer user identifiers with an identity ID.
*)identity_id : string option;
A unique identifier in the format REGION:GUID.
*)}
Returned in response to a successful LookupDeveloperIdentity
action.
type lookup_developer_identity_input = {
next_token : string option;
A pagination token. The first call you make will have NextToken
set to null. After that the service will return NextToken
values as needed. For example, let's say you make a request with MaxResults
set to 10, and there are 20 matches in the database. The service will return a pagination token as a part of the response. This token can be used to call the API again and get results starting from the 11th match.
max_results : int option;
The maximum number of identities to return.
*)developer_user_identifier : string option;
A unique ID used by your backend authentication process to identify a user. Typically, a developer identity provider would issue many developer user identifiers, in keeping with the number of users.
*)identity_id : string option;
A unique identifier in the format REGION:GUID.
*)identity_pool_id : string;
An identity pool ID in the format REGION:GUID.
*)}
Input to the LookupDeveloperIdentityInput
action.
type identity_pool_short_description = {
identity_pool_name : string option;
A string that you provide.
*)identity_pool_id : string option;
An identity pool ID in the format REGION:GUID.
*)}
A description of the identity pool.
type list_identity_pools_response = {
next_token : string option;
A pagination token.
*)identity_pools : identity_pool_short_description list option;
The identity pools returned by the ListIdentityPools action.
*)}
The result of a successful ListIdentityPools action.
type list_identity_pools_input = {
next_token : string option;
A pagination token.
*)max_results : int;
The maximum number of identities to return.
*)}
Input to the ListIdentityPools action.
type identity_description = {
last_modified_date : float option;
Date on which the identity was last modified.
*)creation_date : float option;
Date on which the identity was created.
*)logins : string list option;
The provider names.
*)identity_id : string option;
A unique identifier in the format REGION:GUID.
*)}
A description of the identity.
type list_identities_response = {
next_token : string option;
A pagination token.
*)identities : identity_description list option;
An object containing a set of identities and associated mappings.
*)identity_pool_id : string option;
An identity pool ID in the format REGION:GUID.
*)}
The response to a ListIdentities request.
type list_identities_input = {
hide_disabled : bool option;
An optional boolean parameter that allows you to hide disabled identities. If omitted, the ListIdentities API will include disabled identities in the response.
*)next_token : string option;
A pagination token.
*)max_results : int;
The maximum number of identities to return.
*)identity_pool_id : string;
An identity pool ID in the format REGION:GUID.
*)}
Input to the ListIdentities action.
Thrown if the identity pool has no role associated for the given auth type (auth/unauth) or if the AssumeRole fails.
type get_principal_tag_attribute_map_response = {
use_defaults : bool option;
You can use this operation to list
*)identity_provider_name : string option;
You can use this operation to get the provider name.
*)identity_pool_id : string option;
You can use this operation to get the ID of the Identity Pool you setup attribute mappings for.
*)}
type get_open_id_token_response = {
token : string option;
An OpenID token, valid for 10 minutes.
*)identity_id : string option;
A unique identifier in the format REGION:GUID. Note that the IdentityId returned may not match the one passed on input.
*)}
Returned in response to a successful GetOpenIdToken request.
type get_open_id_token_input = {
logins : (string * string) list option;
A set of optional name-value pairs that map provider names to provider tokens. When using graph.facebook.com and www.amazon.com, supply the access_token returned from the provider's authflow. For accounts.google.com, an Amazon Cognito user pool provider, or any other OpenID Connect provider, always include the id_token
.
identity_id : string;
A unique identifier in the format REGION:GUID.
*)}
Input to the GetOpenIdToken action.
type get_open_id_token_for_developer_identity_response = {
token : string option;
An OpenID token.
*)identity_id : string option;
A unique identifier in the format REGION:GUID.
*)}
Returned in response to a successful GetOpenIdTokenForDeveloperIdentity
request.
type get_open_id_token_for_developer_identity_input = {
token_duration : int option;
The expiration time of the token, in seconds. You can specify a custom expiration time for the token so that you can cache it. If you don't provide an expiration time, the token is valid for 15 minutes. You can exchange the token with Amazon STS for temporary AWS credentials, which are valid for a maximum of one hour. The maximum token duration you can set is 24 hours. You should take care in setting the expiration time for a token, as there are significant security implications: an attacker could use a leaked token to access your AWS resources for the token's duration.
Please provide for a small grace period, usually no more than 5 minutes, to account for clock skew.
*)logins : (string * string) list;
A set of optional name-value pairs that map provider names to provider tokens. Each name-value pair represents a user from a public provider or developer provider. If the user is from a developer provider, the name-value pair will follow the syntax "developer_provider_name": "developer_user_identifier"
. The developer provider is the "domain" by which Cognito will refer to your users; you provided this domain while creating/updating the identity pool. The developer user identifier is an identifier from your backend that uniquely identifies a user. When you create an identity pool, you can specify the supported logins.
identity_id : string option;
A unique identifier in the format REGION:GUID.
*)identity_pool_id : string;
An identity pool ID in the format REGION:GUID.
*)}
Input to the GetOpenIdTokenForDeveloperIdentity
action.
The provided developer user identifier is already registered with Cognito under a different identity ID.
type get_identity_pool_roles_response = {
role_mappings : (string * role_mapping) list option;
How users for a specific identity provider are to mapped to roles. This is a String-to-RoleMapping
object map. The string identifies the identity provider, for example, "graph.facebook.com" or "cognito-idp.us-east-1.amazonaws.com/us-east-1_abcdefghi:app_client_id".
roles : (string * string) list option;
The map of roles associated with this pool. Currently only authenticated and unauthenticated roles are supported.
*)identity_pool_id : string option;
An identity pool ID in the format REGION:GUID.
*)}
Returned in response to a successful GetIdentityPoolRoles
operation.
type get_id_input = {
logins : (string * string) list option;
A set of optional name-value pairs that map provider names to provider tokens. The available provider names for Logins
are as follows:
graph.facebook.com
Amazon Cognito user pool:
cognito-idp..amazonaws.com/
, for example, cognito-idp.us-east-1.amazonaws.com/us-east-1_123456789
.
accounts.google.com
www.amazon.com
api.twitter.com
www.digits.com
identity_pool_id : string;
An identity pool ID in the format REGION:GUID.
*)account_id : string option;
A standard AWS account ID (9+ digits).
*)}
Input to the GetId action.
type credentials = {
expiration : float option;
The date at which these credentials will expire.
*)session_token : string option;
The Session Token portion of the credentials
*)secret_key : string option;
The Secret Access Key portion of the credentials
*)access_key_id : string option;
The Access Key portion of the credentials.
*)}
Credentials for the provided identity ID.
type get_credentials_for_identity_response = {
credentials : credentials option;
Credentials for the provided identity ID.
*)identity_id : string option;
A unique identifier in the format REGION:GUID.
*)}
Returned in response to a successful GetCredentialsForIdentity
operation.
type get_credentials_for_identity_input = {
custom_role_arn : string option;
The Amazon Resource Name (ARN) of the role to be assumed when multiple roles were received in the token from the identity provider. For example, a SAML-based identity provider. This parameter is optional for identity providers that do not support role customization.
*)logins : (string * string) list option;
A set of optional name-value pairs that map provider names to provider tokens. The name-value pair will follow the syntax "provider_name": "provider_user_identifier".
Logins should not be specified when trying to get credentials for an unauthenticated identity.
The Logins parameter is required when using identities associated with external identity providers such as Facebook. For examples of Logins
maps, see the code examples in the External Identity Providers section of the Amazon Cognito Developer Guide.
identity_id : string;
A unique identifier in the format REGION:GUID.
*)}
Input to the GetCredentialsForIdentity
action.
type delete_identities_response = {
unprocessed_identity_ids : unprocessed_identity_id list option;
An array of UnprocessedIdentityId objects, each of which contains an ErrorCode and IdentityId.
*)}
Returned in response to a successful DeleteIdentities
operation.
type create_identity_pool_input = {
saml_provider_ar_ns : string list option;
An array of Amazon Resource Names (ARNs) of the SAML provider for your identity pool.
*)cognito_identity_providers : cognito_identity_provider list option;
An array of Amazon Cognito user pools and their client IDs.
*)open_id_connect_provider_ar_ns : string list option;
The Amazon Resource Names (ARN) of the OpenID Connect providers.
*)developer_provider_name : string option;
The "domain" by which Cognito will refer to your users. This name acts as a placeholder that allows your backend and the Cognito service to communicate about the developer provider. For the DeveloperProviderName
, you can use letters as well as period (.
), underscore (_
), and dash (-
).
Once you have set a developer provider name, you cannot change it. Please take care in setting this parameter.
*)supported_login_providers : (string * string) list option;
Optional key:value pairs mapping provider names to provider app IDs.
*)allow_classic_flow : bool option;
Enables or disables the Basic (Classic) authentication flow. For more information, see Identity Pools (Federated Identities) Authentication Flow in the Amazon Cognito Developer Guide.
*)allow_unauthenticated_identities : bool;
TRUE if the identity pool supports unauthenticated logins.
*)identity_pool_name : string;
A string that you provide.
*)}
Input to the CreateIdentityPool action.
Amazon Cognito Federated Identities Amazon Cognito Federated Identities is a web service that delivers scoped temporary credentials to mobile devices and other untrusted environments. It uniquely identifies a device and supplies the user with a consistent identity over the lifetime of an application.
Using Amazon Cognito Federated Identities, you can enable authentication with one or more third-party identity providers (Facebook, Google, or Login with Amazon) or an Amazon Cognito user pool, and you can also choose to support unauthenticated access from your app. Cognito delivers a unique identifier for each user and acts as an OpenID token provider trusted by AWS Security Token Service (STS) to access temporary, limited-privilege AWS credentials.
For a description of the authentication flow from the Amazon Cognito Developer Guide see Authentication Flow.
For more information see Amazon Cognito Federated Identities.
type base_document = Smaws_Lib.Json.t
val make_cognito_identity_provider :
?server_side_token_check:bool ->
?client_id:string ->
?provider_name:string ->
unit ->
cognito_identity_provider
Create a cognito_identity_provider
type
val make_identity_pool :
?identity_pool_tags:(string * string) list ->
?saml_provider_ar_ns:string list ->
?cognito_identity_providers:cognito_identity_provider list ->
?open_id_connect_provider_ar_ns:string list ->
?developer_provider_name:string ->
?supported_login_providers:(string * string) list ->
?allow_classic_flow:bool ->
allow_unauthenticated_identities:bool ->
identity_pool_name:string ->
identity_pool_id:string ->
unit ->
identity_pool
Create a identity_pool
type
val make_untag_resource_response : unit -> untag_resource_response
Create a untag_resource_response
type
val make_untag_resource_input :
tag_keys:string list ->
resource_arn:string ->
unit ->
untag_resource_input
Create a untag_resource_input
type
val make_unprocessed_identity_id :
?error_code:error_code ->
?identity_id:string ->
unit ->
unprocessed_identity_id
Create a unprocessed_identity_id
type
val make_unlink_identity_input :
logins_to_remove:string list ->
logins:(string * string) list ->
identity_id:string ->
unit ->
unlink_identity_input
Create a unlink_identity_input
type
val make_unlink_developer_identity_input :
developer_user_identifier:string ->
developer_provider_name:string ->
identity_pool_id:string ->
identity_id:string ->
unit ->
unlink_developer_identity_input
Create a unlink_developer_identity_input
type
val make_tag_resource_response : unit -> tag_resource_response
Create a tag_resource_response
type
val make_tag_resource_input :
tags:(string * string) list ->
resource_arn:string ->
unit ->
tag_resource_input
Create a tag_resource_input
type
val make_set_principal_tag_attribute_map_response :
?principal_tags:(string * string) list ->
?use_defaults:bool ->
?identity_provider_name:string ->
?identity_pool_id:string ->
unit ->
set_principal_tag_attribute_map_response
Create a set_principal_tag_attribute_map_response
type
val make_set_principal_tag_attribute_map_input :
?principal_tags:(string * string) list ->
?use_defaults:bool ->
identity_provider_name:string ->
identity_pool_id:string ->
unit ->
set_principal_tag_attribute_map_input
Create a set_principal_tag_attribute_map_input
type
val make_mapping_rule :
role_ar_n:string ->
value:string ->
match_type:mapping_rule_match_type ->
claim:string ->
unit ->
mapping_rule
Create a mapping_rule
type
val make_rules_configuration_type :
rules:mapping_rule list ->
unit ->
rules_configuration_type
Create a rules_configuration_type
type
val make_role_mapping :
?rules_configuration:rules_configuration_type ->
?ambiguous_role_resolution:ambiguous_role_resolution_type ->
type_:role_mapping_type ->
unit ->
role_mapping
Create a role_mapping
type
val make_set_identity_pool_roles_input :
?role_mappings:(string * role_mapping) list ->
roles:(string * string) list ->
identity_pool_id:string ->
unit ->
set_identity_pool_roles_input
Create a set_identity_pool_roles_input
type
val make_merge_developer_identities_response :
?identity_id:string ->
unit ->
merge_developer_identities_response
Create a merge_developer_identities_response
type
val make_merge_developer_identities_input :
identity_pool_id:string ->
developer_provider_name:string ->
destination_user_identifier:string ->
source_user_identifier:string ->
unit ->
merge_developer_identities_input
Create a merge_developer_identities_input
type
val make_lookup_developer_identity_response :
?next_token:string ->
?developer_user_identifier_list:string list ->
?identity_id:string ->
unit ->
lookup_developer_identity_response
Create a lookup_developer_identity_response
type
val make_lookup_developer_identity_input :
?next_token:string ->
?max_results:int ->
?developer_user_identifier:string ->
?identity_id:string ->
identity_pool_id:string ->
unit ->
lookup_developer_identity_input
Create a lookup_developer_identity_input
type
val make_list_tags_for_resource_response :
?tags:(string * string) list ->
unit ->
list_tags_for_resource_response
Create a list_tags_for_resource_response
type
val make_list_tags_for_resource_input :
resource_arn:string ->
unit ->
list_tags_for_resource_input
Create a list_tags_for_resource_input
type
val make_identity_pool_short_description :
?identity_pool_name:string ->
?identity_pool_id:string ->
unit ->
identity_pool_short_description
Create a identity_pool_short_description
type
val make_list_identity_pools_response :
?next_token:string ->
?identity_pools:identity_pool_short_description list ->
unit ->
list_identity_pools_response
Create a list_identity_pools_response
type
val make_list_identity_pools_input :
?next_token:string ->
max_results:int ->
unit ->
list_identity_pools_input
Create a list_identity_pools_input
type
val make_identity_description :
?last_modified_date:float ->
?creation_date:float ->
?logins:string list ->
?identity_id:string ->
unit ->
identity_description
Create a identity_description
type
val make_list_identities_response :
?next_token:string ->
?identities:identity_description list ->
?identity_pool_id:string ->
unit ->
list_identities_response
Create a list_identities_response
type
val make_list_identities_input :
?hide_disabled:bool ->
?next_token:string ->
max_results:int ->
identity_pool_id:string ->
unit ->
list_identities_input
Create a list_identities_input
type
val make_get_principal_tag_attribute_map_response :
?principal_tags:(string * string) list ->
?use_defaults:bool ->
?identity_provider_name:string ->
?identity_pool_id:string ->
unit ->
get_principal_tag_attribute_map_response
Create a get_principal_tag_attribute_map_response
type
val make_get_principal_tag_attribute_map_input :
identity_provider_name:string ->
identity_pool_id:string ->
unit ->
get_principal_tag_attribute_map_input
Create a get_principal_tag_attribute_map_input
type
val make_get_open_id_token_response :
?token:string ->
?identity_id:string ->
unit ->
get_open_id_token_response
Create a get_open_id_token_response
type
val make_get_open_id_token_input :
?logins:(string * string) list ->
identity_id:string ->
unit ->
get_open_id_token_input
Create a get_open_id_token_input
type
val make_get_open_id_token_for_developer_identity_response :
?token:string ->
?identity_id:string ->
unit ->
get_open_id_token_for_developer_identity_response
Create a get_open_id_token_for_developer_identity_response
type
val make_get_open_id_token_for_developer_identity_input :
?token_duration:int ->
?principal_tags:(string * string) list ->
?identity_id:string ->
logins:(string * string) list ->
identity_pool_id:string ->
unit ->
get_open_id_token_for_developer_identity_input
Create a get_open_id_token_for_developer_identity_input
type
val make_get_identity_pool_roles_response :
?role_mappings:(string * role_mapping) list ->
?roles:(string * string) list ->
?identity_pool_id:string ->
unit ->
get_identity_pool_roles_response
Create a get_identity_pool_roles_response
type
val make_get_identity_pool_roles_input :
identity_pool_id:string ->
unit ->
get_identity_pool_roles_input
Create a get_identity_pool_roles_input
type
val make_get_id_response : ?identity_id:string -> unit -> get_id_response
Create a get_id_response
type
val make_get_id_input :
?logins:(string * string) list ->
?account_id:string ->
identity_pool_id:string ->
unit ->
get_id_input
Create a get_id_input
type
val make_credentials :
?expiration:float ->
?session_token:string ->
?secret_key:string ->
?access_key_id:string ->
unit ->
credentials
Create a credentials
type
val make_get_credentials_for_identity_response :
?credentials:credentials ->
?identity_id:string ->
unit ->
get_credentials_for_identity_response
Create a get_credentials_for_identity_response
type
val make_get_credentials_for_identity_input :
?custom_role_arn:string ->
?logins:(string * string) list ->
identity_id:string ->
unit ->
get_credentials_for_identity_input
Create a get_credentials_for_identity_input
type
val make_describe_identity_pool_input :
identity_pool_id:string ->
unit ->
describe_identity_pool_input
Create a describe_identity_pool_input
type
val make_describe_identity_input :
identity_id:string ->
unit ->
describe_identity_input
Create a describe_identity_input
type
val make_delete_identity_pool_input :
identity_pool_id:string ->
unit ->
delete_identity_pool_input
Create a delete_identity_pool_input
type
val make_delete_identities_response :
?unprocessed_identity_ids:unprocessed_identity_id list ->
unit ->
delete_identities_response
Create a delete_identities_response
type
val make_delete_identities_input :
identity_ids_to_delete:string list ->
unit ->
delete_identities_input
Create a delete_identities_input
type
val make_create_identity_pool_input :
?identity_pool_tags:(string * string) list ->
?saml_provider_ar_ns:string list ->
?cognito_identity_providers:cognito_identity_provider list ->
?open_id_connect_provider_ar_ns:string list ->
?developer_provider_name:string ->
?supported_login_providers:(string * string) list ->
?allow_classic_flow:bool ->
allow_unauthenticated_identities:bool ->
identity_pool_name:string ->
unit ->
create_identity_pool_input
Create a create_identity_pool_input
type
module CreateIdentityPool : sig ... end
module DeleteIdentities : sig ... end
module DeleteIdentityPool : sig ... end
module DescribeIdentity : sig ... end
module DescribeIdentityPool : sig ... end
module GetCredentialsForIdentity : sig ... end
module GetId : sig ... end
module GetIdentityPoolRoles : sig ... end
module GetOpenIdToken : sig ... end
module GetOpenIdTokenForDeveloperIdentity : sig ... end
module GetPrincipalTagAttributeMap : sig ... end
module ListIdentities : sig ... end
module ListIdentityPools : sig ... end
module ListTagsForResource : sig ... end
module LookupDeveloperIdentity : sig ... end
module MergeDeveloperIdentities : sig ... end
module SetIdentityPoolRoles : sig ... end
module SetPrincipalTagAttributeMap : sig ... end
module TagResource : sig ... end
module UnlinkDeveloperIdentity : sig ... end
module UnlinkIdentity : sig ... end
module UntagResource : sig ... end
module UpdateIdentityPool : sig ... end