Class: Aws::Kinesis::Types::PartitionField

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

Overview

Specifies a single partition field.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#source_nameString

The name of the source column used for partitioning. This column must be of the timestamptz type.

Returns:



2161
2162
2163
2164
2165
2166
# File 'lib/aws-sdk-kinesis/types.rb', line 2161

class PartitionField < Struct.new(
  :transform,
  :source_name)
  SENSITIVE = []
  include Aws::Structure
end

#transformString

The partition transform to apply. The only valid value is TIME_HOUR.

Returns:



2161
2162
2163
2164
2165
2166
# File 'lib/aws-sdk-kinesis/types.rb', line 2161

class PartitionField < Struct.new(
  :transform,
  :source_name)
  SENSITIVE = []
  include Aws::Structure
end