aws-sdk-dynamodbstreams 1.23.0 → 1.24.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7b2682c80b22863a7aadb81dc79da9c479cd34d4303598f231c33f1c4f296072
4
- data.tar.gz: 0b5ad61f61fb7f714bd701aa5eb474478553b1882d6d5a7a1b27762d729d8e6e
3
+ metadata.gz: 60b2dd2d9ff626ac1e8729cfa4f738172b561dd9e07cdfb189a59581f549a1c3
4
+ data.tar.gz: bb96b8c2436b4780760364c2493586a02df9ae506b843f436a8481e4f8fb63e6
5
5
  SHA512:
6
- metadata.gz: 9294d1b5827fd3f15322adb6897f65d857ebcc257e576b63fd398b69cf5b0a5b857c4980dc92150d8cea0be5ab67d66375226290a86dde5804b17236b60c36f3
7
- data.tar.gz: 7e989072f69b7863d847be29162b906238223182c31f0ecbb97f880017545580de1d61545e25104ea89d33353ad77714b95cb499f1ddd3ce7dcd103e298b8427
6
+ metadata.gz: 8a2d79b8297ff8ea5d96304d7f966fa5477f136e27089bde75cfdcd79e97898246aa29cc418b6bfdc5f294046723bd5dfeebb064be3ad794a39ab1154fbeedee
7
+ data.tar.gz: f7ba8825ca3ea2c94c4be9ba444310768baf22ef134435f9c8b1085bef3ac05bda8b167c2036f11bfbec13b91f1166bffc74a96be532b639913af8a127806bbd
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-dynamodbstreams/customizations'
48
48
  # @!group service
49
49
  module Aws::DynamoDBStreams
50
50
 
51
- GEM_VERSION = '1.23.0'
51
+ GEM_VERSION = '1.24.0'
52
52
 
53
53
  end
@@ -787,7 +787,7 @@ module Aws::DynamoDBStreams
787
787
  params: params,
788
788
  config: config)
789
789
  context[:gem_name] = 'aws-sdk-dynamodbstreams'
790
- context[:gem_version] = '1.23.0'
790
+ context[:gem_version] = '1.24.0'
791
791
  Seahorse::Client::Request.new(handlers, context)
792
792
  end
793
793
 
@@ -214,6 +214,7 @@ module Aws::DynamoDBStreams
214
214
  "jsonVersion" => "1.0",
215
215
  "protocol" => "json",
216
216
  "serviceFullName" => "Amazon DynamoDB Streams",
217
+ "serviceId" => "DynamoDB Streams",
217
218
  "signatureVersion" => "v4",
218
219
  "signingName" => "dynamodb",
219
220
  "targetPrefix" => "DynamoDBStreams_20120810",
@@ -10,53 +10,86 @@
10
10
  module Aws::DynamoDBStreams
11
11
  module Types
12
12
 
13
- # Represents the data for an attribute. You can set one, and only one,
14
- # of the elements.
13
+ # Represents the data for an attribute.
15
14
  #
16
- # Each attribute in an item is a name-value pair. An attribute can be
17
- # single-valued or multi-valued set. For example, a book item can have
18
- # title and authors attributes. Each book has one title but can have
19
- # many authors. The multi-valued attribute is a set; duplicate values
20
- # are not allowed.
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*.
20
+ #
21
+ #
22
+ #
23
+ # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.NamingRulesDataTypes.html#HowItWorks.DataTypes
21
24
  #
22
25
  # @!attribute [rw] s
23
- # A String data type.
26
+ # An attribute of type String. For example:
27
+ #
28
+ # `"S": "Hello"`
24
29
  # @return [String]
25
30
  #
26
31
  # @!attribute [rw] n
27
- # A Number data type.
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.
28
40
  # @return [String]
29
41
  #
30
42
  # @!attribute [rw] b
31
- # A Binary data type.
43
+ # An attribute of type Binary. For example:
44
+ #
45
+ # `"B": "dGhpcyB0ZXh0IGlzIGJhc2U2NC1lbmNvZGVk"`
32
46
  # @return [String]
33
47
  #
34
48
  # @!attribute [rw] ss
35
- # A String Set data type.
49
+ # An attribute of type String Set. For example:
50
+ #
51
+ # `"SS": ["Giraffe", "Hippo" ,"Zebra"]`
36
52
  # @return [Array<String>]
37
53
  #
38
54
  # @!attribute [rw] ns
39
- # A Number Set data type.
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.
40
63
  # @return [Array<String>]
41
64
  #
42
65
  # @!attribute [rw] bs
43
- # A Binary Set data type.
66
+ # An attribute of type Binary Set. For example:
67
+ #
68
+ # `"BS": ["U3Vubnk=", "UmFpbnk=", "U25vd3k="]`
44
69
  # @return [Array<String>]
45
70
  #
