Class: Aws::Appflow::Types::AggregationConfig

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

Overview

The aggregation settings that you can use to customize the output format of your flow data.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#aggregation_typeString

Specifies whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated.

Returns:

  • (String)


44
45
46
47
48
49
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 44

class AggregationConfig < Struct.new(
  :aggregation_type,
  :target_file_size)
  SENSITIVE = []
  include Aws::Structure
end

#target_file_sizeInteger

The desired file size, in MB, for each output file that Amazon AppFlow writes to the flow destination. For each file, Amazon AppFlow attempts to achieve the size that you specify. The actual file sizes might differ from this target based on the number and size of the records that each file contains.

Returns:

  • (Integer)


44
45
46
47
48
49
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 44

class AggregationConfig < Struct.new(
  :aggregation_type,
  :target_file_size)
  SENSITIVE = []
  include Aws::Structure
end