Class: Aws::AmplifyUIBuilder::Types::RefreshTokenResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyUIBuilder::Types::RefreshTokenResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-amplifyuibuilder/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:access_token]
Instance Attribute Summary collapse
-
#access_token ⇒ String
The access token.
-
#expires_in ⇒ Integer
The date and time when the new access token expires.
Instance Attribute Details
#access_token ⇒ String
The access token.
2832 2833 2834 2835 2836 2837 |
# File 'lib/aws-sdk-amplifyuibuilder/types.rb', line 2832 class RefreshTokenResponse < Struct.new( :access_token, :expires_in) SENSITIVE = [:access_token] include Aws::Structure end |
#expires_in ⇒ Integer
The date and time when the new access token expires.
2832 2833 2834 2835 2836 2837 |
# File 'lib/aws-sdk-amplifyuibuilder/types.rb', line 2832 class RefreshTokenResponse < Struct.new( :access_token, :expires_in) SENSITIVE = [:access_token] include Aws::Structure end |