Class: Aws::Appflow::Types::ConnectorOAuthRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::ConnectorOAuthRequest
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass ConnectorOAuthRequest data as a hash:
{
auth_code: "AuthCode",
redirect_uri: "RedirectUri",
}
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.
726 727 728 729 730 731 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 726 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.
726 727 728 729 730 731 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 726 class ConnectorOAuthRequest < Struct.new( :auth_code, :redirect_uri) SENSITIVE = [] include Aws::Structure end |