aws-sdk-signer 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: d32c28a46f7842d6d512089f2a97526cccb6bdffb1f009181ec7962fc24a31a4
4
- data.tar.gz: de4ae6498718c5e3aaa53b268c0981a0f67f069af25553184fa37284974df9e2
3
+ metadata.gz: 556a9ddcf831862deab368f3b0a17d117f32daacc3a3e72cb3990334f4337e4c
4
+ data.tar.gz: a6d01cb0ef778d12a6a856ebb011817c0d945ce8bb8c24d9a554db7bf7175ceb
5
5
  SHA512:
6
- metadata.gz: b71e6dc1d9b8d485ce938ad2a101f7d7ff59ff2b22540c457c37aeea5dc5941ec6eded514156901d1ab94efa35190ba0731c44708d0013cf9dd3165a1dc0083d
7
- data.tar.gz: 461a760a9660f4d0aba80b0a2e8cb66c2b87adf55dc1433ed2a9363c0e9ed000d5e805104e8bd48b388ff29b84b4a132cab45f16349143619fcf3e6265953bca
6
+ metadata.gz: aaed0d89adb84b97906a7899b2317a7df864c29096980f22814fe25ea1afedb4ff4ce99fed9488bd7125cc6b090a0ac260cff77d27660cfc3dc5ff34e196e6eb
7
+ data.tar.gz: dd4bd188ff248ce5af3e6fda14b204a65927e6b3362e0f899d64da7b2cd0216ab0db7b5b3f6c438c0387b1f6b789041e17329c1ec9a93e4e7eca2129203ae6d9
@@ -45,9 +45,9 @@ require_relative 'aws-sdk-signer/customizations'
45
45
  #
46
46
  # See {Errors} for more information.
47
47
  #
48
- # @service
48
+ # @!group service
49
49
  module Aws::Signer
50
50
 
51
- GEM_VERSION = '1.23.0'
51
+ GEM_VERSION = '1.24.0'
52
52
 
53
53
  end
@@ -85,13 +85,28 @@ module Aws::Signer
85
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
86
86
  # credentials.
87
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
+ #
88
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
89
103
  # from an EC2 IMDS on an EC2 instance.
90
104
  #
91
- # * `Aws::SharedCredentials` - Used for loading credentials from a
92
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
93
107
  #
94
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
95
110
  #
96
111
  # When `:credentials` are not configured directly, the following
97
112
  # locations will be searched for credentials:
@@ -101,10 +116,10 @@ module Aws::Signer
101
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
102
117
  # * `~/.aws/credentials`
103
118
  # * `~/.aws/config`
104
- # * EC2 IMDS instance profile - When used by default, the timeouts are
105
- # very aggressive. Construct and pass an instance of
106
- # `Aws::InstanceProfileCredentails` to enable retries and extended
107
- # 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.
108
123
  #
109
124
  # @option options [required, String] :region
110
125
  # The AWS region to connect to. The configured `:region` is
@@ -956,7 +971,7 @@ module Aws::Signer
956
971
  params: params,
957
972
  config: config)
958
973
  context[:gem_name] = 'aws-sdk-signer'
959
- context[:gem_version] = '1.23.0'
974
+ context[:gem_version] = '1.24.0'
960
975
  Seahorse::Client::Request.new(handlers, context)
961
976
  end
962
977
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-signer
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-06-23 00:00:00.000000000 Z
11
+ date: 2020-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core