aws-sdk-pinpoint 1.86.0 → 1.87.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-pinpoint/client.rb +5 -1
- data/lib/aws-sdk-pinpoint/client_api.rb +2 -0
- data/lib/aws-sdk-pinpoint/types.rb +13 -5
- data/lib/aws-sdk-pinpoint.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ca258722155cf49ffcec9335fe6ee56440f20a472dbb45d9ee48d63db4056c1
|
4
|
+
data.tar.gz: 40b529fe90361205183cec94f3f4a7df55be0cf1659d8231a13987b6f4f88c3c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa3f49043d3d31a10248a25432fe6f5d8365b24a5d485d794dcbb38e0c4f9c79b882484f92be54314dfe092a44553df4f34c3ac1704ac54a6049eb381e01a02b
|
7
|
+
data.tar.gz: 38f1f0aab7d170a5d6d5637f823407e2aa60eb20675ae372ab9d6d23b0b17e2fb15aa9bd801939aba043bc15341e56c2db86e449b48f676aa44aab9869036b36
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.87.0 (2024-04-09)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - The OrchestrationSendingRoleArn has been added to the email channel and is used to send emails from campaigns or journeys.
|
8
|
+
|
4
9
|
1.86.0 (2024-01-26)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.87.0
|
@@ -3315,6 +3315,7 @@ module Aws::Pinpoint
|
|
3315
3315
|
# resp.email_channel_response.messages_per_second #=> Integer
|
3316
3316
|
# resp.email_channel_response.platform #=> String
|
3317
3317
|
# resp.email_channel_response.role_arn #=> String
|
3318
|
+
# resp.email_channel_response.orchestration_sending_role_arn #=> String
|
3318
3319
|
# resp.email_channel_response.version #=> Integer
|
3319
3320
|
#
|
3320
3321
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/DeleteEmailChannel AWS API Documentation
|
@@ -6144,6 +6145,7 @@ module Aws::Pinpoint
|
|
6144
6145
|
# resp.email_channel_response.messages_per_second #=> Integer
|
6145
6146
|
# resp.email_channel_response.platform #=> String
|
6146
6147
|
# resp.email_channel_response.role_arn #=> String
|
6148
|
+
# resp.email_channel_response.orchestration_sending_role_arn #=> String
|
6147
6149
|
# resp.email_channel_response.version #=> Integer
|
6148
6150
|
#
|
6149
6151
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/GetEmailChannel AWS API Documentation
|
@@ -10800,6 +10802,7 @@ module Aws::Pinpoint
|
|
10800
10802
|
# from_address: "__string", # required
|
10801
10803
|
# identity: "__string", # required
|
10802
10804
|
# role_arn: "__string",
|
10805
|
+
# orchestration_sending_role_arn: "__string",
|
10803
10806
|
# },
|
10804
10807
|
# })
|
10805
10808
|
#
|
@@ -10819,6 +10822,7 @@ module Aws::Pinpoint
|
|
10819
10822
|
# resp.email_channel_response.messages_per_second #=> Integer
|
10820
10823
|
# resp.email_channel_response.platform #=> String
|
10821
10824
|
# resp.email_channel_response.role_arn #=> String
|
10825
|
+
# resp.email_channel_response.orchestration_sending_role_arn #=> String
|
10822
10826
|
# resp.email_channel_response.version #=> Integer
|
10823
10827
|
#
|
10824
10828
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/UpdateEmailChannel AWS API Documentation
|
@@ -12854,7 +12858,7 @@ module Aws::Pinpoint
|
|
12854
12858
|
params: params,
|
12855
12859
|
config: config)
|
12856
12860
|
context[:gem_name] = 'aws-sdk-pinpoint'
|
12857
|
-
context[:gem_version] = '1.
|
12861
|
+
context[:gem_version] = '1.87.0'
|
12858
12862
|
Seahorse::Client::Request.new(handlers, context)
|
12859
12863
|
end
|
12860
12864
|
|
@@ -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
|
#
|
data/lib/aws-sdk-pinpoint.rb
CHANGED
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.
|
4
|
+
version: 1.87.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-
|
11
|
+
date: 2024-04-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|