Class: Aws::Appflow::Types::HoneycodeDestinationProperties

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb

Overview

Note:

When making an API call, you may pass HoneycodeDestinationProperties 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 are applied when Amazon Honeycode is used as a destination.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#error_handling_configTypes::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.


4113
4114
4115
4116
4117
4118
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4113

class HoneycodeDestinationProperties < Struct.new(
  :object,
  :error_handling_config)
  SENSITIVE = []
  include Aws::Structure
end

#objectString

The object specified in the Amazon Honeycode flow destination.

Returns:

  • (String)

4113
4114
4115
4116
4117
4118
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4113

class HoneycodeDestinationProperties < Struct.new(
  :object,
  :error_handling_config)
  SENSITIVE = []
  include Aws::Structure
end