interface ConnectorOperatorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnIntegrationPropsMixin.ConnectorOperatorProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnIntegrationPropsMixin_ConnectorOperatorProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnIntegrationPropsMixin.ConnectorOperatorProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnIntegrationPropsMixin.ConnectorOperatorProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnIntegrationPropsMixin » 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 { mixins as customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const connectorOperatorProperty: customerprofiles_mixins.CfnIntegrationPropsMixin.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