aws-sdk-ses 1.28.0 → 1.29.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
- SHA1:
3
- metadata.gz: 6e3693cd16c9d1fc4bccb9e4c27db5ccf69e6a98
4
- data.tar.gz: f419a72aeb58c7b611ba02e776e8efdb3c477e05
2
+ SHA256:
3
+ metadata.gz: cc138c589b91a9959e4f3999b507692e1d27cc9902093ac641e6ba0139397d5a
4
+ data.tar.gz: 960758d49649d80430dd84154e1627cfd9b28a970453e5c58d7d684f14dcba33
5
5
  SHA512:
6
- metadata.gz: 86abeaf046584f440cfea6544d232d6f06100cf833f015669875c47d2a2881d8f8fd1e8b9cdd97955fb40441e84eedf2c262d4a9cd6a9674656a5ca0e5a5b7c0
7
- data.tar.gz: 0b1826a9391ba188c9d541c373dfae8bb92efb681380e7e0ed8815c82c03fa35295fda385690d266ac69a26ec77e04a28bbc7246e267f3c084f5184d41ee0974
6
+ metadata.gz: e8422831e62d163bd1fb20c6763fcd0e5b9ad14360d0f2d021bd29b4ba9cf7939c194f5af3a75b081cdcabc11d44a504c09848312b3f0b2f842350e1af47d553
7
+ data.tar.gz: '069d00f773b5ddf1f9f513e88625583ccb2339ab32185e9a14dfb5cd63ebea129e1eb908b4dcd418832c7c1b704e3408dc8f906a5df3d8820b1354df2473e4d2'
@@ -46,6 +46,6 @@ require_relative 'aws-sdk-ses/customizations'
46
46
  # @service
47
47
  module Aws::SES
48
48
 
49
- GEM_VERSION = '1.28.0'
49
+ GEM_VERSION = '1.29.0'
50
50
 
51
51
  end
@@ -32,11 +32,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:ses)
32
32
  module Aws::SES
33
33
  # An API client for SES. To construct a client, you need to configure a `:region` and `:credentials`.
34
34
  #
35
- # client = Aws::SES::Client.new(
36
- # region: region_name,
37
- # credentials: credentials,
38
- # # ...
39
- # )
35
+ # client = Aws::SES::Client.new(
36
+ # region: region_name,
37
+ # credentials: credentials,
38
+ # # ...
39
+ # )
40
40
  #
41
41
  # For details on configuring region and credentials see
42
42
  # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
@@ -105,7 +105,7 @@ module Aws::SES
105
105
  # @option options [required, String] :region
106
106
  # The AWS region to connect to. The configured `:region` is
107
107
  # used to determine the service `:endpoint`. When not passed,
108
- # a default `:region` is search for in the following locations:
108
+ # a default `:region` is searched for in the following locations:
109
109
  #
110
110
  # * `Aws.config[:region]`
111
111
  # * `ENV['AWS_REGION']`
@@ -161,7 +161,7 @@ module Aws::SES
161
161
  # @option options [String] :endpoint
162
162
  # The client endpoint is normally constructed from the `:region`
163
163
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be avalid HTTP(S) URI.
164
+ # to test endpoints. This should be a valid HTTP(S) URI.
165
165
  #
166
166
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
167
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -229,15 +229,19 @@ module Aws::SES
229
229
  #
230
230
  # @option options [String] :retry_mode ("legacy")
231
231
  # Specifies which retry algorithm to use. Values are:
232
- # * `legacy` - The pre-existing retry behavior. This is default value if
233
- # no retry mode is provided.
234
- # * `standard` - A standardized set of retry rules across the AWS SDKs.
235
- # This includes support for retry quotas, which limit the number of
236
- # unsuccessful retries a client can make.
237
- # * `adaptive` - An experimental retry mode that includes all the
238
- # functionality of `standard` mode along with automatic client side
239
- # throttling. This is a provisional mode that may change behavior
240
- # in the future.
232
+ #
233
+ # * `legacy` - The pre-existing retry behavior. This is default value if
234
+ # no retry mode is provided.
235
+ #
236
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
237
+ # This includes support for retry quotas, which limit the number of
238
+ # unsuccessful retries a client can make.
239
+ #
240
+ # * `adaptive` - An experimental retry mode that includes all the
241
+ # functionality of `standard` mode along with automatic client side
242
+ # throttling. This is a provisional mode that may change behavior
243
+ # in the future.
244
+ #
241
245
  #
