aws-sdk-keyspaces 1.41.0 → 1.42.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 99cbe7666181fffd7b1f43f0d6f506ced0935ea926e0cc41c2c8b297942ecab6
4
- data.tar.gz: bbb86ce4fe620a640411cf9b308f13b8d4b849f54cf75e0ab3526b9f78e7e56f
3
+ metadata.gz: 05b4496b84bb831d2d497fb30f686bc1459b94fd7fbeb4c3891a44256bccca68
4
+ data.tar.gz: 8998e06f07b3907d584d87633cb082ad622457e05001f72b1e287ce0ae2f37bf
5
5
  SHA512:
6
- metadata.gz: 0cc026ac2bb481535408fb01cf0604a96518884fb6abcebdd8da7080826774ac1873cdd9d141b75b98eb3c3a211d448e05bc75267d3acf9dd55bcda7130dddd7
7
- data.tar.gz: 36c5bc3b9a27747e7b8f202e44b5d4484b8541369c64f805a995f1375d7f5447116e698b7105c768d070c797df09f82412ca7397bf760f1828815c9a95777ecd
6
+ metadata.gz: 7720b424aef83cf86bc5fbcbd393ee08239da5065a0644c042395188e7acabe7bcf85ead515c8f8d029b66d08b402539a8d7c4ee994fffc721c14f860838f364
7
+ data.tar.gz: f3a85bd20ed64e330bc80202a50b3db5bb799708d4d18477311f3801885c03624b198eef3de8ad1e43bfe9601dd704fd128b7e80d063cbff798a054fe4a0e114
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.42.0 (2025-06-26)
5
+ ------------------
6
+
7
+ * Feature - This release provides change data capture (CDC) streams support through updates to the Amazon Keyspaces API.
8
+
4
9
  1.41.0 (2025-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.41.0
1
+ 1.42.0
@@ -754,6 +754,9 @@ module Aws::Keyspaces
754
754
  # * `readCapacityAutoScaling`: The read capacity auto scaling settings
755
755
  # for the table. (Optional)
756
756
  #
757
+ # @option params [Types::CdcSpecification] :cdc_specification
758
+ # The CDC stream settings of the table.
759
+ #
757
760
  # @return [Types::CreateTableResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
758
761
  #
759
762
  # * {Types::CreateTableResponse#resource_arn #resource_arn} => String
@@ -862,6 +865,17 @@ module Aws::Keyspaces
862
865
  # },
863
866
  # },
864
867
  # ],
868
+ # cdc_specification: {
869
+ # status: "ENABLED", # required, accepts ENABLED, ENABLING, DISABLED, DISABLING
870
+ # view_type: "NEW_IMAGE", # accepts NEW_IMAGE, OLD_IMAGE, KEYS_ONLY, NEW_AND_OLD_IMAGES
871
+ # tags: [
872
+ # {
873
+ # key: "TagKey", # required
874
+ # value: "TagValue", # required
875
+ # },
876
+ # ],
877
+ # propagate_tags: "TABLE", # accepts TABLE, NONE
878
+ # },
865
879
  # })
866
880
  #
867
881
  # @example Response structure
@@ -1116,6 +1130,8 @@ module Aws::Keyspaces
1116
1130
  # * {Types::GetTableResponse#comment #comment} => Types::Comment
1117
1131
  # * {Types::GetTableResponse#client_side_timestamps #client_side_timestamps} => Types::ClientSideTimestamps
1118
1132
  # * {Types::GetTableResponse#replica_specifications #replica_specifications} => Array<Types::ReplicaSpecificationSummary>
1133
+ # * {Types::GetTableResponse#latest_stream_arn #latest_stream_arn} => String
1134
+ # * {Types::GetTableResponse#cdc_specification #cdc_specification} => Types::CdcSpecificationSummary
1119
1135
  #
1120
1136
  # @example Request syntax with placeholder values
1121
1137
  #
@@ -1160,6 +1176,9 @@ module Aws::Keyspaces
1160
1176
  # resp.replica_specifications[0].capacity_specification.read_capacity_units #=> Integer
1161
1177
  # resp.replica_specifications[0].capacity_specification.write_capacity_units #=> Integer
1162
1178
  # resp.replica_specifications[0].capacity_specification.last_update_to_pay_per_request_timestamp #=> Time
1179
+ # resp.latest_stream_arn #=> String
1180
+ # resp.cdc_specification.status #=> String, one of "ENABLED", "ENABLING", "DISABLED", "DISABLING"
1181
+ # resp.cdc_specification.view_type #=> String, one of "NEW_IMAGE", "OLD_IMAGE", "KEYS_ONLY", "NEW_AND_OLD_IMAGES"
1163
1182
  #
1164
1183
  # @see http://docs.aws.amazon.com/goto/WebAPI/keyspaces-2022-02-10/GetTable AWS API Documentation
1165
1184
  #
@@ -2110,6 +2129,9 @@ module Aws::Keyspaces
2110
2129
  # @option params [Array<Types::ReplicaSpecification>] :replica_specifications
2111
2130
  # The Region specific settings of a multi-Regional table.
2112
2131
  #
2132
+ # @option params [Types::CdcSpecification] :cdc_specification
2133
+ # The CDC stream settings of the table.
2134
+ #
2113
2135
  # @return [Types::UpdateTableResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2114
2136
  #
2115
2137
  # * {Types::UpdateTableResponse#resource_arn #resource_arn} => String
@@ -2191,6 +2213,17 @@ module Aws::Keyspaces
2191
2213
  # },
2192
2214
  # },
2193
2215
  # ],
2216
+ # cdc_specification: {
2217
+ # status: "ENABLED", # required, accepts ENABLED, ENABLING, DISABLED, DISABLING
2218
+ # view_type: "NEW_IMAGE", # accepts NEW_IMAGE, OLD_IMAGE, KEYS_ONLY, NEW_AND_OLD_IMAGES
2219
+ # tags: [
2220
+ # {
2221
+ # key: "TagKey", # required
2222
+ # value: "TagValue", # required
2223
+ # },
2224
+ # ],
2225
+ # propagate_tags: "TABLE", # accepts TABLE, NONE
2226
+ # },
2194
2227
  # })
2195
2228
  #
2196
2229
  # @example Response structure
@@ -2224,7 +2257,7 @@ module Aws::Keyspaces
2224
2257
  tracer: tracer
2225
2258
  )
