Class: Aws::CognitoIdentity::Types::GetOpenIdTokenResponse

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cognitoidentity/types.rb

Overview

Returned in response to a successful GetOpenIdToken request.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#identity_idString

A unique identifier in the format REGION:GUID. Note that the IdentityId returned may not match the one passed on input.

Returns:

  • (String)


534
535
536
537
538
539
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 534

class GetOpenIdTokenResponse < Struct.new(
  :identity_id,
  :token)
  SENSITIVE = []
  include Aws::Structure
end

#tokenString

An OpenID token, valid for 10 minutes.

Returns:

  • (String)


534
535
536
537
538
539
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 534

class GetOpenIdTokenResponse < Struct.new(
  :identity_id,
  :token)
  SENSITIVE = []
  include Aws::Structure
end