aws-sdk-pinpoint 1.86.0 → 1.88.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: 3098ac364beabd2d4622c73b468e9971aae70fab4e0c3c492f547ef92a015b9f
4
- data.tar.gz: 8946875b58790e97e40492b90110899d37b674153e0263e2aa9b52e2873144e4
3
+ metadata.gz: fd20303603451ebab1b6e3a973c59c604d7f3b572c53747d9afc28027401c313
4
+ data.tar.gz: bf4fdc48a3507aa9bf94be15a588a465bacf3da092ed84046029a460ae2a13a4
5
5
  SHA512:
6
- metadata.gz: e2faa751be0da39b0c5c272cbc11005a2aa25b8006cf973372416a7e29c0650825069ddef7cd1f8bd2439ddf7007e132fb9077e46809ee72752067bebb36fc3d
7
- data.tar.gz: de765e782d41bfdd7c4e556f66632d0d6b7e33ef66319fc2d36306a5a47328885dfcbf38a44e47f9496af9dd6f9cb3f6716b07ded53f257efc82e7238fb4765a
6
+ metadata.gz: 6f75067ee2089a57f083babc1202201e3c49a57f4c3ff1afd2e31d27cc226de86c2ad5d4a2b0309460ffba0ca1e986c28487a5a491f270009fccda163915ebfe
7
+ data.tar.gz: e92aa3bb9dd511889fd317f261e43f4461ac8396fcad449b514937270c2bd7b2db1a88f07c4dd46d402ec3144f007c2bc92ac0f70b8e43f2fc9ff17871534696
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.88.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.87.0 (2024-04-09)
10
+ ------------------
11
+
12
+ * Feature - The OrchestrationSendingRoleArn has been added to the email channel and is used to send emails from campaigns or journeys.
13
+
4
14
  1.86.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.86.0
1
+ 1.88.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::Pinpoint
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::Pinpoint
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::Pinpoint
337
346
  # @option options [Aws::Pinpoint::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Pinpoint::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
365
399
  #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
368
402
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
372
405
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
378
- #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -3315,6 +3339,7 @@ module Aws::Pinpoint
3315
3339
  # resp.email_channel_response.messages_per_second #=> Integer
3316
3340
  # resp.email_channel_response.platform #=> String
3317
3341
  # resp.email_channel_response.role_arn #=> String
3342
+ # resp.email_channel_response.orchestration_sending_role_arn #=> String
3318
3343
  # resp.email_channel_response.version #=> Integer
3319
3344
  #
3320
3345
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/DeleteEmailChannel AWS API Documentation
@@ -6144,6 +6169,7 @@ module Aws::Pinpoint
6144
6169
  # resp.email_channel_response.messages_per_second #=> Integer
6145
6170
  # resp.email_channel_response.platform #=> String
6146
6171
  # resp.email_channel_response.role_arn #=> String
6172
+ # resp.email_channel_response.orchestration_sending_role_arn #=> String
6147
6173
  # resp.email_channel_response.version #=> Integer
6148
6174
  #
6149
6175
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/GetEmailChannel AWS API Documentation
@@ -10800,6 +10826,7 @@ module Aws::Pinpoint
10800
10826
  # from_address: "__string", # required
10801
10827
  # identity: "__string", # required
10802
10828
  # role_arn: "__string",
10829
+ # orchestration_sending_role_arn: "__string",
10803
10830
  # },
10804
10831
  # })
10805
10832
  #
@@ -10819,6 +10846,7 @@ module Aws::Pinpoint
10819
10846
  # resp.email_channel_response.messages_per_second #=> Integer
10820
10847
  # resp.email_channel_response.platform #=> String
10821
10848
  # resp.email_channel_response.role_arn #=> String
10849
+ # resp.email_channel_response.orchestration_sending_role_arn #=> String
10822
10850
  # resp.email_channel_response.version #=> Integer
10823
10851
  #
10824
10852
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/UpdateEmailChannel AWS API Documentation
@@ -12854,7 +12882,7 @@ module Aws::Pinpoint
12854
12882
  params: params,
12855
12883
  config: config)
12856
12884
  context[:gem_name] = 'aws-sdk-pinpoint'
12857
- context[:gem_version] = '1.86.0'
12885
+ context[:gem_version] = '1.88.0'
12858
12886
  Seahorse::Client::Request.new(handlers, context)
12859
12887
  end
12860
12888
 
@@ -1375,6 +1375,7 @@ module Aws::Pinpoint
1375
1375
  EmailChannelRequest.add_member(:from_address, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "FromAddress"))
1376
1376
  EmailChannelRequest.add_member(:identity, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "Identity"))
1377
1377
  EmailChannelRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "RoleArn"))
1378
+ EmailChannelRequest.add_member(:orchestration_sending_role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "OrchestrationSendingRoleArn"))
1378
1379
  EmailChannelRequest.struct_class = Types::EmailChannelRequest
1379
1380
 
1380
1381
  EmailChannelResponse.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, location_name: "ApplicationId"))
