Class: Aws::CognitoIdentity::Types::GetOpenIdTokenInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentity::Types::GetOpenIdTokenInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentity/types.rb
Overview
Input to the GetOpenIdToken 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.
Instance Attribute Details
#identity_id ⇒ String
A unique identifier in the format REGION:GUID.
514 515 516 517 518 519 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 514 class GetOpenIdTokenInput < Struct.new( :identity_id, :logins) SENSITIVE = [:logins] include Aws::Structure end |
#logins ⇒ Hash<String,String>
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`.
514 515 516 517 518 519 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 514 class GetOpenIdTokenInput < Struct.new( :identity_id, :logins) SENSITIVE = [:logins] include Aws::Structure end |