Class: Aws::Appflow::Types::ConnectorOAuthRequest

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

Overview

Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#auth_codeString

The code provided by the connector when it has been authenticated via the connected app.

Returns:

  • (String)


761
762
763
764
765
766
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 761

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

#redirect_uriString

The URL to which the authentication server redirects the browser after authorization has been granted.

Returns:

  • (String)


761
762
763
764
765
766
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 761

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