Class: Aws::Appflow::Types::ConnectorOAuthRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::ConnectorOAuthRequest
- Includes:
- Structure
- Defined in:
- 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
-
#auth_code ⇒ String
The code provided by the connector when it has been authenticated via the connected app.
-
#redirect_uri ⇒ String
The URL to which the authentication server redirects the browser after authorization has been granted.
Instance Attribute Details
#auth_code ⇒ String
The code provided by the connector when it has been authenticated via the connected app.
761 762 763 764 765 766 |
# File 'lib/aws-sdk-appflow/types.rb', line 761 class ConnectorOAuthRequest < Struct.new( :auth_code, :redirect_uri) SENSITIVE = [] include Aws::Structure end |
#redirect_uri ⇒ String
The URL to which the authentication server redirects the browser after authorization has been granted.
761 762 763 764 765 766 |
# File 'lib/aws-sdk-appflow/types.rb', line 761 class ConnectorOAuthRequest < Struct.new( :auth_code, :redirect_uri) SENSITIVE = [] include Aws::Structure end |