Class: Aws::CognitoIdentity::Types::UnlinkDeveloperIdentityInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentity::Types::UnlinkDeveloperIdentityInput
- Defined in:
- gems/aws-sdk-cognitoidentity/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.
Constant Summary collapse
- SENSITIVE =
[]
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.
1581 1582 1583 1584 1585 1586 1587 1588 |
# File 'gems/aws-sdk-cognitoidentity/lib/aws-sdk-cognitoidentity/types.rb', line 1581 class UnlinkDeveloperIdentityInput < Struct.new( :identity_id, :identity_pool_id, :developer_provider_name, :developer_user_identifier) SENSITIVE = [] include Aws::Structure end |
#developer_user_identifier ⇒ String
A unique ID used by your backend authentication process to identify a user.
1581 1582 1583 1584 1585 1586 1587 1588 |
# File 'gems/aws-sdk-cognitoidentity/lib/aws-sdk-cognitoidentity/types.rb', line 1581 class UnlinkDeveloperIdentityInput < Struct.new( :identity_id, :identity_pool_id, :developer_provider_name, :developer_user_identifier) SENSITIVE = [] include Aws::Structure end |
#identity_id ⇒ String
A unique identifier in the format REGION:GUID.
1581 1582 1583 1584 1585 1586 1587 1588 |
# File 'gems/aws-sdk-cognitoidentity/lib/aws-sdk-cognitoidentity/types.rb', line 1581 class UnlinkDeveloperIdentityInput < Struct.new( :identity_id, :identity_pool_id, :developer_provider_name, :developer_user_identifier) SENSITIVE = [] include Aws::Structure end |
#identity_pool_id ⇒ String
An identity pool ID in the format REGION:GUID.
1581 1582 1583 1584 1585 1586 1587 1588 |
# File 'gems/aws-sdk-cognitoidentity/lib/aws-sdk-cognitoidentity/types.rb', line 1581 class UnlinkDeveloperIdentityInput < Struct.new( :identity_id, :identity_pool_id, :developer_provider_name, :developer_user_identifier) SENSITIVE = [] include Aws::Structure end |