Class: Aws::Keyspaces::Types::CdcSpecificationSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Keyspaces::Types::CdcSpecificationSummary
- Defined in:
- gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb
Overview
The settings of the CDC stream of the table. For more information about CDC streams, see Working with change data capture (CDC) streams in Amazon Keyspaces in the Amazon Keyspaces Developer Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#status ⇒ String
The status of the CDC stream.
-
#view_type ⇒ String
The view type specifies the changes Amazon Keyspaces records for each changed row in the stream.
Instance Attribute Details
#status ⇒ String
The status of the CDC stream. Specifies if the table has a CDC stream.
356 357 358 359 360 361 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 356 class CdcSpecificationSummary < Struct.new( :status, :view_type) SENSITIVE = [] include Aws::Structure end |
#view_type ⇒ String
The view type specifies the changes Amazon Keyspaces records for each changed row in the stream. This setting can't be changed, after the stream has been created.
The options are:
NEW_AND_OLD_IMAGES
- both versions of the row, before and after the change. This is the default.NEW_IMAGE
- the version of the row after the change.OLD_IMAGE
- the version of the row before the change.KEYS_ONLY
- the partition and clustering keys of the row that was changed.
356 357 358 359 360 361 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 356 class CdcSpecificationSummary < Struct.new( :status, :view_type) SENSITIVE = [] include Aws::Structure end |