Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Class: Aws::DynamoDBStreams::Types::Stream

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

Overview

Represents all of the data describing a particular stream.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#stream_arnString

The Amazon Resource Name (ARN) for the stream.

Returns:

  • (String)

615
616
617
618
619
620
621
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 615

class Stream < Struct.new(
  :stream_arn,
  :table_name,
  :stream_label)
  SENSITIVE = []
  include Aws::Structure
end

#stream_labelString

A timestamp, in ISO 8601 format, for this stream.

Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:

  • the Amazon Web Services customer ID.

  • the table name

  • the StreamLabel

Returns:

  • (String)

615
616
617
618
619
620
621
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 615

class Stream < Struct.new(
  :stream_arn,
  :table_name,
  :stream_label)
  SENSITIVE = []
  include Aws::Structure
end

#table_nameString

The DynamoDB table with which the stream is associated.

Returns:

  • (String)

615
616
617
618
619
620
621
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 615

class Stream < Struct.new(
  :stream_arn,
  :table_name,
  :stream_label)
  SENSITIVE = []
  include Aws::Structure
end