2226
2259
  context[:gem_name] = 'aws-sdk-keyspaces'
2227
- context[:gem_version] = '1.41.0'
2260
+ context[:gem_version] = '1.42.0'
2228
2261
  Seahorse::Client::Request.new(handlers, context)
2229
2262
  end
2230
2263
 
@@ -23,6 +23,10 @@ module Aws::Keyspaces
23
23
  CapacitySpecification = Shapes::StructureShape.new(name: 'CapacitySpecification')
24
24
  CapacitySpecificationSummary = Shapes::StructureShape.new(name: 'CapacitySpecificationSummary')
25
25
  CapacityUnits = Shapes::IntegerShape.new(name: 'CapacityUnits')
26
+ CdcPropagateTags = Shapes::StringShape.new(name: 'CdcPropagateTags')
27
+ CdcSpecification = Shapes::StructureShape.new(name: 'CdcSpecification')
28
+ CdcSpecificationSummary = Shapes::StructureShape.new(name: 'CdcSpecificationSummary')
29
+ CdcStatus = Shapes::StringShape.new(name: 'CdcStatus')
26
30
  ClientSideTimestamps = Shapes::StructureShape.new(name: 'ClientSideTimestamps')
27
31
  ClientSideTimestampsStatus = Shapes::StringShape.new(name: 'ClientSideTimestampsStatus')
28
32
  ClusteringKey = Shapes::StructureShape.new(name: 'ClusteringKey')
@@ -99,6 +103,7 @@ module Aws::Keyspaces
99
103
  SortOrder = Shapes::StringShape.new(name: 'SortOrder')
100
104
  StaticColumn = Shapes::StructureShape.new(name: 'StaticColumn')
101
105
  StaticColumnList = Shapes::ListShape.new(name: 'StaticColumnList')
106
+ StreamArn = Shapes::StringShape.new(name: 'StreamArn')
102
107
  String = Shapes::StringShape.new(name: 'String')
103
108
  TableName = Shapes::StringShape.new(name: 'TableName')
104
109
  TableNameList = Shapes::ListShape.new(name: 'TableNameList')
@@ -127,6 +132,7 @@ module Aws::Keyspaces
127
132
  UpdateTableRequest = Shapes::StructureShape.new(name: 'UpdateTableRequest')
