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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#source_nameString

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

Returns:

  • (String)


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

#transformString

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

Returns:

  • (String)


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