Class: Aws::AmplifyUIBuilder::Types::ExchangeCodeForTokenRequestBody

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

Instance Attribute Details

#client_idString

The ID of the client to request the token from.

Returns:

  • (String)


1428
1429
1430
1431
1432
1433
1434
# File 'gems/aws-sdk-amplifyuibuilder/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

#codeString

The access code to send in the request.

Returns:

  • (String)


1428
1429
1430
1431
1432
1433
1434
# File 'gems/aws-sdk-amplifyuibuilder/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_uriString

The location of the application that will receive the access code.

Returns:

  • (String)


1428
1429
1430
1431
1432
1433
1434
# File 'gems/aws-sdk-amplifyuibuilder/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