128
133
  UpdateTableResponse = Shapes::StructureShape.new(name: 'UpdateTableResponse')
129
134
  ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
135
+ ViewType = Shapes::StringShape.new(name: 'ViewType')
130
136
  kmsKeyARN = Shapes::StringShape.new(name: 'kmsKeyARN')
131
137
  region = Shapes::StringShape.new(name: 'region')
132
138
  rs = Shapes::StringShape.new(name: 'rs')
@@ -158,6 +164,16 @@ module Aws::Keyspaces
158
164
  CapacitySpecificationSummary.add_member(:last_update_to_pay_per_request_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdateToPayPerRequestTimestamp"))
159
165
  CapacitySpecificationSummary.struct_class = Types::CapacitySpecificationSummary
160
166
 
167
+ CdcSpecification.add_member(:status, Shapes::ShapeRef.new(shape: CdcStatus, required: true, location_name: "status"))
168
+ CdcSpecification.add_member(:view_type, Shapes::ShapeRef.new(shape: ViewType, location_name: "viewType"))
169
+ CdcSpecification.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
170
+ CdcSpecification.add_member(:propagate_tags, Shapes::ShapeRef.new(shape: CdcPropagateTags, location_name: "propagateTags"))
171
+ CdcSpecification.struct_class = Types::CdcSpecification
172
+
173
+ CdcSpecificationSummary.add_member(:status, Shapes::ShapeRef.new(shape: CdcStatus, required: true, location_name: "status"))
174
+ CdcSpecificationSummary.add_member(:view_type, Shapes::ShapeRef.new(shape: ViewType, location_name: "viewType"))
175
+ CdcSpecificationSummary.struct_class = Types::CdcSpecificationSummary
176
+
161
177
  ClientSideTimestamps.add_member(:status, Shapes::ShapeRef.new(shape: ClientSideTimestampsStatus, required: true, location_name: "status"))
162
178
  ClientSideTimestamps.struct_class = Types::ClientSideTimestamps
163
179
 
@@ -200,6 +216,7 @@ module Aws::Keyspaces
200
216
  CreateTableRequest.add_member(:client_side_timestamps, Shapes::ShapeRef.new(shape: ClientSideTimestamps, location_name: "clientSideTimestamps"))
201
217
  CreateTableRequest.add_member(:auto_scaling_specification, Shapes::ShapeRef.new(shape: AutoScalingSpecification, location_name: "autoScalingSpecification"))
202
218
  CreateTableRequest.add_member(:replica_specifications, Shapes::ShapeRef.new(shape: ReplicaSpecificationList, location_name: "replicaSpecifications"))
219
+ CreateTableRequest.add_member(:cdc_specification, Shapes::ShapeRef.new(shape: CdcSpecification, location_name: "cdcSpecification"))
203
220
  CreateTableRequest.struct_class = Types::CreateTableRequest
204
221
 
205
222
  CreateTableResponse.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "resourceArn"))
@@ -282,6 +299,8 @@ module Aws::Keyspaces
282
299
  GetTableResponse.add_member(:comment, Shapes::ShapeRef.new(shape: Comment, location_name: "comment"))
283
300
  GetTableResponse.add_member(:client_side_timestamps, Shapes::ShapeRef.new(shape: ClientSideTimestamps, location_name: "clientSideTimestamps"))
284
301
  GetTableResponse.add_member(:replica_specifications, Shapes::ShapeRef.new(shape: ReplicaSpecificationSummaryList, location_name: "replicaSpecifications"))
302
+ GetTableResponse.add_member(:latest_stream_arn, Shapes::ShapeRef.new(shape: StreamArn, location_name: "latestStreamArn"))
303
+ GetTableResponse.add_member(:cdc_specification, Shapes::ShapeRef.new(shape: CdcSpecificationSummary, location_name: "cdcSpecification"))
285
304
  GetTableResponse.struct_class = Types::GetTableResponse
286
305
 
287
306
  GetTypeRequest.add_member(:keyspace_name, Shapes::ShapeRef.new(shape: KeyspaceName, required: true, location_name: "keyspaceName"))
@@ -481,6 +500,7 @@ module Aws::Keyspaces
481
500
  UpdateTableRequest.add_member(:client_side_timestamps, Shapes::ShapeRef.new(shape: ClientSideTimestamps, location_name: "clientSideTimestamps"))
