Method: Aws::CognitoIdentityProvider::Types::AuthenticationResultType#refresh_token

Defined in:
lib/aws-sdk-cognitoidentityprovider/types.rb

#refresh_tokenString

Your user’s refresh token.

Returns:

  • (String)


2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 2805

class AuthenticationResultType < Struct.new(
  :access_token,
  :expires_in,
  :token_type,
  :refresh_token,
  :id_token,
  :new_device_metadata)
  SENSITIVE = [:access_token, :refresh_token, :id_token]
  include Aws::Structure
end