interface ConnectorOAuthRequestProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.AppFlow.CfnConnectorProfile.ConnectorOAuthRequestProperty | 
|  Java | software.amazon.awscdk.services.appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty | 
|  Python | aws_cdk.aws_appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty | 
|  TypeScript | @aws-cdk/aws-appflow»CfnConnectorProfile»ConnectorOAuthRequestProperty | 
Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as appflow from '@aws-cdk/aws-appflow';
const connectorOAuthRequestProperty: appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty = {
  authCode: 'authCode',
  redirectUri: 'redirectUri',
};
Properties
| Name | Type | Description | 
|---|---|---|
| auth | string | The code provided by the connector when it has been authenticated via the connected app. | 
| redirect | string | The URL to which the authentication server redirects the browser after authorization has been granted. | 
authCode?
Type:
string
(optional)
The code provided by the connector when it has been authenticated via the connected app.
redirectUri?
Type:
string
(optional)
The URL to which the authentication server redirects the browser after authorization has been granted.