482
501
  UpdateTableRequest.add_member(:auto_scaling_specification, Shapes::ShapeRef.new(shape: AutoScalingSpecification, location_name: "autoScalingSpecification"))
483
502
  UpdateTableRequest.add_member(:replica_specifications, Shapes::ShapeRef.new(shape: ReplicaSpecificationList, location_name: "replicaSpecifications"))
503
+ UpdateTableRequest.add_member(:cdc_specification, Shapes::ShapeRef.new(shape: CdcSpecification, location_name: "cdcSpecification"))
484
504
  UpdateTableRequest.struct_class = Types::UpdateTableRequest
485
505
 
486
506
  UpdateTableResponse.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "resourceArn"))
@@ -270,6 +270,96 @@ module Aws::Keyspaces
270
270
  include Aws::Structure
271
271
  end
272
272
 
273
+ # The settings for the CDC stream of a table. For more information about
274
+ # CDC streams, see [Working with change data capture (CDC) streams in
275
+ # Amazon Keyspaces][1] in the *Amazon Keyspaces Developer Guide*.
276
+ #
277
+ #
278
+ #
279
+ # [1]: https://docs.aws.amazon.com/keyspaces/latest/devguide/cdc.html
280
+ #
281
+ # @!attribute [rw] status
282
+ # The status of the CDC stream. You can enable or disable a stream for
283
+ # a table.
284
+ # @return [String]
285
+ #
286
+ # @!attribute [rw] view_type
287
+ # The view type specifies the changes Amazon Keyspaces records for
288
+ # each changed row in the stream. After you create the stream, you
289
+ # can't make changes to this selection.
290
+ #
291
+ # The options are:
292
+ #
293
+ # * `NEW_AND_OLD_IMAGES` - both versions of the row, before and after
294
+ # the change. This is the default.
295
+ #
296
+ # * `NEW_IMAGE` - the version of the row after the change.
297
+ #
298
+ # * `OLD_IMAGE` - the version of the row before the change.
299
+ #
300
+ # * `KEYS_ONLY` - the partition and clustering keys of the row that
301
+ # was changed.
302
+ # @return [String]
303
+ #
304
+ # @!attribute [rw] tags
305
+ # The tags (key-value pairs) that you want to apply to the stream.
306
+ # @return [Array<Types::Tag>]
307
+ #
308
+ # @!attribute [rw] propagate_tags
309
+ # Specifies that the stream inherits the tags from the table.
310
+ # @return [String]
311
+ #
312
+ # @see http://docs.aws.amazon.com/goto/WebAPI/keyspaces-2022-02-10/CdcSpecification AWS API Documentation
313
+ #
314
+ class CdcSpecification < Struct.new(
315
+ :status,
316
+ :view_type,
317
+ :tags,
318
+ :propagate_tags)
319
+ SENSITIVE = []
320
+ include Aws::Structure
321
+ end
322
+
323
+ # The settings of the CDC stream of the table. For more information
324
+ # about CDC streams, see [Working with change data capture (CDC) streams
325
+ # in Amazon Keyspaces][1] in the *Amazon Keyspaces Developer Guide*.
326
+ #
327
+ #
328
+ #
329
+ # [1]: https://docs.aws.amazon.com/keyspaces/latest/devguide/cdc.html
330
+ #
331
+ # @!attribute [rw] status
332
+ # The status of the CDC stream. Specifies if the table has a CDC
333
+ # stream.
334
+ # @return [String]
335
+ #
336
+ # @!attribute [rw] view_type
337
+ # The view type specifies the changes Amazon Keyspaces records for
338
+ # each changed row in the stream. This setting can't be changed,
339
+ # after the stream has been created.
340
+ #
341
+ # The options are:
342
+ #
343
+ # * `NEW_AND_OLD_IMAGES` - both versions of the row, before and after
344
+ # the change. This is the default.
345
+ #
346
+ # * `NEW_IMAGE` - the version of the row after the change.
347
+ #
348
+ # * `OLD_IMAGE` - the version of the row before the change.
349
+ #
350
+ # * `KEYS_ONLY` - the partition and clustering keys of the row that
351
+ # was changed.
352
+ # @return [String]
353
+ #
354
+ # @see http://docs.aws.amazon.com/goto/WebAPI/keyspaces-2022-02-10/CdcSpecificationSummary AWS API Documentation
355
+ #
356
+ class CdcSpecificationSummary < Struct.new(
357
+ :status,
358
+ :view_type)
359
+ SENSITIVE = []
360
+ include Aws::Structure
361
+ end
362
+
273
363
  # The client-side timestamp setting of the table.
