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