aws-sdk-dynamodbstreams 1.19.0 → 1.24.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 +4 -4
- data/lib/aws-sdk-dynamodbstreams.rb +5 -2
- data/lib/aws-sdk-dynamodbstreams/client.rb +28 -9
- data/lib/aws-sdk-dynamodbstreams/client_api.rb +3 -0
- data/lib/aws-sdk-dynamodbstreams/customizations.rb +0 -7
- data/lib/aws-sdk-dynamodbstreams/errors.rb +2 -0
- data/lib/aws-sdk-dynamodbstreams/resource.rb +2 -0
- data/lib/aws-sdk-dynamodbstreams/types.rb +116 -44
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 60b2dd2d9ff626ac1e8729cfa4f738172b561dd9e07cdfb189a59581f549a1c3
|
|
4
|
+
data.tar.gz: bb96b8c2436b4780760364c2493586a02df9ae506b843f436a8481e4f8fb63e6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8a2d79b8297ff8ea5d96304d7f966fa5477f136e27089bde75cfdcd79e97898246aa29cc418b6bfdc5f294046723bd5dfeebb064be3ad794a39ab1154fbeedee
|
|
7
|
+
data.tar.gz: f7ba8825ca3ea2c94c4be9ba444310768baf22ef134435f9c8b1085bef3ac05bda8b167c2036f11bfbec13b91f1166bffc74a96be532b639913af8a127806bbd
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -5,6 +7,7 @@
|
|
|
5
7
|
#
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
|
7
9
|
|
|
10
|
+
|
|
8
11
|
require 'aws-sdk-core'
|
|
9
12
|
require 'aws-sigv4'
|
|
10
13
|
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-dynamodbstreams/customizations'
|
|
|
42
45
|
#
|
|
43
46
|
# See {Errors} for more information.
|
|
44
47
|
#
|
|
45
|
-
#
|
|
48
|
+
# @!group service
|
|
46
49
|
module Aws::DynamoDBStreams
|
|
47
50
|
|
|
48
|
-
GEM_VERSION = '1.
|
|
51
|
+
GEM_VERSION = '1.24.0'
|
|
49
52
|
|
|
50
53
|
end
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
|
29
32
|
|
|
@@ -69,6 +72,7 @@ module Aws::DynamoDBStreams
|
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
|
74
78
|
|
|
@@ -81,13 +85,28 @@ module Aws::DynamoDBStreams
|
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
|
82
86
|
# credentials.
|
|
83
87
|
#
|
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
|
89
|
+
# shared file, such as `~/.aws/config`.
|
|
90
|
+
#
|
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
|
92
|
+
#
|
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
|
94
|
+
# assume a role after providing credentials via the web.
|
|
95
|
+
#
|
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
|
97
|
+
# access token generated from `aws login`.
|
|
98
|
+
#
|
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
|
100
|
+
# process that outputs to stdout.
|
|
101
|
+
#
|
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
|
86
104
|
#
|
|
87
|
-
# * `Aws::
|
|
88
|
-
#
|
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
|
106
|
+
# instances running in ECS.
|
|
89
107
|
#
|
|
90
|
-
# * `Aws::
|
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
|
109
|
+
# from the Cognito Identity service.
|
|
91
110
|
#
|
|
92
111
|
# When `:credentials` are not configured directly, the following
|
|
93
112
|
# locations will be searched for credentials:
|
|
@@ -97,10 +116,10 @@ module Aws::DynamoDBStreams
|
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
|
98
117
|
# * `~/.aws/credentials`
|
|
99
118
|
# * `~/.aws/config`
|
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
|
101
|
-
# very aggressive. Construct and pass an instance of
|
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
|
103
|
-
# timeouts.
|
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
|
122
|
+
# enable retries and extended timeouts.
|
|
104
123
|
#
|
|
105
124
|
# @option options [required, String] :region
|
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
|
@@ -161,7 +180,7 @@ module Aws::DynamoDBStreams
|
|
|
161
180
|
# @option options [String] :endpoint
|
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
|
165
184
|
#
|
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
|
@@ -768,7 +787,7 @@ module Aws::DynamoDBStreams
|
|
|
768
787
|
params: params,
|
|
769
788
|
config: config)
|
|
770
789
|
context[:gem_name] = 'aws-sdk-dynamodbstreams'
|
|
771
|
-
context[:gem_version] = '1.
|
|
790
|
+
context[:gem_version] = '1.24.0'
|
|
772
791
|
Seahorse::Client::Request.new(handlers, context)
|
|
773
792
|
end
|
|
774
793
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -212,6 +214,7 @@ module Aws::DynamoDBStreams
|
|
|
212
214
|
"jsonVersion" => "1.0",
|
|
213
215
|
"protocol" => "json",
|
|
214
216
|
"serviceFullName" => "Amazon DynamoDB Streams",
|
|
217
|
+
"serviceId" => "DynamoDB Streams",
|
|
215
218
|
"signatureVersion" => "v4",
|
|
216
219
|
"signingName" => "dynamodb",
|
|
217
220
|
"targetPrefix" => "DynamoDBStreams_20120810",
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -8,53 +10,86 @@
|
|
|
8
10
|
module Aws::DynamoDBStreams
|
|
9
11
|
module Types
|
|
10
12
|
|
|
11
|
-
# Represents the data for an attribute.
|
|
12
|
-
#
|
|
13
|
+
# Represents the data for an attribute.
|
|
14
|
+
#
|
|
15
|
+
# Each attribute value is described as a name-value pair. The name is
|
|
16
|
+
# the data type, and the value is the data itself.
|
|
17
|
+
#
|
|
18
|
+
# For more information, see [Data Types][1] in the *Amazon DynamoDB
|
|
19
|
+
# Developer Guide*.
|
|
13
20
|
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
16
|
-
#
|
|
17
|
-
# many authors. The multi-valued attribute is a set; duplicate values
|
|
18
|
-
# are not allowed.
|
|
21
|
+
#
|
|
22
|
+
#
|
|
23
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.NamingRulesDataTypes.html#HowItWorks.DataTypes
|
|
19
24
|
#
|
|
20
25
|
# @!attribute [rw] s
|
|
21
|
-
#
|
|
26
|
+
# An attribute of type String. For example:
|
|
27
|
+
#
|
|
28
|
+
# `"S": "Hello"`
|
|
22
29
|
# @return [String]
|
|
23
30
|
#
|
|
24
31
|
# @!attribute [rw] n
|
|
25
|
-
#
|
|
32
|
+
# An attribute of type Number. For example:
|
|
33
|
+
#
|
|
34
|
+
# `"N": "123.45"`
|
|
35
|
+
#
|
|
36
|
+
# Numbers are sent across the network to DynamoDB as strings, to
|
|
37
|
+
# maximize compatibility across languages and libraries. However,
|
|
38
|
+
# DynamoDB treats them as number type attributes for mathematical
|
|
39
|
+
# operations.
|
|
26
40
|
# @return [String]
|
|
27
41
|
#
|
|
28
42
|
# @!attribute [rw] b
|
|
29
|
-
#
|
|
43
|
+
# An attribute of type Binary. For example:
|
|
44
|
+
#
|
|
45
|
+
# `"B": "dGhpcyB0ZXh0IGlzIGJhc2U2NC1lbmNvZGVk"`
|
|
30
46
|
# @return [String]
|
|
31
47
|
#
|
|
32
48
|
# @!attribute [rw] ss
|
|
33
|
-
#
|
|
49
|
+
# An attribute of type String Set. For example:
|
|
50
|
+
#
|
|
51
|
+
# `"SS": ["Giraffe", "Hippo" ,"Zebra"]`
|
|
34
52
|
# @return [Array<String>]
|
|
35
53
|
#
|
|
36
54
|
# @!attribute [rw] ns
|
|
37
|
-
#
|
|
55
|
+
# An attribute of type Number Set. For example:
|
|
56
|
+
#
|
|
57
|
+
# `"NS": ["42.2", "-19", "7.5", "3.14"]`
|
|
58
|
+
#
|
|
59
|
+
# Numbers are sent across the network to DynamoDB as strings, to
|
|
60
|
+
# maximize compatibility across languages and libraries. However,
|
|
61
|
+
# DynamoDB treats them as number type attributes for mathematical
|
|
62
|
+
# operations.
|
|
38
63
|
# @return [Array<String>]
|
|
39
64
|
#
|
|
40
65
|
# @!attribute [rw] bs
|
|
41
|
-
#
|
|
66
|
+
# An attribute of type Binary Set. For example:
|
|
67
|
+
#
|
|
68
|
+
# `"BS": ["U3Vubnk=", "UmFpbnk=", "U25vd3k="]`
|
|
42
69
|
# @return [Array<String>]
|
|
43
70
|
#
|
|
44
71
|
# @!attribute [rw] m
|
|
45
|
-
#
|
|
72
|
+
# An attribute of type Map. For example:
|
|
73
|
+
#
|
|
74
|
+
# `"M": \{"Name": \{"S": "Joe"\}, "Age": \{"N": "35"\}\}`
|
|
46
75
|
# @return [Hash<String,Types::AttributeValue>]
|
|
47
76
|
#
|
|
48
77
|
# @!attribute [rw] l
|
|
49
|
-
#
|
|
78
|
+
# An attribute of type List. For example:
|
|
79
|
+
#
|
|
80
|
+
# `"L": [ \{"S": "Cookies"\} , \{"S": "Coffee"\}, \{"N", "3.14159"\}]`
|
|
50
81
|
# @return [Array<Types::AttributeValue>]
|
|
51
82
|
#
|
|
52
83
|
# @!attribute [rw] null
|
|
53
|
-
#
|
|
84
|
+
# An attribute of type Null. For example:
|
|
85
|
+
#
|
|
86
|
+
# `"NULL": true`
|
|
54
87
|
# @return [Boolean]
|
|
55
88
|
#
|
|
56
89
|
# @!attribute [rw] bool
|
|
57
|
-
#
|
|
90
|
+
# An attribute of type Boolean. For example:
|
|
91
|
+
#
|
|
92
|
+
# `"BOOL": true`
|
|
58
93
|
# @return [Boolean]
|
|
59
94
|
#
|
|
60
95
|
# @see http://docs.aws.amazon.com/goto/WebAPI/streams-dynamodb-2012-08-10/AttributeValue AWS API Documentation
|
|
@@ -70,6 +105,7 @@ module Aws::DynamoDBStreams
|
|
|
70
105
|
:l,
|
|
71
106
|
:null,
|
|
72
107
|
:bool)
|
|
108
|
+
SENSITIVE = []
|
|
73
109
|
include Aws::Structure
|
|
74
110
|
end
|
|
75
111
|
|
|
@@ -105,6 +141,7 @@ module Aws::DynamoDBStreams
|
|
|
105
141
|
:stream_arn,
|
|
106
142
|
:limit,
|
|
107
143
|
:exclusive_start_shard_id)
|
|
144
|
+
SENSITIVE = []
|
|
108
145
|
include Aws::Structure
|
|
109
146
|
end
|
|
110
147
|
|
|
@@ -121,6 +158,7 @@ module Aws::DynamoDBStreams
|
|
|
121
158
|
#
|
|
122
159
|
class DescribeStreamOutput < Struct.new(
|
|
123
160
|
:stream_description)
|
|
161
|
+
SENSITIVE = []
|
|
124
162
|
include Aws::Structure
|
|
125
163
|
end
|
|
126
164
|
|
|
@@ -136,6 +174,7 @@ module Aws::DynamoDBStreams
|
|
|
136
174
|
#
|
|
137
175
|
class ExpiredIteratorException < Struct.new(
|
|
138
176
|
:message)
|
|
177
|
+
SENSITIVE = []
|
|
139
178
|
include Aws::Structure
|
|
140
179
|
end
|
|
141
180
|
|
|
@@ -165,6 +204,7 @@ module Aws::DynamoDBStreams
|
|
|
165
204
|
class GetRecordsInput < Struct.new(
|
|
166
205
|
:shard_iterator,
|
|
167
206
|
:limit)
|
|
207
|
+
SENSITIVE = []
|
|
168
208
|
include Aws::Structure
|
|
169
209
|
end
|
|
170
210
|
|
|
@@ -186,6 +226,7 @@ module Aws::DynamoDBStreams
|
|
|
186
226
|
class GetRecordsOutput < Struct.new(
|
|
187
227
|
:records,
|
|
188
228
|
:next_shard_iterator)
|
|
229
|
+
SENSITIVE = []
|
|
189
230
|
include Aws::Structure
|
|
190
231
|
end
|
|
191
232
|
|
|
@@ -243,6 +284,7 @@ module Aws::DynamoDBStreams
|
|
|
243
284
|
:shard_id,
|
|
244
285
|
:shard_iterator_type,
|
|
245
286
|
:sequence_number)
|
|
287
|
+
SENSITIVE = []
|
|
246
288
|
include Aws::Structure
|
|
247
289
|
end
|
|
248
290
|
|
|
@@ -258,6 +300,7 @@ module Aws::DynamoDBStreams
|
|
|
258
300
|
#
|
|
259
301
|
class GetShardIteratorOutput < Struct.new(
|
|
260
302
|
:shard_iterator)
|
|
303
|
+
SENSITIVE = []
|
|
261
304
|
include Aws::Structure
|
|
262
305
|
end
|
|
263
306
|
|
|
@@ -277,6 +320,7 @@ module Aws::DynamoDBStreams
|
|
|
277
320
|
class Identity < Struct.new(
|
|
278
321
|
:principal_id,
|
|
279
322
|
:type)
|
|
323
|
+
SENSITIVE = []
|
|
280
324
|
include Aws::Structure
|
|
281
325
|
end
|
|
282
326
|
|
|
@@ -291,6 +335,7 @@ module Aws::DynamoDBStreams
|
|
|
291
335
|
#
|
|
292
336
|
class InternalServerError < Struct.new(
|
|
293
337
|
:message)
|
|
338
|
+
SENSITIVE = []
|
|
294
339
|
include Aws::Structure
|
|
295
340
|
end
|
|
296
341
|
|
|
@@ -299,30 +344,37 @@ module Aws::DynamoDBStreams
|
|
|
299
344
|
# attributes of an index.
|
|
300
345
|
#
|
|
301
346
|
# A `KeySchemaElement` represents exactly one attribute of the primary
|
|
302
|
-
# key. For example, a simple primary key
|
|
303
|
-
#
|
|
304
|
-
#
|
|
305
|
-
#
|
|
306
|
-
#
|
|
307
|
-
# <note markdown="1"> The partition key of an item is also known as its *hash attribute*.
|
|
308
|
-
# The term "hash attribute" derives from DynamoDB's usage of an
|
|
309
|
-
# internal hash function to evenly distribute data items across
|
|
310
|
-
# partitions, based on their partition key values.
|
|
347
|
+
# key. For example, a simple primary key would be represented by one
|
|
348
|
+
# `KeySchemaElement` (for the partition key). A composite primary key
|
|
349
|
+
# would require one `KeySchemaElement` for the partition key, and
|
|
350
|
+
# another `KeySchemaElement` for the sort key.
|
|
311
351
|
#
|
|
312
|
-
#
|
|
313
|
-
#
|
|
314
|
-
#
|
|
315
|
-
# by the sort key value.
|
|
316
|
-
#
|
|
317
|
-
# </note>
|
|
352
|
+
# A `KeySchemaElement` must be a scalar, top-level attribute (not a
|
|
353
|
+
# nested attribute). The data type must be one of String, Number, or
|
|
354
|
+
# Binary. The attribute cannot be nested within a List or a Map.
|
|
318
355
|
#
|
|
319
356
|
# @!attribute [rw] attribute_name
|
|
320
357
|
# The name of a key attribute.
|
|
321
358
|
# @return [String]
|
|
322
359
|
#
|
|
323
360
|
# @!attribute [rw] key_type
|
|
324
|
-
# The
|
|
325
|
-
#
|
|
361
|
+
# The role that this key attribute will assume:
|
|
362
|
+
#
|
|
363
|
+
# * `HASH` - partition key
|
|
364
|
+
#
|
|
365
|
+
# * `RANGE` - sort key
|
|
366
|
+
#
|
|
367
|
+
# <note markdown="1"> The partition key of an item is also known as its *hash attribute*.
|
|
368
|
+
# The term "hash attribute" derives from DynamoDB's usage of an
|
|
369
|
+
# internal hash function to evenly distribute data items across
|
|
370
|
+
# partitions, based on their partition key values.
|
|
371
|
+
#
|
|
372
|
+
# The sort key of an item is also known as its *range attribute*. The
|
|
373
|
+
# term "range attribute" derives from the way DynamoDB stores items
|
|
374
|
+
# with the same partition key physically close together, in sorted
|
|
375
|
+
# order by the sort key value.
|
|
376
|
+
#
|
|
377
|
+
# </note>
|
|
326
378
|
# @return [String]
|
|
327
379
|
#
|
|
328
380
|
# @see http://docs.aws.amazon.com/goto/WebAPI/streams-dynamodb-2012-08-10/KeySchemaElement AWS API Documentation
|
|
@@ -330,19 +382,24 @@ module Aws::DynamoDBStreams
|
|
|
330
382
|
class KeySchemaElement < Struct.new(
|
|
331
383
|
:attribute_name,
|
|
332
384
|
:key_type)
|
|
385
|
+
SENSITIVE = []
|
|
333
386
|
include Aws::Structure
|
|
334
387
|
end
|
|
335
388
|
|
|
336
|
-
#
|
|
337
|
-
#
|
|
338
|
-
# successful, unless your retry queue is too large to finish. Reduce the
|
|
339
|
-
# frequency of requests and use exponential backoff. For more
|
|
340
|
-
# information, go to [Error Retries and Exponential Backoff][1] in the
|
|
341
|
-
# *Amazon DynamoDB Developer Guide*.
|
|
389
|
+
# There is no limit to the number of daily on-demand backups that can be
|
|
390
|
+
# taken.
|
|
342
391
|
#
|
|
392
|
+
# Up to 50 simultaneous table operations are allowed per account. These
|
|
393
|
+
# operations include `CreateTable`, `UpdateTable`,
|
|
394
|
+
# `DeleteTable`,`UpdateTimeToLive`, `RestoreTableFromBackup`, and
|
|
395
|
+
# `RestoreTableToPointInTime`.
|
|
343
396
|
#
|
|
397
|
+
# The only exception is when you are creating a table with one or more
|
|
398
|
+
# secondary indexes. You can have up to 25 such requests running at a
|
|
399
|
+
# time; however, if the table or index specifications are complex,
|
|
400
|
+
# DynamoDB might temporarily reduce the number of concurrent operations.
|
|
344
401
|
#
|
|
345
|
-
#
|
|
402
|
+
# There is a soft account limit of 256 tables.
|
|
346
403
|
#
|
|
347
404
|
# @!attribute [rw] message
|
|
348
405
|
# Too many operations for a given subscriber.
|
|
@@ -352,6 +409,7 @@ module Aws::DynamoDBStreams
|
|
|
352
409
|
#
|
|
353
410
|
class LimitExceededException < Struct.new(
|
|
354
411
|
:message)
|
|
412
|
+
SENSITIVE = []
|
|
355
413
|
include Aws::Structure
|
|
356
414
|
end
|
|
357
415
|
|
|
@@ -387,6 +445,7 @@ module Aws::DynamoDBStreams
|
|
|
387
445
|
:table_name,
|
|
388
446
|
:limit,
|
|
389
447
|
:exclusive_start_stream_arn)
|
|
448
|
+
SENSITIVE = []
|
|
390
449
|
include Aws::Structure
|
|
391
450
|
end
|
|
392
451
|
|
|
@@ -417,6 +476,7 @@ module Aws::DynamoDBStreams
|
|
|
417
476
|
class ListStreamsOutput < Struct.new(
|
|
418
477
|
:streams,
|
|
419
478
|
:last_evaluated_stream_arn)
|
|
479
|
+
SENSITIVE = []
|
|
420
480
|
include Aws::Structure
|
|
421
481
|
end
|
|
422
482
|
|
|
@@ -486,10 +546,13 @@ module Aws::DynamoDBStreams
|
|
|
486
546
|
:aws_region,
|
|
487
547
|
:dynamodb,
|
|
488
548
|
:user_identity)
|
|
549
|
+
SENSITIVE = []
|
|
489
550
|
include Aws::Structure
|
|
490
551
|
end
|
|
491
552
|
|
|
492
|
-
# The operation tried to access a nonexistent
|
|
553
|
+
# The operation tried to access a nonexistent table or index. The
|
|
554
|
+
# resource might not be specified correctly, or its status might not be
|
|
555
|
+
# `ACTIVE`.
|
|
493
556
|
#
|
|
494
557
|
# @!attribute [rw] message
|
|
495
558
|
# The resource which is being requested does not exist.
|
|
@@ -499,6 +562,7 @@ module Aws::DynamoDBStreams
|
|
|
499
562
|
#
|
|
500
563
|
class ResourceNotFoundException < Struct.new(
|
|
501
564
|
:message)
|
|
565
|
+
SENSITIVE = []
|
|
502
566
|
include Aws::Structure
|
|
503
567
|
end
|
|
504
568
|
|
|
@@ -506,11 +570,13 @@ module Aws::DynamoDBStreams
|
|
|
506
570
|
# contained within a shard.
|
|
507
571
|
#
|
|
508
572
|
# @!attribute [rw] starting_sequence_number
|
|
509
|
-
# The first sequence number
|
|
573
|
+
# The first sequence number for the stream records contained within a
|
|
574
|
+
# shard. String contains numeric characters only.
|
|
510
575
|
# @return [String]
|
|
511
576
|
#
|
|
512
577
|
# @!attribute [rw] ending_sequence_number
|
|
513
|
-
# The last sequence number
|
|
578
|
+
# The last sequence number for the stream records contained within a
|
|
579
|
+
# shard. String contains numeric characters only.
|
|
514
580
|
# @return [String]
|
|
515
581
|
#
|
|
516
582
|
# @see http://docs.aws.amazon.com/goto/WebAPI/streams-dynamodb-2012-08-10/SequenceNumberRange AWS API Documentation
|
|
@@ -518,6 +584,7 @@ module Aws::DynamoDBStreams
|
|
|
518
584
|
class SequenceNumberRange < Struct.new(
|
|
519
585
|
:starting_sequence_number,
|
|
520
586
|
:ending_sequence_number)
|
|
587
|
+
SENSITIVE = []
|
|
521
588
|
include Aws::Structure
|
|
522
589
|
end
|
|
523
590
|
|
|
@@ -541,6 +608,7 @@ module Aws::DynamoDBStreams
|
|
|
541
608
|
:shard_id,
|
|
542
609
|
:sequence_number_range,
|
|
543
610
|
:parent_shard_id)
|
|
611
|
+
SENSITIVE = []
|
|
544
612
|
include Aws::Structure
|
|
545
613
|
end
|
|
546
614
|
|
|
@@ -575,6 +643,7 @@ module Aws::DynamoDBStreams
|
|
|
575
643
|
:stream_arn,
|
|
576
644
|
:table_name,
|
|
577
645
|
:stream_label)
|
|
646
|
+
SENSITIVE = []
|
|
578
647
|
include Aws::Structure
|
|
579
648
|
end
|
|
580
649
|
|
|
@@ -672,6 +741,7 @@ module Aws::DynamoDBStreams
|
|
|
672
741
|
:key_schema,
|
|
673
742
|
:shards,
|
|
674
743
|
:last_evaluated_shard_id)
|
|
744
|
+
SENSITIVE = []
|
|
675
745
|
include Aws::Structure
|
|
676
746
|
end
|
|
677
747
|
|
|
@@ -735,6 +805,7 @@ module Aws::DynamoDBStreams
|
|
|
735
805
|
:sequence_number,
|
|
736
806
|
:size_bytes,
|
|
737
807
|
:stream_view_type)
|
|
808
|
+
SENSITIVE = []
|
|
738
809
|
include Aws::Structure
|
|
739
810
|
end
|
|
740
811
|
|
|
@@ -762,6 +833,7 @@ module Aws::DynamoDBStreams
|
|
|
762
833
|
#
|
|
763
834
|
class TrimmedDataAccessException < Struct.new(
|
|
764
835
|
:message)
|
|
836
|
+
SENSITIVE = []
|
|
765
837
|
include Aws::Structure
|
|
766
838
|
end
|
|
767
839
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-dynamodbstreams
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.24.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-09-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
22
|
+
version: 3.99.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
32
|
+
version: 3.99.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|