Class: Aws::Kinesis::Types::PartitionField
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::PartitionField
- Defined in:
- gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb
Overview
Specifies a single partition field.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#source_name ⇒ String
The name of the source column used for partitioning.
-
#transform ⇒ String
The partition transform to apply.
Instance Attribute Details
#source_name ⇒ String
The name of the source column used for partitioning. This column
must be of the timestamptz type.
2161 2162 2163 2164 2165 2166 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 2161 class PartitionField < Struct.new( :transform, :source_name) SENSITIVE = [] include Aws::Structure end |
#transform ⇒ String
The partition transform to apply. The only valid value is
TIME_HOUR.
2161 2162 2163 2164 2165 2166 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 2161 class PartitionField < Struct.new( :transform, :source_name) SENSITIVE = [] include Aws::Structure end |