Class: Aws::KeyspacesStreams::Types::KeyspacesMetadata

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-keyspacesstreams/lib/aws-sdk-keyspacesstreams/types.rb

Overview

Contains metadata information associated with Amazon Keyspaces cells and rows.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#expiration_timeString

The time at which the associated data will expire, based on the time-to-live (TTL) setting.

Returns:

  • (String)


512
513
514
515
516
517
# File 'gems/aws-sdk-keyspacesstreams/lib/aws-sdk-keyspacesstreams/types.rb', line 512

class KeyspacesMetadata < Struct.new(
  :expiration_time,
  :write_time)
  SENSITIVE = []
  include Aws::Structure
end

#write_timeString

The timestamp at which the associated data was written to the database.

Returns:

  • (String)


512
513
514
515
516
517
# File 'gems/aws-sdk-keyspacesstreams/lib/aws-sdk-keyspacesstreams/types.rb', line 512

class KeyspacesMetadata < Struct.new(
  :expiration_time,
  :write_time)
  SENSITIVE = []
  include Aws::Structure
end