Class: Aws::AmplifyUIBuilder::Types::ExchangeCodeForTokenRequestBody
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyUIBuilder::Types::ExchangeCodeForTokenRequestBody
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-amplifyuibuilder/types.rb
Overview
Describes the configuration of a request to exchange an access code for a token.
Constant Summary collapse
- SENSITIVE =
[:code, :client_id]
Instance Attribute Summary collapse
-
#client_id ⇒ String
The ID of the client to request the token from.
-
#code ⇒ String
The access code to send in the request.
-
#redirect_uri ⇒ String
The location of the application that will receive the access code.
Instance Attribute Details
#client_id ⇒ String
The ID of the client to request the token from.
1428 1429 1430 1431 1432 1433 1434 |
# File 'lib/aws-sdk-amplifyuibuilder/types.rb', line 1428 class ExchangeCodeForTokenRequestBody < Struct.new( :code, :redirect_uri, :client_id) SENSITIVE = [:code, :client_id] include Aws::Structure end |
#code ⇒ String
The access code to send in the request.
1428 1429 1430 1431 1432 1433 1434 |
# File 'lib/aws-sdk-amplifyuibuilder/types.rb', line 1428 class ExchangeCodeForTokenRequestBody < Struct.new( :code, :redirect_uri, :client_id) SENSITIVE = [:code, :client_id] include Aws::Structure end |
#redirect_uri ⇒ String
The location of the application that will receive the access code.
1428 1429 1430 1431 1432 1433 1434 |
# File 'lib/aws-sdk-amplifyuibuilder/types.rb', line 1428 class ExchangeCodeForTokenRequestBody < Struct.new( :code, :redirect_uri, :client_id) SENSITIVE = [:code, :client_id] include Aws::Structure end |