242
246
  # @option options [String] :secret_access_key
243
247
  #
@@ -265,8 +269,7 @@ module Aws::SES
265
269
  #
266
270
  # @option options [Integer] :http_read_timeout (60) The default
267
271
  # number of seconds to wait for response data. This value can
268
- # safely be set
269
- # per-request on the session yielded by {#session_for}.
272
+ # safely be set per-request on the session.
270
273
  #
271
274
  # @option options [Float] :http_idle_timeout (5) The number of
272
275
  # seconds a connection is allowed to sit idle before it is
@@ -278,7 +281,7 @@ module Aws::SES
278
281
  # request body. This option has no effect unless the request has
279
282
  # "Expect" header set to "100-continue". Defaults to `nil` which
280
283
  # disables this behaviour. This value can safely be set per
281
- # request on the session yielded by {#session_for}.
284
+ # request on the session.
282
285
  #
283
286
  # @option options [Boolean] :http_wire_trace (false) When `true`,
284
287
  # HTTP debug output will be sent to the `:logger`.
@@ -2032,6 +2035,11 @@ module Aws::SES
2032
2035
  # resp.verification_attributes["Identity"].verification_status #=> String, one of "Pending", "Success", "Failed", "TemporaryFailure", "NotStarted"
2033
2036
  # resp.verification_attributes["Identity"].verification_token #=> String
2034
2037
  #
2038
+ #
2039
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
2040
+ #
2041
+ # * identity_exists
2042
+ #
2035
2043
  # @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityVerificationAttributes AWS API Documentation
2036
2044
  #
2037
2045
  # @overload get_identity_verification_attributes(params = {})
@@ -2259,6 +2267,8 @@ module Aws::SES
2259
2267
  # * {Types::ListCustomVerificationEmailTemplatesResponse#custom_verification_email_templates #custom_verification_email_templates} => Array<Types::CustomVerificationEmailTemplate>
2260
2268
  # * {Types::ListCustomVerificationEmailTemplatesResponse#next_token #next_token} => String
2261
2269
  #
2270
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2271
+ #
2262
2272
  # @example Request syntax with placeholder values
2263
2273
  #
2264
2274
  # resp = client.list_custom_verification_email_templates({
@@ -2308,6 +2318,8 @@ module Aws::SES
2308
2318
  # * {Types::ListIdentitiesResponse#identities #identities} => Array<String>
2309
2319
  # * {Types::ListIdentitiesResponse#next_token #next_token} => String
2310
2320
  #
2321
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2322
+ #
2311
2323
  #
2312
2324
  # @example Example: ListIdentities
2313
2325
  #
@@ -5024,7 +5036,7 @@ module Aws::SES
5024
5036
  params: params,
5025
5037
  config: config)
5026
5038
  context[:gem_name] = 'aws-sdk-ses'
5027
- context[:gem_version] = '1.28.0'
5039
+ context[:gem_version] = '1.29.0'
5028
5040
  Seahorse::Client::Request.new(handlers, context)
5029
5041
  end
5030
5042
 
@@ -5090,9 +5102,9 @@ module Aws::SES
5090
5102
  # The following table lists the valid waiter names, the operations they call,
5091
5103
  # and the default `:delay` and `:max_attempts` values.
5092
5104
  #
5093
- # | waiter_name | params | :delay | :max_attempts |
5094
- # | --------------- | --------------------------------------- | -------- | ------------- |
5095
- # | identity_exists | {#get_identity_verification_attributes} | 3 | 20 |
5105
+ # | waiter_name | params | :delay | :max_attempts |
5106
+ # | --------------- | --------------------------------------------- | -------- | ------------- |
5107
+ # | identity_exists | {Client#get_identity_verification_attributes} | 3 | 20 |
5096
5108
  #
