aws-sdk-dynamodb 1.148.0 → 1.149.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +10 -13
- data/lib/aws-sdk-dynamodb.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 435be107fbcf4d44bb424f39e45923b17340aa6721d4c4bb83dadf36016812db
|
4
|
+
data.tar.gz: 4cf8e4d56449726fe2b90a59e7e61e53497413041ac528436abf5dafdf5f50c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 77245a354cdaa2075e415defa7f17481cb9428482453150c5dd3a547b140768981892e82d008b2edbb342deed8965054f1a54d29ed1c202c25882abcb7b724e0
|
7
|
+
data.tar.gz: 2d2c96bbff1d4da05d50bd9d3645e76104f6c67f5b3727a64e35cffb722e32c29e9c1e20311f945d85f3c54e3ebad5ec3568dca2ac2c30264bf8c76fb19655f2
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.149.0
|
@@ -101,8 +101,8 @@ module Aws::DynamoDB
|
|
101
101
|
# class name or an instance of a plugin class.
|
102
102
|
#
|
103
103
|
# @option options [required, Aws::CredentialProvider] :credentials
|
104
|
-
# Your AWS credentials used for authentication. This can be
|
105
|
-
# following classes:
|
104
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
105
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
106
106
|
#
|
107
107
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
108
108
|
# credentials.
|
@@ -130,8 +130,7 @@ module Aws::DynamoDB
|
|
130
130
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
131
131
|
# from the Cognito Identity service.
|
132
132
|
#
|
133
|
-
# When `:credentials` are not configured directly, the following
|
134
|
-
# locations will be searched for credentials:
|
133
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
135
134
|
#
|
136
135
|
# * `Aws.config[:credentials]`
|
137
136
|
#
|
@@ -145,12 +144,10 @@ module Aws::DynamoDB
|
|
145
144
|
#
|
146
145
|
# * `~/.aws/config`
|
147
146
|
#
|
148
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
149
|
-
#
|
150
|
-
#
|
151
|
-
#
|
152
|
-
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
153
|
-
# to `true`.
|
147
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
148
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
149
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
150
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
154
151
|
#
|
155
152
|
# @option options [required, String] :region
|
156
153
|
# The AWS region to connect to. The configured `:region` is
|
@@ -406,8 +403,8 @@ module Aws::DynamoDB
|
|
406
403
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
407
404
|
#
|
408
405
|
# @option options [Aws::TokenProvider] :token_provider
|
409
|
-
# Your Bearer token used for authentication. This can be
|
410
|
-
# following classes:
|
406
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
407
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
411
408
|
#
|
412
409
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
413
410
|
# tokens.
|
@@ -8674,7 +8671,7 @@ module Aws::DynamoDB
|
|
8674
8671
|
tracer: tracer
|
8675
8672
|
)
|
8676
8673
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
8677
|
-
context[:gem_version] = '1.
|
8674
|
+
context[:gem_version] = '1.149.0'
|
8678
8675
|
Seahorse::Client::Request.new(handlers, context)
|
8679
8676
|
end
|
8680
8677
|
|
data/lib/aws-sdk-dynamodb.rb
CHANGED