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:

  • (String)


2135
2136
2137
2138
2139
2140
# File 'lib/aws-sdk-kinesis/types.rb', line 2135

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:

  • (String)


2135
2136
2137
2138
2139
2140
# File 'lib/aws-sdk-kinesis/types.rb', line 2135

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