5097
5109
  # @raise [Errors::FailureStateError] Raised when the waiter terminates
5098
5110
  # because the waiter has entered a state that it will not transition
@@ -6,13 +6,7 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::SES
9
- # This class provides a resource oriented interface for SES.
10
- # To create a resource object:
11
- # resource = Aws::SES::Resource.new(region: 'us-west-2')
12
- # You can supply a client object with custom configuration that will be used for all resource operations.
13
- # If you do not pass +:client+, a default client will be constructed.
14
- # client = Aws::SES::Client.new(region: 'us-west-2')
15
- # resource = Aws::SES::Resource.new(client: client)
9
+
16
10
  class Resource
17
11
 
18
12
  # @param options ({})
@@ -8,6 +8,67 @@
8
8
  require 'aws-sdk-core/waiters'
9
9
 
10
10
  module Aws::SES
11
+ # Waiters are utility methods that poll for a particular state to occur
12
+ # on a client. Waiters can fail after a number of attempts at a polling
13
+ # interval defined for the service client.
14
+ #
15
+ # For a list of operations that can be waited for and the
16
+ # client methods called for each operation, see the table below or the
17
+ # {Client#wait_until} field documentation for the {Client}.
18
+ #
19
+ # # Invoking a Waiter
20
+ # To invoke a waiter, call #wait_until on a {Client}. The first parameter
21
+ # is the waiter name, which is specific to the service client and indicates
22
+ # which operation is being waited for. The second parameter is a hash of
23
+ # parameters that are passed to the client method called by the waiter,
24
+ # which varies according to the waiter name.
25
+ #
26
+ # # Wait Failures
27
+ # To catch errors in a waiter, use WaiterFailed,
28
+ # as shown in the following example.
29
+ #
30
+ # rescue rescue Aws::Waiters::Errors::WaiterFailed => error
31
+ # puts "failed waiting for instance running: #{error.message}
32
+ # end
33
+ #
34
+ # # Configuring a Waiter
35
+ # Each waiter has a default polling interval and a maximum number of
36
+ # attempts it will make before returning control to your program.
37
+ # To set these values, use the `max_attempts` and `delay` parameters
38
+ # in your `#wait_until` call.
39
+ # The following example waits for up to 25 seconds, polling every five seconds.
40
+ #
41
+ # client.wait_until(...) do |w|
42
+ # w.max_attempts = 5
43
+ # w.delay = 5
44
+ # end
45
+ #
46
+ # To disable wait failures, set the value of either of these parameters
47
+ # to `nil`.
48
+ #
49
+ # # Extending a Waiter
50
+ # To modify the behavior of waiters, you can register callbacks that are
51
+ # triggered before each polling attempt and before waiting.
52
+ #
53
+ # The following example implements an exponential backoff in a waiter
54
+ # by doubling the amount of time to wait on every attempt.
55
+ #
56
+ # client.wait_until(...) do |w|
57
+ # w.interval = 0 # disable normal sleep
58
+ # w.before_wait do |n, resp|
59
+ # sleep(n ** 2)
60
+ # end
61
+ # end
62
+ #
63
+ # # Available Waiters
64
+ #
65
+ # The following table lists the valid waiter names, the operations they call,
66
+ # and the default `:delay` and `:max_attempts` values.
67
+ #
68
+ # | waiter_name | params | :delay | :max_attempts |
69
+ # | --------------- | --------------------------------------------- | -------- | ------------- |
70
+ # | identity_exists | {Client#get_identity_verification_attributes} | 3 | 20 |
71
+ #
11
72
  module Waiters
12
73
 
13
74
  class IdentityExists
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ses
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.28.0
4
+ version: 1.29.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-03-09 00:00:00.000000000 Z
11
+ date: 2020-05-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -82,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
82
82
  version: '0'
83
83
  requirements: []
84
84
  rubyforge_project:
85
- rubygems_version: 2.5.2.3
85
+ rubygems_version: 2.7.6.2
86
86
  signing_key:
87
87
  specification_version: 4
88
88
  summary: AWS SDK for Ruby - Amazon SES