Class: Aws::CognitoIdentity::Types::UnlinkDeveloperIdentityInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentity::Types::UnlinkDeveloperIdentityInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentity/types.rb
Overview
Note:
When making an API call, you may pass UnlinkDeveloperIdentityInput data as a hash:
{
identity_id: "IdentityId", # required
identity_pool_id: "IdentityPoolId", # required
developer_provider_name: "DeveloperProviderName", # required
developer_user_identifier: "DeveloperUserIdentifier", # required
}
Input to the ‘UnlinkDeveloperIdentity` action.
Instance Attribute Summary collapse
-
#developer_provider_name ⇒ String
The “domain” by which Cognito will refer to your users.
-
#developer_user_identifier ⇒ String
A unique ID used by your backend authentication process to identify a user.
-
#identity_id ⇒ String
A unique identifier in the format REGION:GUID.
-
#identity_pool_id ⇒ String
An identity pool ID in the format REGION:GUID.
Instance Attribute Details
#developer_provider_name ⇒ String
The “domain” by which Cognito will refer to your users.
1115 1116 1117 1118 1119 1120 1121 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 1115 class UnlinkDeveloperIdentityInput < Struct.new( :identity_id, :identity_pool_id, :developer_provider_name, :developer_user_identifier) include Aws::Structure end |
#developer_user_identifier ⇒ String
A unique ID used by your backend authentication process to identify a user.
1115 1116 1117 1118 1119 1120 1121 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 1115 class UnlinkDeveloperIdentityInput < Struct.new( :identity_id, :identity_pool_id, :developer_provider_name, :developer_user_identifier) include Aws::Structure end |
#identity_id ⇒ String
A unique identifier in the format REGION:GUID.
1115 1116 1117 1118 1119 1120 1121 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 1115 class UnlinkDeveloperIdentityInput < Struct.new( :identity_id, :identity_pool_id, :developer_provider_name, :developer_user_identifier) include Aws::Structure end |
#identity_pool_id ⇒ String
An identity pool ID in the format REGION:GUID.
1115 1116 1117 1118 1119 1120 1121 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 1115 class UnlinkDeveloperIdentityInput < Struct.new( :identity_id, :identity_pool_id, :developer_provider_name, :developer_user_identifier) include Aws::Structure end |