Class: Aws::AmplifyUIBuilder::Types::ExchangeCodeForTokenRequestBody
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyUIBuilder::Types::ExchangeCodeForTokenRequestBody
- Defined in:
- gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb
Overview
Note:
When making an API call, you may pass ExchangeCodeForTokenRequestBody data as a hash:
{
code: "SensitiveString", # required
redirect_uri: "String", # required
}
Describes the configuration of a request to exchange an access code for a token.
Constant Summary collapse
- SENSITIVE =
[:code]
Instance Attribute Summary collapse
-
#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
#code ⇒ String
The access code to send in the request.
4744 4745 4746 4747 4748 4749 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 4744 class ExchangeCodeForTokenRequestBody < Struct.new( :code, :redirect_uri) SENSITIVE = [:code] include Aws::Structure end |
#redirect_uri ⇒ String
The location of the application that will receive the access code.
4744 4745 4746 4747 4748 4749 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 4744 class ExchangeCodeForTokenRequestBody < Struct.new( :code, :redirect_uri) SENSITIVE = [:code] include Aws::Structure end |