Interface CfnConnectorProfile.ConnectorOAuthRequestProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConnectorProfile.ConnectorOAuthRequestProperty.Jsii$Proxy
Enclosing class:
CfnConnectorProfile

@Stability(Stable) public static interface CfnConnectorProfile.ConnectorOAuthRequestProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.appflow.*;
 ConnectorOAuthRequestProperty connectorOAuthRequestProperty = ConnectorOAuthRequestProperty.builder()
         .authCode("authCode")
         .redirectUri("redirectUri")
         .build();