Class: Aws::AmplifyUIBuilder::Types::ExchangeCodeForTokenResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyUIBuilder::Types::ExchangeCodeForTokenResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-amplifyuibuilder/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:access_token, :refresh_token]
Instance Attribute Summary collapse
-
#access_token ⇒ String
The access token.
-
#expires_in ⇒ Integer
The date and time when the new access token expires.
-
#refresh_token ⇒ String
The token to use to refresh a previously issued access token that might have expired.
Instance Attribute Details
#access_token ⇒ String
The access token.
1451 1452 1453 1454 1455 1456 1457 |
# File 'lib/aws-sdk-amplifyuibuilder/types.rb', line 1451 class ExchangeCodeForTokenResponse < Struct.new( :access_token, :expires_in, :refresh_token) SENSITIVE = [:access_token, :refresh_token] include Aws::Structure end |
#expires_in ⇒ Integer
The date and time when the new access token expires.
1451 1452 1453 1454 1455 1456 1457 |
# File 'lib/aws-sdk-amplifyuibuilder/types.rb', line 1451 class ExchangeCodeForTokenResponse < Struct.new( :access_token, :expires_in, :refresh_token) SENSITIVE = [:access_token, :refresh_token] include Aws::Structure end |
#refresh_token ⇒ String
The token to use to refresh a previously issued access token that might have expired.
1451 1452 1453 1454 1455 1456 1457 |
# File 'lib/aws-sdk-amplifyuibuilder/types.rb', line 1451 class ExchangeCodeForTokenResponse < Struct.new( :access_token, :expires_in, :refresh_token) SENSITIVE = [:access_token, :refresh_token] include Aws::Structure end |