interface PardotConnectorProfileCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppFlow.CfnConnectorProfile.PardotConnectorProfileCredentialsProperty |
Java | software.amazon.awscdk.services.appflow.CfnConnectorProfile.PardotConnectorProfileCredentialsProperty |
Python | aws_cdk.aws_appflow.CfnConnectorProfile.PardotConnectorProfileCredentialsProperty |
TypeScript | @aws-cdk/aws-appflow » CfnConnectorProfile » PardotConnectorProfileCredentialsProperty |
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 pardotConnectorProfileCredentialsProperty: appflow.CfnConnectorProfile.PardotConnectorProfileCredentialsProperty = {
accessToken: 'accessToken',
clientCredentialsArn: 'clientCredentialsArn',
connectorOAuthRequest: {
authCode: 'authCode',
redirectUri: 'redirectUri',
},
refreshToken: 'refreshToken',
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | CfnConnectorProfile.PardotConnectorProfileCredentialsProperty.AccessToken. |
| client | string | CfnConnectorProfile.PardotConnectorProfileCredentialsProperty.ClientCredentialsArn. |
| connector | IResolvable | Connector | CfnConnectorProfile.PardotConnectorProfileCredentialsProperty.ConnectorOAuthRequest. |
| refresh | string | CfnConnectorProfile.PardotConnectorProfileCredentialsProperty.RefreshToken. |
accessToken?
Type:
string
(optional)
CfnConnectorProfile.PardotConnectorProfileCredentialsProperty.AccessToken.
clientCredentialsArn?
Type:
string
(optional)
CfnConnectorProfile.PardotConnectorProfileCredentialsProperty.ClientCredentialsArn.
connectorOAuthRequest?
Type:
IResolvable | Connector
(optional)
CfnConnectorProfile.PardotConnectorProfileCredentialsProperty.ConnectorOAuthRequest.
refreshToken?
Type:
string
(optional)
CfnConnectorProfile.PardotConnectorProfileCredentialsProperty.RefreshToken.

.NET
Java
Python
TypeScript