274
364
  #
275
365
  # For more information, see [How it works: Amazon Keyspaces client-side
@@ -622,6 +712,10 @@ module Aws::Keyspaces
622
712
  # for the table. (Optional)
623
713
  # @return [Array<Types::ReplicaSpecification>]
624
714
  #
715
+ # @!attribute [rw] cdc_specification
716
+ # The CDC stream settings of the table.
717
+ # @return [Types::CdcSpecification]
718
+ #
625
719
  # @see http://docs.aws.amazon.com/goto/WebAPI/keyspaces-2022-02-10/CreateTableRequest AWS API Documentation
626
720
  #
627
721
  class CreateTableRequest < Struct.new(
@@ -637,7 +731,8 @@ module Aws::Keyspaces
637
731
  :tags,
638
732
  :client_side_timestamps,
639
733
  :auto_scaling_specification,
640
- :replica_specifications)
734
+ :replica_specifications,
735
+ :cdc_specification)
641
736
  SENSITIVE = []
642
737
  include Aws::Structure
643
738
  end
@@ -1044,6 +1139,14 @@ module Aws::Keyspaces
1044
1139
  # Regions a multi-Region table is replicated in.
1045
1140
  # @return [Array<Types::ReplicaSpecificationSummary>]
1046
1141
  #
1142
+ # @!attribute [rw] latest_stream_arn
1143
+ # The Amazon Resource Name (ARN) of the stream.
1144
+ # @return [String]
1145
+ #
1146
+ # @!attribute [rw] cdc_specification
1147
+ # The CDC stream settings of the table.
1148
+ # @return [Types::CdcSpecificationSummary]
1149
+ #
1047
1150
  # @see http://docs.aws.amazon.com/goto/WebAPI/keyspaces-2022-02-10/GetTableResponse AWS API Documentation
1048
1151
  #
1049
1152
  class GetTableResponse < Struct.new(
@@ -1060,7 +1163,9 @@ module Aws::Keyspaces
1060
1163
  :default_time_to_live,
1061
1164
  :comment,
1062
1165
  :client_side_timestamps,
1063
- :replica_specifications)
1166
+ :replica_specifications,
1167
+ :latest_stream_arn,
1168
+ :cdc_specification)
1064
1169
  SENSITIVE = []
1065
1170
  include Aws::Structure
1066
1171
  end
@@ -2186,6 +2291,10 @@ module Aws::Keyspaces
2186
2291
  # The Region specific settings of a multi-Regional table.
2187
2292
  # @return [Array<Types::ReplicaSpecification>]
2188
2293
  #
2294
+ # @!attribute [rw] cdc_specification
2295
+ # The CDC stream settings of the table.
2296
+ # @return [Types::CdcSpecification]
2297
+ #
2189
2298
  # @see http://docs.aws.amazon.com/goto/WebAPI/keyspaces-2022-02-10/UpdateTableRequest AWS API Documentation
2190
2299
  #
2191
2300
  class UpdateTableRequest < Struct.new(
@@ -2199,7 +2308,8 @@ module Aws::Keyspaces
2199
2308
  :default_time_to_live,
2200
2309
  :client_side_timestamps,
2201
2310
  :auto_scaling_specification,
2202
- :replica_specifications)
2311
+ :replica_specifications,
2312
+ :cdc_specification)
2203
2313
  SENSITIVE = []
2204
2314
  include Aws::Structure
2205
2315
  end
@@ -55,7 +55,7 @@ module Aws::Keyspaces
55
55
  autoload :EndpointProvider, 'aws-sdk-keyspaces/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-keyspaces/endpoints'
57
57
 
58
- GEM_VERSION = '1.41.0'
58
+ GEM_VERSION = '1.42.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -204,7 +204,18 @@ module Aws
204
204
  }?
205
205
  }?
206
206
  },
207
- ]
207
+ ],
208
+ ?cdc_specification: {
209
+ status: ("ENABLED" | "ENABLING" | "DISABLED" | "DISABLING"),
210
+ view_type: ("NEW_IMAGE" | "OLD_IMAGE" | "KEYS_ONLY" | "NEW_AND_OLD_IMAGES")?,
211
+ tags: Array[
212
+ {
213
+ key: ::String,
214
+ value: ::String
215
+ },
216
+ ]?,
217
+ propagate_tags: ("TABLE" | "NONE")?
218
+ }
208
219
  ) -> _CreateTableResponseSuccess