@@ -1391,6 +1392,7 @@ module Aws::Pinpoint
1391
1392
  EmailChannelResponse.add_member(:messages_per_second, Shapes::ShapeRef.new(shape: __integer, location_name: "MessagesPerSecond"))
1392
1393
  EmailChannelResponse.add_member(:platform, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "Platform"))
1393
1394
  EmailChannelResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "RoleArn"))
1395
+ EmailChannelResponse.add_member(:orchestration_sending_role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "OrchestrationSendingRoleArn"))
1394
1396
  EmailChannelResponse.add_member(:version, Shapes::ShapeRef.new(shape: __integer, location_name: "Version"))
1395
1397
  EmailChannelResponse.struct_class = Types::EmailChannelResponse
1396
1398
 
@@ -4142,6 +4142,11 @@ module Aws::Pinpoint
4142
4142
  # data for the channel.
4143
4143
  # @return [String]
4144
4144
  #
4145
+ # @!attribute [rw] orchestration_sending_role_arn
4146
+ # The ARN of an IAM role for Amazon Pinpoint to use to send email from
4147
+ # your campaigns or journeys through Amazon SES.
4148
+ # @return [String]
4149
+ #
4145
4150
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/EmailChannelRequest AWS API Documentation
4146
4151
  #
4147
4152
  class EmailChannelRequest < Struct.new(
@@ -4149,7 +4154,8 @@ module Aws::Pinpoint
4149
4154
  :enabled,
4150
4155
  :from_address,
4151
4156
  :identity,
4152
- :role_arn)
4157
+ :role_arn,
4158
+ :orchestration_sending_role_arn)
4153
4159
  SENSITIVE = []
4154
4160
  include Aws::Structure
4155
4161
  end
@@ -4230,6 +4236,11 @@ module Aws::Pinpoint
4230
4236
  # channel.
4231
4237
  # @return [String]
4232
4238
  #
4239
+ # @!attribute [rw] orchestration_sending_role_arn
4240
+ # The ARN of an IAM role for Amazon Pinpoint to use to send email from
4241
+ # your campaigns or journeys through Amazon SES.
4242
+ # @return [String]
4243
+ #
4233
4244
  # @!attribute [rw] version
4234
4245
  # The current version of the email channel.
4235
4246
  # @return [Integer]
@@ -4251,6 +4262,7 @@ module Aws::Pinpoint
4251
4262
  :messages_per_second,
4252
4263
  :platform,
4253
4264
  :role_arn,
4265
+ :orchestration_sending_role_arn,
4254
4266
  :version)
4255
4267
  SENSITIVE = []
4256
4268
  include Aws::Structure
@@ -4801,8 +4813,6 @@ module Aws::Pinpoint
4801
4813
  # * THROTTLED - Amazon Pinpoint throttled the operation to send the
4802
4814
  # message to the endpoint.
4803
4815
  #
4804
- # * TIMEOUT - The message couldn't be sent within the timeout period.
4805
- #
4806
4816
  # * UNKNOWN\_FAILURE - An unknown error occurred.
4807
4817
  # @return [String]
4808
4818
  #
@@ -9500,8 +9510,6 @@ module Aws::Pinpoint
9500
9510
  # * THROTTLED - Amazon Pinpoint throttled the operation to send the
9501
9511
  # message to the endpoint address.
9502
9512
  #
9503
- # * TIMEOUT - The message couldn't be sent within the timeout period.
9504
- #
9505
9513
  # * UNKNOWN\_FAILURE - An unknown error occurred.
9506
9514
  # @return [String]
9507
9515
  #
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-pinpoint/customizations'
52
52
  # @!group service
53
53
  module Aws::Pinpoint
54
54
 
55
- GEM_VERSION = '1.86.0'
55
+ GEM_VERSION = '1.88.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -3306,7 +3306,8 @@ module Aws
3306
3306
  enabled: bool?,
3307
3307
  from_address: ::String,
3308
3308
  identity: ::String,
3309
- role_arn: ::String?
3309
+ role_arn: ::String?,
3310
+ orchestration_sending_role_arn: ::String?
3310
3311
  }
3311
3312
  ) -> _UpdateEmailChannelResponseSuccess
3312
3313
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEmailChannelResponseSuccess
data/sig/types.rbs CHANGED
@@ -976,6 +976,7 @@ module Aws::Pinpoint
976
976
  attr_accessor from_address: ::String
977
977
  attr_accessor identity: ::String
978
978
  attr_accessor role_arn: ::String
979
+ attr_accessor orchestration_sending_role_arn: ::String
979
980
  SENSITIVE: []
980
981
  end
981
982
 
@@ -994,6 +995,7 @@ module Aws::Pinpoint
994
995
  attr_accessor messages_per_second: ::Integer
995
996
  attr_accessor platform: ::String
996
997
  attr_accessor role_arn: ::String
998
+ attr_accessor orchestration_sending_role_arn: ::String
997
999
  attr_accessor version: ::Integer
998
1000
  SENSITIVE: []
999
1001
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-pinpoint
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.86.0
4
+ version: 1.88.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: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-25 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.191.0
22
+ version: 3.193.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.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement