aws-sdk-lambdapreview 1.21.0 → 1.22.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 58f5fb196b37f5821eca12f3929d9efec0801b2ff62fcf1c51fb0e4617e46cb0
4
- data.tar.gz: ecd6772b6389295bcab0502664aba79a1d95ee32d8a3bc672feacbb59bfe52c7
3
+ metadata.gz: b5e05f5f948656d4eb65a31601feed2ede1c2a36facce0eddf6050292ad0b338
4
+ data.tar.gz: 9005875bcdb23aacf221346d2bc8b013afc9b4d5da1febebae358c215c5cc502
5
5
  SHA512:
6
- metadata.gz: 7d1b93f56118dd29c2b38b218bb66340d11ecc909c1414993eef1d23a964224b08ee4386017816aad171904a0cdc4873c29c1742cc8cfc4ba67a98fd49020d7b
7
- data.tar.gz: b185ea34605ee5a330ebd95516fafb53e8bc7ba888f169aef5a5f391bf05e9869eb6671e9e96193098d873deb262150d3e24667af2e210100d7e420ff0312781
6
+ metadata.gz: 4f588cf2a0e2e2770091304e8ce2ddebcd840181b361c1c2e754fe9da872a7bd6f25bb5d28f75cb6a35034907f8d13d301dcf7e6704ccb887e7151bf106dd81a
7
+ data.tar.gz: 11c3703a146d283d084f652c4f0b79b3cad47fb12b8e31b1918381956cc15f5ffd467356666f49209554d1e5bd929753de1d525569b91766957140b2971dfac3
@@ -44,9 +44,9 @@ require_relative 'aws-sdk-lambdapreview/customizations'
44
44
  #
45
45
  # See {Errors} for more information.
46
46
  #
47
- # @service
47
+ # @!group service
48
48
  module Aws::LambdaPreview
49
49
 
50
- GEM_VERSION = '1.21.0'
50
+ GEM_VERSION = '1.22.0'
51
51
 
52
52
  end
@@ -85,13 +85,28 @@ module Aws::LambdaPreview
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::LambdaPreview
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
@@ -607,7 +622,7 @@ module Aws::LambdaPreview
607
622
  # @option params [required, String] :function_name
608
623
  # The Lambda function name.
609
624
  #
610
- # @option params [required, String, IO] :invoke_args
625
+ # @option params [required, String, StringIO, File] :invoke_args
611
626
  # JSON that you want to provide to your Lambda function as input.
612
627
  #
613
628
  # @return [Types::InvokeAsyncResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
@@ -884,7 +899,7 @@ module Aws::LambdaPreview
884
899
  # ListFunctions API. Function names are used to specify functions to
885
900
  # other AWS Lambda APIs, such as InvokeAsync.
886
901
  #
887
- # @option params [required, String, IO] :function_zip
902
+ # @option params [required, String, StringIO, File] :function_zip
888
903
  # A .zip file containing your packaged source code. For more information
889
904
  # about creating a .zip file, go to [AWS LambdaL How it Works][1] in the
890
905
  # AWS Lambda Developer Guide.
@@ -994,7 +1009,7 @@ module Aws::LambdaPreview
994
1009
  params: params,
995
1010
  config: config)
996
1011
  context[:gem_name] = 'aws-sdk-lambdapreview'
997
- context[:gem_version] = '1.21.0'
1012
+ context[:gem_version] = '1.22.0'
998
1013
  Seahorse::Client::Request.new(handlers, context)
999
1014
  end
1000
1015
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lambdapreview
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.21.0
4
+ version: 1.22.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