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