46
71
  # @!attribute [rw] m
47
- # A Map data type.
72
+ # An attribute of type Map. For example:
73
+ #
74
+ # `"M": \{"Name": \{"S": "Joe"\}, "Age": \{"N": "35"\}\}`
48
75
  # @return [Hash<String,Types::AttributeValue>]
49
76
  #
50
77
  # @!attribute [rw] l
51
- # A List data type.
78
+ # An attribute of type List. For example:
79
+ #
80
+ # `"L": [ \{"S": "Cookies"\} , \{"S": "Coffee"\}, \{"N", "3.14159"\}]`
52
81
  # @return [Array<Types::AttributeValue>]
53
82
  #
54
83
  # @!attribute [rw] null
55
- # A Null data type.
84
+ # An attribute of type Null. For example:
85
+ #
86
+ # `"NULL": true`
56
87
  # @return [Boolean]
57
88
  #
58
89
  # @!attribute [rw] bool
59
- # A Boolean data type.
90
+ # An attribute of type Boolean. For example:
91
+ #
92
+ # `"BOOL": true`
60
93
  # @return [Boolean]
61
94
  #
62
95
  # @see http://docs.aws.amazon.com/goto/WebAPI/streams-dynamodb-2012-08-10/AttributeValue AWS API Documentation
@@ -311,30 +344,37 @@ module Aws::DynamoDBStreams
311
344
  # attributes of an index.
312
345
  #
313
346
  # A `KeySchemaElement` represents exactly one attribute of the primary
314
- # key. For example, a simple primary key (partition key) would be
315
- # represented by one `KeySchemaElement`. A composite primary key
316
- # (partition key and sort key) would require one `KeySchemaElement` for
317
- # the partition key, and another `KeySchemaElement` for the sort key.
318
- #
319
- # <note markdown="1"> The partition key of an item is also known as its *hash attribute*.
320
- # The term "hash attribute" derives from DynamoDB's usage of an
321
- # internal hash function to evenly distribute data items across
322
- # partitions, based on their partition key values.
323
- #
324
- # The sort key of an item is also known as its *range attribute*. The
325
- # term "range attribute" derives from the way DynamoDB stores items
326
- # with the same partition key physically close together, in sorted order
327
- # by the sort key value.
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.
328
351
  #
329
- # </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.
330
355
  #
331
356
  # @!attribute [rw] attribute_name
332
357
  # The name of a key attribute.
333
358
  # @return [String]
334
359
  #
335
360
  # @!attribute [rw] key_type
336
- # The attribute data, consisting of the data type and the attribute
337
- # value itself.
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>
338
378
  # @return [String]
339
379
  #
340
380
  # @see http://docs.aws.amazon.com/goto/WebAPI/streams-dynamodb-2012-08-10/KeySchemaElement AWS API Documentation
@@ -346,16 +386,20 @@ module Aws::DynamoDBStreams
346
386
  include Aws::Structure
347
387
  end
348
388
 
349
- # Your request rate is too high. The AWS SDKs for DynamoDB automatically
350
- # retry requests that receive this exception. Your request is eventually
351
- # successful, unless your retry queue is too large to finish. Reduce the
352
- # frequency of requests and use exponential backoff. For more
353
- # information, go to [Error Retries and Exponential Backoff][1] in the
354
- # *Amazon DynamoDB Developer Guide*.
389
+ # There is no limit to the number of daily on-demand backups that can be
390
+ # taken.
355
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`.
356
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.
357
401
  #
358
- # [1]: http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ErrorHandling.html#APIRetries
402
+ # There is a soft account limit of 256 tables.
359
403
  #
360
404
  # @!attribute [rw] message
361
405
  # Too many operations for a given subscriber.
@@ -506,7 +550,9 @@ module Aws::DynamoDBStreams
506
550
  include Aws::Structure
507
551
  end
508
552
 
509
- # The operation tried to access a nonexistent stream.
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`.
510
556
  #
511
557
  # @!attribute [rw] message
512
558
  # The resource which is being requested does not exist.
@@ -524,11 +570,13 @@ module Aws::DynamoDBStreams
524
570
  # contained within a shard.
525
571
  #
526
572
  # @!attribute [rw] starting_sequence_number
527
- # The first sequence number.
573
+ # The first sequence number for the stream records contained within a
574
+ # shard. String contains numeric characters only.
528
575
  # @return [String]
529
576
  #
530
577
  # @!attribute [rw] ending_sequence_number
531
- # The last sequence number.
578
+ # The last sequence number for the stream records contained within a
579
+ # shard. String contains numeric characters only.
532
580
  # @return [String]
533
581
  #
534
582
  # @see http://docs.aws.amazon.com/goto/WebAPI/streams-dynamodb-2012-08-10/SequenceNumberRange AWS API Documentation
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.23.0
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-09-15 00:00:00.000000000 Z
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