interface ConnectorOAuthRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnConnectorProfilePropsMixin.ConnectorOAuthRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnConnectorProfilePropsMixin_ConnectorOAuthRequestProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnConnectorProfilePropsMixin.ConnectorOAuthRequestProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnConnectorProfilePropsMixin.ConnectorOAuthRequestProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnConnectorProfilePropsMixin » 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 { mixins as appflow_mixins } from '@aws-cdk/mixins-preview/aws-appflow';
const connectorOAuthRequestProperty: appflow_mixins.CfnConnectorProfilePropsMixin.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.

.NET
Go
Java
Python
TypeScript