interface MarketoConnectorProfileCredentialsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.AppFlow.CfnConnectorProfile.MarketoConnectorProfileCredentialsProperty | 
|  Java | software.amazon.awscdk.services.appflow.CfnConnectorProfile.MarketoConnectorProfileCredentialsProperty | 
|  Python | aws_cdk.aws_appflow.CfnConnectorProfile.MarketoConnectorProfileCredentialsProperty | 
|  TypeScript | @aws-cdk/aws-appflow»CfnConnectorProfile»MarketoConnectorProfileCredentialsProperty | 
The connector-specific profile credentials required by Marketo.
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 marketoConnectorProfileCredentialsProperty: appflow.CfnConnectorProfile.MarketoConnectorProfileCredentialsProperty = {
  clientId: 'clientId',
  clientSecret: 'clientSecret',
  // the properties below are optional
  accessToken: 'accessToken',
  connectorOAuthRequest: {
    authCode: 'authCode',
    redirectUri: 'redirectUri',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| client | string | The identifier for the desired client. | 
| client | string | The client secret used by the OAuth client to authenticate to the authorization server. | 
| access | string | The credentials used to access protected Marketo resources. | 
| connector | IResolvable | Connector | Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack. | 
clientId
Type:
string
The identifier for the desired client.
clientSecret
Type:
string
The client secret used by the OAuth client to authenticate to the authorization server.
accessToken?
Type:
string
(optional)
The credentials used to access protected Marketo resources.
connectorOAuthRequest?
Type:
IResolvable | Connector
(optional)
Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.
