interface MarketoDestinationPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnFlowPropsMixin.MarketoDestinationPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnFlowPropsMixin_MarketoDestinationPropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnFlowPropsMixin.MarketoDestinationPropertiesProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnFlowPropsMixin.MarketoDestinationPropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnFlowPropsMixin » MarketoDestinationPropertiesProperty |
The properties that Amazon AppFlow applies when you use Marketo as a flow destination.
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 marketoDestinationPropertiesProperty: appflow_mixins.CfnFlowPropsMixin.MarketoDestinationPropertiesProperty = {
errorHandlingConfig: {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
failOnFirstError: false,
},
object: 'object',
};
Properties
| Name | Type | Description |
|---|---|---|
| error | IResolvable | Error | The settings that determine how Amazon AppFlow handles an error when placing data in the destination. |
| object? | string | The object specified in the Marketo flow destination. |
errorHandlingConfig?
Type:
IResolvable | Error
(optional)
The settings that determine how Amazon AppFlow handles an error when placing data in the destination.
For example, this setting would determine if the flow should fail after one insertion error, or continue and attempt to insert every record regardless of the initial failure. ErrorHandlingConfig is a part of the destination connector details.
object?
Type:
string
(optional)
The object specified in the Marketo flow destination.

.NET
Go
Java
Python
TypeScript