Class: Aws::AppFabric::Types::AuthRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppFabric::Types::AuthRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appfabric/types.rb
Overview
Contains authorization request information, which is required for Amazon Web Services AppFabric to get the OAuth2 access token for an application.
Constant Summary collapse
- SENSITIVE =
[:code]
Instance Attribute Summary collapse
-
#code ⇒ String
The authorization code returned by the application after permission is granted in the application OAuth page (after clicking on the AuthURL).
-
#redirect_uri ⇒ String
The redirect URL that is specified in the AuthURL and the application client.
Instance Attribute Details
#code ⇒ String
The authorization code returned by the application after permission is granted in the application OAuth page (after clicking on the AuthURL).
264 265 266 267 268 269 |
# File 'lib/aws-sdk-appfabric/types.rb', line 264 class AuthRequest < Struct.new( :redirect_uri, :code) SENSITIVE = [:code] include Aws::Structure end |
#redirect_uri ⇒ String
The redirect URL that is specified in the AuthURL and the application client.
264 265 266 267 268 269 |
# File 'lib/aws-sdk-appfabric/types.rb', line 264 class AuthRequest < Struct.new( :redirect_uri, :code) SENSITIVE = [:code] include Aws::Structure end |