Class: Aws::AmplifyUIBuilder::Types::ExchangeCodeForTokenRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyUIBuilder::Types::ExchangeCodeForTokenRequest
- Defined in:
- gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb
Overview
Note:
When making an API call, you may pass ExchangeCodeForTokenRequest data as a hash:
{
provider: "figma", # required, accepts figma
request: { # required
code: "SensitiveString", # required
redirect_uri: "String", # required
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#provider ⇒ String
The third-party provider for the token.
-
#request ⇒ Types::ExchangeCodeForTokenRequestBody
Describes the configuration of the request.
Instance Attribute Details
#provider ⇒ String
The third-party provider for the token. The only valid value is
figma
.
4716 4717 4718 4719 4720 4721 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 4716 class ExchangeCodeForTokenRequest < Struct.new( :provider, :request) SENSITIVE = [] include Aws::Structure end |
#request ⇒ Types::ExchangeCodeForTokenRequestBody
Describes the configuration of the request.
4716 4717 4718 4719 4720 4721 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 4716 class ExchangeCodeForTokenRequest < Struct.new( :provider, :request) SENSITIVE = [] include Aws::Structure end |