interface PardotConnectorProfilePropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnConnectorProfilePropsMixin.PardotConnectorProfilePropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnConnectorProfilePropsMixin_PardotConnectorProfilePropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnConnectorProfilePropsMixin.PardotConnectorProfilePropertiesProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnConnectorProfilePropsMixin.PardotConnectorProfilePropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnConnectorProfilePropsMixin » PardotConnectorProfilePropertiesProperty |
The connector-specific profile properties required when using Salesforce Pardot.
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 pardotConnectorProfilePropertiesProperty: appflow_mixins.CfnConnectorProfilePropsMixin.PardotConnectorProfilePropertiesProperty = {
businessUnitId: 'businessUnitId',
instanceUrl: 'instanceUrl',
isSandboxEnvironment: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| business | string | The business unit id of Salesforce Pardot instance. |
| instance | string | The location of the Salesforce Pardot resource. |
| is | boolean | IResolvable | Indicates whether the connector profile applies to a sandbox or production environment. |
businessUnitId?
Type:
string
(optional)
The business unit id of Salesforce Pardot instance.
instanceUrl?
Type:
string
(optional)
The location of the Salesforce Pardot resource.
isSandboxEnvironment?
Type:
boolean | IResolvable
(optional)
Indicates whether the connector profile applies to a sandbox or production environment.

.NET
Go
Java
Python
TypeScript