Class: Aws::CognitoIdentity::Types::GetOpenIdTokenResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentity::Types::GetOpenIdTokenResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentity/types.rb
Overview
Returned in response to a successful GetOpenIdToken request.
Constant Summary collapse
- SENSITIVE =
[:token]
Instance Attribute Summary collapse
-
#identity_id ⇒ String
A unique identifier in the format REGION:GUID.
-
#token ⇒ String
An OpenID token, valid for 10 minutes.
Instance Attribute Details
#identity_id ⇒ String
A unique identifier in the format REGION:GUID. Note that the IdentityId returned may not match the one passed on input.
534 535 536 537 538 539 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 534 class GetOpenIdTokenResponse < Struct.new( :identity_id, :token) SENSITIVE = [:token] include Aws::Structure end |
#token ⇒ String
An OpenID token, valid for 10 minutes.
534 535 536 537 538 539 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 534 class GetOpenIdTokenResponse < Struct.new( :identity_id, :token) SENSITIVE = [:token] include Aws::Structure end |