aws-sdk-dynamodbstreams 1.16.0 → 1.21.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 +5 -5
- data/lib/aws-sdk-dynamodbstreams.rb +9 -4
- data/lib/aws-sdk-dynamodbstreams/client.rb +72 -14
- data/lib/aws-sdk-dynamodbstreams/client_api.rb +2 -0
- data/lib/aws-sdk-dynamodbstreams/customizations.rb +0 -7
- data/lib/aws-sdk-dynamodbstreams/errors.rb +29 -5
- data/lib/aws-sdk-dynamodbstreams/resource.rb +3 -0
- data/lib/aws-sdk-dynamodbstreams/types.rb +24 -0
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 7402702e1bedfdc22d250acb5f5bbbb2770a633027fe09ccf0fed124ef495795
|
|
4
|
+
data.tar.gz: 17f15804ad9cbef80ccd5cb0f2012f57717e4226efbba0058d00f1862942ef0b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e38b8cff73be13d155477ba10670e484daaf36919fe82d674ffb59f3fd83ef3c2af5b8824ac69f472feb1b93fc9915e8a1b14bbfe329044b3ce14b46ec56fe9
|
|
7
|
+
data.tar.gz: 3406148be2d3c9f557ff2fa10a2c661480b2a937dee742a0c00dc61aebef74a745d1031ef8e107c6867f6e2697b903c8deba896498818729adf7aa379c1232dc
|
|
@@ -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,17 +26,20 @@ require_relative 'aws-sdk-dynamodbstreams/customizations'
|
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
|
25
27
|
# structure.
|
|
26
28
|
#
|
|
29
|
+
# dynamo_db_streams = Aws::DynamoDBStreams::Client.new
|
|
30
|
+
# resp = dynamo_db_streams.describe_stream(params)
|
|
31
|
+
#
|
|
27
32
|
# See {Client} for more information.
|
|
28
33
|
#
|
|
29
34
|
# # Errors
|
|
30
35
|
#
|
|
31
|
-
# Errors returned from Amazon DynamoDB Streams
|
|
32
|
-
# extend {Errors::ServiceError}.
|
|
36
|
+
# Errors returned from Amazon DynamoDB Streams are defined in the
|
|
37
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
|
33
38
|
#
|
|
34
39
|
# begin
|
|
35
40
|
# # do stuff
|
|
36
41
|
# rescue Aws::DynamoDBStreams::Errors::ServiceError
|
|
37
|
-
# # rescues all
|
|
42
|
+
# # rescues all Amazon DynamoDB Streams API errors
|
|
38
43
|
# end
|
|
39
44
|
#
|
|
40
45
|
# See {Errors} for more information.
|
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-dynamodbstreams/customizations'
|
|
|
42
47
|
# @service
|
|
43
48
|
module Aws::DynamoDBStreams
|
|
44
49
|
|
|
45
|
-
GEM_VERSION = '1.
|
|
50
|
+
GEM_VERSION = '1.21.0'
|
|
46
51
|
|
|
47
52
|
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,12 +26,25 @@ 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
|
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:dynamodbstreams)
|
|
31
34
|
|
|
32
35
|
module Aws::DynamoDBStreams
|
|
36
|
+
# An API client for DynamoDBStreams. To construct a client, you need to configure a `:region` and `:credentials`.
|
|
37
|
+
#
|
|
38
|
+
# client = Aws::DynamoDBStreams::Client.new(
|
|
39
|
+
# region: region_name,
|
|
40
|
+
# credentials: credentials,
|
|
41
|
+
# # ...
|
|
42
|
+
# )
|
|
43
|
+
#
|
|
44
|
+
# For details on configuring region and credentials see
|
|
45
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
|
46
|
+
#
|
|
47
|
+
# See {#initialize} for a full list of supported configuration options.
|
|
33
48
|
class Client < Seahorse::Client::Base
|
|
34
49
|
|
|
35
50
|
include Aws::ClientStubs
|
|
@@ -57,6 +72,7 @@ module Aws::DynamoDBStreams
|
|
|
57
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
|
58
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
59
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
|
60
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
61
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
|
62
78
|
|
|
@@ -93,7 +109,7 @@ module Aws::DynamoDBStreams
|
|
|
93
109
|
# @option options [required, String] :region
|
|
94
110
|
# The AWS region to connect to. The configured `:region` is
|
|
95
111
|
# used to determine the service `:endpoint`. When not passed,
|
|
96
|
-
# a default `:region` is
|
|
112
|
+
# a default `:region` is searched for in the following locations:
|
|
97
113
|
#
|
|
98
114
|
# * `Aws.config[:region]`
|
|
99
115
|
# * `ENV['AWS_REGION']`
|
|
@@ -108,6 +124,12 @@ module Aws::DynamoDBStreams
|
|
|
108
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
|
109
125
|
# the background every 60 secs (default). Defaults to `false`.
|
|
110
126
|
#
|
|
127
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
|
128
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
|
129
|
+
# until there is sufficent client side capacity to retry the request.
|
|
130
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
|
131
|
+
# not retry instead of sleeping.
|
|
132
|
+
#
|
|
111
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
|
112
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
|
113
135
|
# this client.
|
|
@@ -132,6 +154,10 @@ module Aws::DynamoDBStreams
|
|
|
132
154
|
# When `true`, an attempt is made to coerce request parameters into
|
|
133
155
|
# the required types.
|
|
134
156
|
#
|
|
157
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
|
158
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
159
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
|
160
|
+
#
|
|
135
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
|
136
162
|
# Set to true to disable SDK automatically adding host prefix
|
|
137
163
|
# to default service endpoint when available.
|
|
@@ -139,7 +165,7 @@ module Aws::DynamoDBStreams
|
|
|
139
165
|
# @option options [String] :endpoint
|
|
140
166
|
# The client endpoint is normally constructed from the `:region`
|
|
141
167
|
# option. You should only configure an `:endpoint` when connecting
|
|
142
|
-
# to test endpoints. This should be
|
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
|
143
169
|
#
|
|
144
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
|
145
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
|
@@ -154,7 +180,7 @@ module Aws::DynamoDBStreams
|
|
|
154
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
|
155
181
|
#
|
|
156
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
|
158
184
|
#
|
|
159
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
|
160
186
|
# The log formatter.
|
|
@@ -166,15 +192,29 @@ module Aws::DynamoDBStreams
|
|
|
166
192
|
# The Logger instance to send log messages to. If this option
|
|
167
193
|
# is not set, logging will be disabled.
|
|
168
194
|
#
|
|
195
|
+
# @option options [Integer] :max_attempts (3)
|
|
196
|
+
# An integer representing the maximum number attempts that will be made for
|
|
197
|
+
# a single request, including the initial attempt. For example,
|
|
198
|
+
# setting this value to 5 will result in a request being retried up to
|
|
199
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
|
200
|
+
#
|
|
169
201
|
# @option options [String] :profile ("default")
|
|
170
202
|
# Used when loading credentials from the shared credentials file
|
|
171
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
|
172
204
|
#
|
|
205
|
+
# @option options [Proc] :retry_backoff
|
|
206
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
|
207
|
+
# This option is only used in the `legacy` retry mode.
|
|
208
|
+
#
|
|
173
209
|
# @option options [Float] :retry_base_delay (0.3)
|
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
|
210
|
+
# The base delay in seconds used by the default backoff function. This option
|
|
211
|
+
# is only used in the `legacy` retry mode.
|
|
175
212
|
#
|
|
176
213
|
# @option options [Symbol] :retry_jitter (:none)
|
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
|
214
|
+
# A delay randomiser function used by the default backoff function.
|
|
215
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
|
216
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
|
217
|
+
# in the `legacy` retry mode.
|
|
178
218
|
#
|
|
179
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
|
180
220
|
#
|
|
@@ -182,11 +222,30 @@ module Aws::DynamoDBStreams
|
|
|
182
222
|
# The maximum number of times to retry failed requests. Only
|
|
183
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
|
184
224
|
# are retried. Generally, these are throttling errors, data
|
|
185
|
-
# checksum errors, networking errors, timeout errors
|
|
186
|
-
# errors from expired credentials.
|
|
225
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
|
226
|
+
# endpoint discovery, and errors from expired credentials.
|
|
227
|
+
# This option is only used in the `legacy` retry mode.
|
|
187
228
|
#
|
|
188
229
|
# @option options [Integer] :retry_max_delay (0)
|
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
|
230
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
|
231
|
+
# used by the default backoff function. This option is only used in the
|
|
232
|
+
# `legacy` retry mode.
|
|
233
|
+
#
|
|
234
|
+
# @option options [String] :retry_mode ("legacy")
|
|
235
|
+
# Specifies which retry algorithm to use. Values are:
|
|
236
|
+
#
|
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
|
238
|
+
# no retry mode is provided.
|
|
239
|
+
#
|
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
|
242
|
+
# unsuccessful retries a client can make.
|
|
243
|
+
#
|
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
|
247
|
+
# in the future.
|
|
248
|
+
#
|
|
190
249
|
#
|
|
191
250
|
# @option options [String] :secret_access_key
|
|
192
251
|
#
|
|
@@ -219,16 +278,15 @@ module Aws::DynamoDBStreams
|
|
|
219
278
|
# requests through. Formatted like 'http://proxy.com:123'.
|
|
220
279
|
#
|
|
221
280
|
# @option options [Float] :http_open_timeout (15) The number of
|
|
222
|
-
# seconds to wait when opening a HTTP session before
|
|
281
|
+
# seconds to wait when opening a HTTP session before raising a
|
|
223
282
|
# `Timeout::Error`.
|
|
224
283
|
#
|
|
225
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
|
226
285
|
# number of seconds to wait for response data. This value can
|
|
227
|
-
# safely be set
|
|
228
|
-
# per-request on the session yeidled by {#session_for}.
|
|
286
|
+
# safely be set per-request on the session.
|
|
229
287
|
#
|
|
230
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
|
231
|
-
# seconds a connection is allowed to sit
|
|
289
|
+
# seconds a connection is allowed to sit idle before it is
|
|
232
290
|
# considered stale. Stale connections are closed and removed
|
|
233
291
|
# from the pool before making a request.
|
|
234
292
|
#
|
|
@@ -237,7 +295,7 @@ module Aws::DynamoDBStreams
|
|
|
237
295
|
# request body. This option has no effect unless the request has
|
|
238
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
|
239
297
|
# disables this behaviour. This value can safely be set per
|
|
240
|
-
# request on the session
|
|
298
|
+
# request on the session.
|
|
241
299
|
#
|
|
242
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
|
243
301
|
# HTTP debug output will be sent to the `:logger`.
|
|
@@ -714,7 +772,7 @@ module Aws::DynamoDBStreams
|
|
|
714
772
|
params: params,
|
|
715
773
|
config: config)
|
|
716
774
|
context[:gem_name] = 'aws-sdk-dynamodbstreams'
|
|
717
|
-
context[:gem_version] = '1.
|
|
775
|
+
context[:gem_version] = '1.21.0'
|
|
718
776
|
Seahorse::Client::Request.new(handlers, context)
|
|
719
777
|
end
|
|
720
778
|
|
|
@@ -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:
|
|
@@ -6,6 +8,33 @@
|
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
|
7
9
|
|
|
8
10
|
module Aws::DynamoDBStreams
|
|
11
|
+
|
|
12
|
+
# When DynamoDBStreams returns an error response, the Ruby SDK constructs and raises an error.
|
|
13
|
+
# These errors all extend Aws::DynamoDBStreams::Errors::ServiceError < {Aws::Errors::ServiceError}
|
|
14
|
+
#
|
|
15
|
+
# You can rescue all DynamoDBStreams errors using ServiceError:
|
|
16
|
+
#
|
|
17
|
+
# begin
|
|
18
|
+
# # do stuff
|
|
19
|
+
# rescue Aws::DynamoDBStreams::Errors::ServiceError
|
|
20
|
+
# # rescues all DynamoDBStreams API errors
|
|
21
|
+
# end
|
|
22
|
+
#
|
|
23
|
+
#
|
|
24
|
+
# ## Request Context
|
|
25
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
|
26
|
+
# information about the request that generated the error.
|
|
27
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
|
28
|
+
#
|
|
29
|
+
# ## Error Classes
|
|
30
|
+
# * {ExpiredIteratorException}
|
|
31
|
+
# * {InternalServerError}
|
|
32
|
+
# * {LimitExceededException}
|
|
33
|
+
# * {ResourceNotFoundException}
|
|
34
|
+
# * {TrimmedDataAccessException}
|
|
35
|
+
#
|
|
36
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
|
37
|
+
# if they are not defined above.
|
|
9
38
|
module Errors
|
|
10
39
|
|
|
11
40
|
extend Aws::Errors::DynamicErrors
|
|
@@ -23,7 +52,6 @@ module Aws::DynamoDBStreams
|
|
|
23
52
|
def message
|
|
24
53
|
@message || @data[:message]
|
|
25
54
|
end
|
|
26
|
-
|
|
27
55
|
end
|
|
28
56
|
|
|
29
57
|
class InternalServerError < ServiceError
|
|
@@ -39,7 +67,6 @@ module Aws::DynamoDBStreams
|
|
|
39
67
|
def message
|
|
40
68
|
@message || @data[:message]
|
|
41
69
|
end
|
|
42
|
-
|
|
43
70
|
end
|
|
44
71
|
|
|
45
72
|
class LimitExceededException < ServiceError
|
|
@@ -55,7 +82,6 @@ module Aws::DynamoDBStreams
|
|
|
55
82
|
def message
|
|
56
83
|
@message || @data[:message]
|
|
57
84
|
end
|
|
58
|
-
|
|
59
85
|
end
|
|
60
86
|
|
|
61
87
|
class ResourceNotFoundException < ServiceError
|
|
@@ -71,7 +97,6 @@ module Aws::DynamoDBStreams
|
|
|
71
97
|
def message
|
|
72
98
|
@message || @data[:message]
|
|
73
99
|
end
|
|
74
|
-
|
|
75
100
|
end
|
|
76
101
|
|
|
77
102
|
class TrimmedDataAccessException < ServiceError
|
|
@@ -87,7 +112,6 @@ module Aws::DynamoDBStreams
|
|
|
87
112
|
def message
|
|
88
113
|
@message || @data[:message]
|
|
89
114
|
end
|
|
90
|
-
|
|
91
115
|
end
|
|
92
116
|
|
|
93
117
|
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:
|
|
@@ -6,6 +8,7 @@
|
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
|
7
9
|
|
|
8
10
|
module Aws::DynamoDBStreams
|
|
11
|
+
|
|
9
12
|
class Resource
|
|
10
13
|
|
|
11
14
|
# @param options ({})
|
|
@@ -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:
|
|
@@ -70,6 +72,7 @@ module Aws::DynamoDBStreams
|
|
|
70
72
|
:l,
|
|
71
73
|
:null,
|
|
72
74
|
:bool)
|
|
75
|
+
SENSITIVE = []
|
|
73
76
|
include Aws::Structure
|
|
74
77
|
end
|
|
75
78
|
|
|
@@ -105,6 +108,7 @@ module Aws::DynamoDBStreams
|
|
|
105
108
|
:stream_arn,
|
|
106
109
|
:limit,
|
|
107
110
|
:exclusive_start_shard_id)
|
|
111
|
+
SENSITIVE = []
|
|
108
112
|
include Aws::Structure
|
|
109
113
|
end
|
|
110
114
|
|
|
@@ -121,6 +125,7 @@ module Aws::DynamoDBStreams
|
|
|
121
125
|
#
|
|
122
126
|
class DescribeStreamOutput < Struct.new(
|
|
123
127
|
:stream_description)
|
|
128
|
+
SENSITIVE = []
|
|
124
129
|
include Aws::Structure
|
|
125
130
|
end
|
|
126
131
|
|
|
@@ -136,6 +141,7 @@ module Aws::DynamoDBStreams
|
|
|
136
141
|
#
|
|
137
142
|
class ExpiredIteratorException < Struct.new(
|
|
138
143
|
:message)
|
|
144
|
+
SENSITIVE = []
|
|
139
145
|
include Aws::Structure
|
|
140
146
|
end
|
|
141
147
|
|
|
@@ -165,6 +171,7 @@ module Aws::DynamoDBStreams
|
|
|
165
171
|
class GetRecordsInput < Struct.new(
|
|
166
172
|
:shard_iterator,
|
|
167
173
|
:limit)
|
|
174
|
+
SENSITIVE = []
|
|
168
175
|
include Aws::Structure
|
|
169
176
|
end
|
|
170
177
|
|
|
@@ -186,6 +193,7 @@ module Aws::DynamoDBStreams
|
|
|
186
193
|
class GetRecordsOutput < Struct.new(
|
|
187
194
|
:records,
|
|
188
195
|
:next_shard_iterator)
|
|
196
|
+
SENSITIVE = []
|
|
189
197
|
include Aws::Structure
|
|
190
198
|
end
|
|
191
199
|
|
|
@@ -243,6 +251,7 @@ module Aws::DynamoDBStreams
|
|
|
243
251
|
:shard_id,
|
|
244
252
|
:shard_iterator_type,
|
|
245
253
|
:sequence_number)
|
|
254
|
+
SENSITIVE = []
|
|
246
255
|
include Aws::Structure
|
|
247
256
|
end
|
|
248
257
|
|
|
@@ -258,6 +267,7 @@ module Aws::DynamoDBStreams
|
|
|
258
267
|
#
|
|
259
268
|
class GetShardIteratorOutput < Struct.new(
|
|
260
269
|
:shard_iterator)
|
|
270
|
+
SENSITIVE = []
|
|
261
271
|
include Aws::Structure
|
|
262
272
|
end
|
|
263
273
|
|
|
@@ -277,6 +287,7 @@ module Aws::DynamoDBStreams
|
|
|
277
287
|
class Identity < Struct.new(
|
|
278
288
|
:principal_id,
|
|
279
289
|
:type)
|
|
290
|
+
SENSITIVE = []
|
|
280
291
|
include Aws::Structure
|
|
281
292
|
end
|
|
282
293
|
|
|
@@ -291,6 +302,7 @@ module Aws::DynamoDBStreams
|
|
|
291
302
|
#
|
|
292
303
|
class InternalServerError < Struct.new(
|
|
293
304
|
:message)
|
|
305
|
+
SENSITIVE = []
|
|
294
306
|
include Aws::Structure
|
|
295
307
|
end
|
|
296
308
|
|
|
@@ -330,6 +342,7 @@ module Aws::DynamoDBStreams
|
|
|
330
342
|
class KeySchemaElement < Struct.new(
|
|
331
343
|
:attribute_name,
|
|
332
344
|
:key_type)
|
|
345
|
+
SENSITIVE = []
|
|
333
346
|
include Aws::Structure
|
|
334
347
|
end
|
|
335
348
|
|
|
@@ -352,6 +365,7 @@ module Aws::DynamoDBStreams
|
|
|
352
365
|
#
|
|
353
366
|
class LimitExceededException < Struct.new(
|
|
354
367
|
:message)
|
|
368
|
+
SENSITIVE = []
|
|
355
369
|
include Aws::Structure
|
|
356
370
|
end
|
|
357
371
|
|
|
@@ -387,6 +401,7 @@ module Aws::DynamoDBStreams
|
|
|
387
401
|
:table_name,
|
|
388
402
|
:limit,
|
|
389
403
|
:exclusive_start_stream_arn)
|
|
404
|
+
SENSITIVE = []
|
|
390
405
|
include Aws::Structure
|
|
391
406
|
end
|
|
392
407
|
|
|
@@ -417,6 +432,7 @@ module Aws::DynamoDBStreams
|
|
|
417
432
|
class ListStreamsOutput < Struct.new(
|
|
418
433
|
:streams,
|
|
419
434
|
:last_evaluated_stream_arn)
|
|
435
|
+
SENSITIVE = []
|
|
420
436
|
include Aws::Structure
|
|
421
437
|
end
|
|
422
438
|
|
|
@@ -486,6 +502,7 @@ module Aws::DynamoDBStreams
|
|
|
486
502
|
:aws_region,
|
|
487
503
|
:dynamodb,
|
|
488
504
|
:user_identity)
|
|
505
|
+
SENSITIVE = []
|
|
489
506
|
include Aws::Structure
|
|
490
507
|
end
|
|
491
508
|
|
|
@@ -499,6 +516,7 @@ module Aws::DynamoDBStreams
|
|
|
499
516
|
#
|
|
500
517
|
class ResourceNotFoundException < Struct.new(
|
|
501
518
|
:message)
|
|
519
|
+
SENSITIVE = []
|
|
502
520
|
include Aws::Structure
|
|
503
521
|
end
|
|
504
522
|
|
|
@@ -518,6 +536,7 @@ module Aws::DynamoDBStreams
|
|
|
518
536
|
class SequenceNumberRange < Struct.new(
|
|
519
537
|
:starting_sequence_number,
|
|
520
538
|
:ending_sequence_number)
|
|
539
|
+
SENSITIVE = []
|
|
521
540
|
include Aws::Structure
|
|
522
541
|
end
|
|
523
542
|
|
|
@@ -541,6 +560,7 @@ module Aws::DynamoDBStreams
|
|
|
541
560
|
:shard_id,
|
|
542
561
|
:sequence_number_range,
|
|
543
562
|
:parent_shard_id)
|
|
563
|
+
SENSITIVE = []
|
|
544
564
|
include Aws::Structure
|
|
545
565
|
end
|
|
546
566
|
|
|
@@ -575,6 +595,7 @@ module Aws::DynamoDBStreams
|
|
|
575
595
|
:stream_arn,
|
|
576
596
|
:table_name,
|
|
577
597
|
:stream_label)
|
|
598
|
+
SENSITIVE = []
|
|
578
599
|
include Aws::Structure
|
|
579
600
|
end
|
|
580
601
|
|
|
@@ -672,6 +693,7 @@ module Aws::DynamoDBStreams
|
|
|
672
693
|
:key_schema,
|
|
673
694
|
:shards,
|
|
674
695
|
:last_evaluated_shard_id)
|
|
696
|
+
SENSITIVE = []
|
|
675
697
|
include Aws::Structure
|
|
676
698
|
end
|
|
677
699
|
|
|
@@ -735,6 +757,7 @@ module Aws::DynamoDBStreams
|
|
|
735
757
|
:sequence_number,
|
|
736
758
|
:size_bytes,
|
|
737
759
|
:stream_view_type)
|
|
760
|
+
SENSITIVE = []
|
|
738
761
|
include Aws::Structure
|
|
739
762
|
end
|
|
740
763
|
|
|
@@ -762,6 +785,7 @@ module Aws::DynamoDBStreams
|
|
|
762
785
|
#
|
|
763
786
|
class TrimmedDataAccessException < Struct.new(
|
|
764
787
|
:message)
|
|
788
|
+
SENSITIVE = []
|
|
765
789
|
include Aws::Structure
|
|
766
790
|
end
|
|
767
791
|
|
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.21.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:
|
|
11
|
+
date: 2020-06-23 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
|
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
81
81
|
version: '0'
|
|
82
82
|
requirements: []
|
|
83
83
|
rubyforge_project:
|
|
84
|
-
rubygems_version: 2.
|
|
84
|
+
rubygems_version: 2.7.6.2
|
|
85
85
|
signing_key:
|
|
86
86
|
specification_version: 4
|
|
87
87
|
summary: AWS SDK for Ruby - Amazon DynamoDB Streams
|