Class: Aws::Firehose::Types::DynamicPartitioningConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-firehose/types.rb

Overview

The configuration of the dynamic partitioning mechanism that creates smaller data sets from the streaming data by partitioning it based on partition keys. Currently, dynamic partitioning is only supported for Amazon S3 destinations.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enabledBoolean

Specifies that the dynamic partitioning is enabled for this Kinesis Data Firehose delivery stream.

Returns:

  • (Boolean)


1308
1309
1310
1311
1312
1313
# File 'lib/aws-sdk-firehose/types.rb', line 1308

class DynamicPartitioningConfiguration < Struct.new(
  :retry_options,
  :enabled)
  SENSITIVE = []
  include Aws::Structure
end

#retry_optionsTypes::RetryOptions

The retry behavior in case Kinesis Data Firehose is unable to deliver data to an Amazon S3 prefix.

Returns:



1308
1309
1310
1311
1312
1313
# File 'lib/aws-sdk-firehose/types.rb', line 1308

class DynamicPartitioningConfiguration < Struct.new(
  :retry_options,
  :enabled)
  SENSITIVE = []
  include Aws::Structure
end