Class: Aws::Appflow::Types::MarketoDestinationProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::MarketoDestinationProperties
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass MarketoDestinationProperties data as a hash:
{
object: "Object", # required
error_handling_config: {
fail_on_first_destination_error: false,
bucket_prefix: "BucketPrefix",
bucket_name: "BucketName",
},
}
The properties that Amazon AppFlow applies when you use Marketo as a flow destination.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_handling_config ⇒ Types::ErrorHandlingConfig
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.
Instance Attribute Details
#error_handling_config ⇒ Types::ErrorHandlingConfig
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.
4564 4565 4566 4567 4568 4569 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4564 class MarketoDestinationProperties < Struct.new( :object, :error_handling_config) SENSITIVE = [] include Aws::Structure end |
#object ⇒ String
The object specified in the Marketo flow destination.
4564 4565 4566 4567 4568 4569 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4564 class MarketoDestinationProperties < Struct.new( :object, :error_handling_config) SENSITIVE = [] include Aws::Structure end |