209
220
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTableResponseSuccess
210
221
 
@@ -287,6 +298,8 @@ module Aws
287
298
  def comment: () -> Types::Comment
288
299
  def client_side_timestamps: () -> Types::ClientSideTimestamps
289
300
  def replica_specifications: () -> ::Array[Types::ReplicaSpecificationSummary]
301
+ def latest_stream_arn: () -> ::String
302
+ def cdc_specification: () -> Types::CdcSpecificationSummary
290
303
  end
291
304
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Keyspaces/Client.html#get_table-instance_method
292
305
  def get_table: (
@@ -585,7 +598,18 @@ module Aws
585
598
  }?
586
599
  }?
587
600
  },
588
- ]
601
+ ],
602
+ ?cdc_specification: {
603
+ status: ("ENABLED" | "ENABLING" | "DISABLED" | "DISABLING"),
604
+ view_type: ("NEW_IMAGE" | "OLD_IMAGE" | "KEYS_ONLY" | "NEW_AND_OLD_IMAGES")?,
605
+ tags: Array[
606
+ {
607
+ key: ::String,
608
+ value: ::String
609
+ },
610
+ ]?,
611
+ propagate_tags: ("TABLE" | "NONE")?
612
+ }
589
613
  ) -> _UpdateTableResponseSuccess
590
614
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTableResponseSuccess
591
615
  end
data/sig/types.rbs CHANGED
@@ -47,6 +47,20 @@ module Aws::Keyspaces
47
47
  SENSITIVE: []
48
48
  end
49
49
 
50
+ class CdcSpecification
51
+ attr_accessor status: ("ENABLED" | "ENABLING" | "DISABLED" | "DISABLING")
52
+ attr_accessor view_type: ("NEW_IMAGE" | "OLD_IMAGE" | "KEYS_ONLY" | "NEW_AND_OLD_IMAGES")
53
+ attr_accessor tags: ::Array[Types::Tag]
54
+ attr_accessor propagate_tags: ("TABLE" | "NONE")
55
+ SENSITIVE: []
56
+ end
57
+
58
+ class CdcSpecificationSummary
59
+ attr_accessor status: ("ENABLED" | "ENABLING" | "DISABLED" | "DISABLING")
60
+ attr_accessor view_type: ("NEW_IMAGE" | "OLD_IMAGE" | "KEYS_ONLY" | "NEW_AND_OLD_IMAGES")
61
+ SENSITIVE: []
62
+ end
63
+
50
64
  class ClientSideTimestamps
51
65
  attr_accessor status: ("ENABLED")
52
66
  SENSITIVE: []
@@ -100,6 +114,7 @@ module Aws::Keyspaces
100
114
  attr_accessor client_side_timestamps: Types::ClientSideTimestamps
101
115
  attr_accessor auto_scaling_specification: Types::AutoScalingSpecification
102
116
  attr_accessor replica_specifications: ::Array[Types::ReplicaSpecification]
117
+ attr_accessor cdc_specification: Types::CdcSpecification
103
118
  SENSITIVE: []
104
119
  end
105
120
 
@@ -212,6 +227,8 @@ module Aws::Keyspaces
212
227
  attr_accessor comment: Types::Comment
213
228
  attr_accessor client_side_timestamps: Types::ClientSideTimestamps
214
229
  attr_accessor replica_specifications: ::Array[Types::ReplicaSpecificationSummary]
230
+ attr_accessor latest_stream_arn: ::String
231
+ attr_accessor cdc_specification: Types::CdcSpecificationSummary
215
232
  SENSITIVE: []
216
233
  end
217
234
 
@@ -459,6 +476,7 @@ module Aws::Keyspaces
459
476
  attr_accessor client_side_timestamps: Types::ClientSideTimestamps
460
477
  attr_accessor auto_scaling_specification: Types::AutoScalingSpecification
461
478
  attr_accessor replica_specifications: ::Array[Types::ReplicaSpecification]
479
+ attr_accessor cdc_specification: Types::CdcSpecification
462
480
  SENSITIVE: []
463
481
  end
464
482
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-keyspaces
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.41.0
4
+ version: 1.42.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services