Class: Aws::CognitoIdentity::Types::UnlinkIdentityInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentity::Types::UnlinkIdentityInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentity/types.rb
Overview
Input to the UnlinkIdentity action.
Constant Summary collapse
- SENSITIVE =
[:logins]
Instance Attribute Summary collapse
-
#identity_id ⇒ String
A unique identifier in the format REGION:GUID.
-
#logins ⇒ Hash<String,String>
A set of optional name-value pairs that map provider names to provider tokens.
-
#logins_to_remove ⇒ Array<String>
Provider names to unlink from this identity.
Instance Attribute Details
#identity_id ⇒ String
A unique identifier in the format REGION:GUID.
1311 1312 1313 1314 1315 1316 1317 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 1311 class UnlinkIdentityInput < Struct.new( :identity_id, :logins, :logins_to_remove) SENSITIVE = [:logins] include Aws::Structure end |
#logins ⇒ Hash<String,String>
A set of optional name-value pairs that map provider names to provider tokens.
1311 1312 1313 1314 1315 1316 1317 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 1311 class UnlinkIdentityInput < Struct.new( :identity_id, :logins, :logins_to_remove) SENSITIVE = [:logins] include Aws::Structure end |
#logins_to_remove ⇒ Array<String>
Provider names to unlink from this identity.
1311 1312 1313 1314 1315 1316 1317 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 1311 class UnlinkIdentityInput < Struct.new( :identity_id, :logins, :logins_to_remove) SENSITIVE = [:logins] include Aws::Structure end |