Class: Aws::AmplifyUIBuilder::Types::RefreshTokenRequestBody
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyUIBuilder::Types::RefreshTokenRequestBody
- Defined in:
- gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb
Overview
Describes a refresh token.
Constant Summary collapse
- SENSITIVE =
[:token, :client_id]
Instance Attribute Summary collapse
-
#client_id ⇒ String
The ID of the client to request the token from.
-
#token ⇒ String
The token to use to refresh a previously issued access token that might have expired.
Instance Attribute Details
#client_id ⇒ String
The ID of the client to request the token from.
2815 2816 2817 2818 2819 2820 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 2815 class RefreshTokenRequestBody < Struct.new( :token, :client_id) SENSITIVE = [:token, :client_id] include Aws::Structure end |
#token ⇒ String
The token to use to refresh a previously issued access token that might have expired.
2815 2816 2817 2818 2819 2820 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 2815 class RefreshTokenRequestBody < Struct.new( :token, :client_id) SENSITIVE = [:token, :client_id] include Aws::Structure end |