Class: Aws::Firehose::Types::HiveJsonSerDe
- Inherits:
-
Struct
- Object
- Struct
- Aws::Firehose::Types::HiveJsonSerDe
- Defined in:
- gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb
Overview
The native Hive / HCatalog JsonSerDe. Used by Firehose for deserializing data, which means converting it from the JSON format in preparation for serializing it to the Parquet or ORC format. This is one of two deserializers you can choose, depending on which one offers the functionality you need. The other option is the OpenX SerDe.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#timestamp_formats ⇒ Array<String>
Indicates how you want Firehose to parse the date and timestamps that may be present in your input data JSON.
Instance Attribute Details
#timestamp_formats ⇒ Array<String>
Indicates how you want Firehose to parse the date and timestamps
that may be present in your input data JSON. To specify these format
strings, follow the pattern syntax of JodaTime's DateTimeFormat
format strings. For more information, see Class DateTimeFormat.
You can also use the special value millis
to parse timestamps in
epoch milliseconds. If you don't specify a format, Firehose uses
java.sql.Timestamp::valueOf
by default.
2472 2473 2474 2475 2476 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 2472 class HiveJsonSerDe < Struct.new( :timestamp_formats) SENSITIVE = [] include Aws::Structure end |