Class: Aws::Appflow::Types::OAuthProperties

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb

Overview

The OAuth properties required for OAuth type authentication.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#auth_code_urlString

The authorization code url required to redirect to SAP Login Page to fetch authorization code for OAuth type authentication.

Returns:

  • (String)


3504
3505
3506
3507
3508
3509
3510
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 3504

class OAuthProperties < Struct.new(
  :token_url,
  :auth_code_url,
  :o_auth_scopes)
  SENSITIVE = []
  include Aws::Structure
end

#o_auth_scopesArray<String>

The OAuth scopes required for OAuth type authentication.

Returns:

  • (Array<String>)


3504
3505
3506
3507
3508
3509
3510
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 3504

class OAuthProperties < Struct.new(
  :token_url,
  :auth_code_url,
  :o_auth_scopes)
  SENSITIVE = []
  include Aws::Structure
end

#token_urlString

The token url required to fetch access/refresh tokens using authorization code and also to refresh expired access token using refresh token.

Returns:

  • (String)


3504
3505
3506
3507
3508
3509
3510
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 3504

class OAuthProperties < Struct.new(
  :token_url,
  :auth_code_url,
  :o_auth_scopes)
  SENSITIVE = []
  include Aws::Structure
end