Class: Aws::AppFabric::Types::AuthRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-appfabric/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

Instance Attribute Details

#codeString

The authorization code returned by the application after permission is granted in the application OAuth page (after clicking on the AuthURL).

Returns:

  • (String)


264
265
266
267
268
269
# File 'gems/aws-sdk-appfabric/lib/aws-sdk-appfabric/types.rb', line 264

class AuthRequest < Struct.new(
  :redirect_uri,
  :code)
  SENSITIVE = [:code]
  include Aws::Structure
end

#redirect_uriString

The redirect URL that is specified in the AuthURL and the application client.

Returns:

  • (String)


264
265
266
267
268
269
# File 'gems/aws-sdk-appfabric/lib/aws-sdk-appfabric/types.rb', line 264

class AuthRequest < Struct.new(
  :redirect_uri,
  :code)
  SENSITIVE = [:code]
  include Aws::Structure
end