interface ConnectorOperatorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CustomerProfiles.CfnIntegration.ConnectorOperatorProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnIntegration_ConnectorOperatorProperty |
Java | software.amazon.awscdk.services.customerprofiles.CfnIntegration.ConnectorOperatorProperty |
Python | aws_cdk.aws_customerprofiles.CfnIntegration.ConnectorOperatorProperty |
TypeScript | aws-cdk-lib » aws_customerprofiles » CfnIntegration » ConnectorOperatorProperty |
The operation to be performed on the provided source fields.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_customerprofiles as customerprofiles } from 'aws-cdk-lib';
const connectorOperatorProperty: customerprofiles.CfnIntegration.ConnectorOperatorProperty = {
marketo: 'marketo',
s3: 's3',
salesforce: 'salesforce',
serviceNow: 'serviceNow',
zendesk: 'zendesk',
};
Properties
| Name | Type | Description |
|---|---|---|
| marketo? | string | The operation to be performed on the provided Marketo source fields. |
| s3? | string | The operation to be performed on the provided Amazon S3 source fields. |
| salesforce? | string | The operation to be performed on the provided Salesforce source fields. |
| service | string | The operation to be performed on the provided ServiceNow source fields. |
| zendesk? | string | The operation to be performed on the provided Zendesk source fields. |
marketo?
Type:
string
(optional)
The operation to be performed on the provided Marketo source fields.
s3?
Type:
string
(optional)
The operation to be performed on the provided Amazon S3 source fields.
salesforce?
Type:
string
(optional)
The operation to be performed on the provided Salesforce source fields.
serviceNow?
Type:
string
(optional)
The operation to be performed on the provided ServiceNow source fields.
zendesk?
Type:
string
(optional)
The operation to be performed on the provided Zendesk source fields.

.NET
Go
Java
Python
TypeScript