aws-sdk-pinpointemail 1.10.0 → 1.11.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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b6f816dbc6b7ec57075100ed3d492a318dfda9ce
|
4
|
+
data.tar.gz: c2e1a10928ee11a19f46e82ac4d44b8a5eec9148
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cdef13c43fa8bbcbc3e4fae3f09e0f490ea93f45b812f9a858bc5250e9fd640d2e613145b90d3a308337e37ece88d704da3f9ccac77dcabf3facc47fe1509a37
|
7
|
+
data.tar.gz: 6228729e70971c66f8d1052e6c2e32de058a2edac16fc4cc15982c8c30a7f1e4da3acad28273883b9328ccad58047800f9e40932212374d9ad64f899662ab346
|
@@ -291,6 +291,7 @@ module Aws::PinpointEmail
|
|
291
291
|
# custom_redirect_domain: "CustomRedirectDomain", # required
|
292
292
|
# },
|
293
293
|
# delivery_options: {
|
294
|
+
# tls_policy: "REQUIRE", # accepts REQUIRE, OPTIONAL
|
294
295
|
# sending_pool_name: "PoolName",
|
295
296
|
# },
|
296
297
|
# reputation_options: {
|
@@ -764,6 +765,7 @@ module Aws::PinpointEmail
|
|
764
765
|
#
|
765
766
|
# resp.configuration_set_name #=> String
|
766
767
|
# resp.tracking_options.custom_redirect_domain #=> String
|
768
|
+
# resp.delivery_options.tls_policy #=> String, one of "REQUIRE", "OPTIONAL"
|
767
769
|
# resp.delivery_options.sending_pool_name #=> String
|
768
770
|
# resp.reputation_options.reputation_metrics_enabled #=> Boolean
|
769
771
|
# resp.reputation_options.last_fresh_start #=> Time
|
@@ -1537,6 +1539,11 @@ module Aws::PinpointEmail
|
|
1537
1539
|
# The name of the configuration set that you want to associate with a
|
1538
1540
|
# dedicated IP pool.
|
1539
1541
|
#
|
1542
|
+
# @option params [String] :tls_policy
|
1543
|
+
# Whether Amazon Pinpoint should require that incoming email is
|
1544
|
+
# delivered over a connection encrypted with Transport Layer Security
|
1545
|
+
# (TLS).
|
1546
|
+
#
|
1540
1547
|
# @option params [String] :sending_pool_name
|
1541
1548
|
# The name of the dedicated IP pool that you want to associate with the
|
1542
1549
|
# configuration set.
|
@@ -1547,6 +1554,7 @@ module Aws::PinpointEmail
|
|
1547
1554
|
#
|
1548
1555
|
# resp = client.put_configuration_set_delivery_options({
|
1549
1556
|
# configuration_set_name: "ConfigurationSetName", # required
|
1557
|
+
# tls_policy: "REQUIRE", # accepts REQUIRE, OPTIONAL
|
1550
1558
|
# sending_pool_name: "SendingPoolName",
|
1551
1559
|
# })
|
1552
1560
|
#
|
@@ -2148,7 +2156,7 @@ module Aws::PinpointEmail
|
|
2148
2156
|
params: params,
|
2149
2157
|
config: config)
|
2150
2158
|
context[:gem_name] = 'aws-sdk-pinpointemail'
|
2151
|
-
context[:gem_version] = '1.
|
2159
|
+
context[:gem_version] = '1.11.0'
|
2152
2160
|
Seahorse::Client::Request.new(handlers, context)
|
2153
2161
|
end
|
2154
2162
|
|
@@ -210,6 +210,7 @@ module Aws::PinpointEmail
|
|
210
210
|
TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
|
211
211
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
212
212
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
213
|
+
TlsPolicy = Shapes::StringShape.new(name: 'TlsPolicy')
|
213
214
|
TooManyRequestsException = Shapes::StructureShape.new(name: 'TooManyRequestsException')
|
214
215
|
TrackingOptions = Shapes::StructureShape.new(name: 'TrackingOptions')
|
215
216
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
@@ -340,6 +341,7 @@ module Aws::PinpointEmail
|
|
340
341
|
|
341
342
|
DeliverabilityTestReports.member = Shapes::ShapeRef.new(shape: DeliverabilityTestReport)
|
342
343
|
|
344
|
+
DeliveryOptions.add_member(:tls_policy, Shapes::ShapeRef.new(shape: TlsPolicy, location_name: "TlsPolicy"))
|
343
345
|
DeliveryOptions.add_member(:sending_pool_name, Shapes::ShapeRef.new(shape: PoolName, location_name: "SendingPoolName"))
|
344
346
|
DeliveryOptions.struct_class = Types::DeliveryOptions
|
345
347
|
|
@@ -627,6 +629,7 @@ module Aws::PinpointEmail
|
|
627
629
|
PutAccountSendingAttributesResponse.struct_class = Types::PutAccountSendingAttributesResponse
|
628
630
|
|
629
631
|
PutConfigurationSetDeliveryOptionsRequest.add_member(:configuration_set_name, Shapes::ShapeRef.new(shape: ConfigurationSetName, required: true, location: "uri", location_name: "ConfigurationSetName"))
|
632
|
+
PutConfigurationSetDeliveryOptionsRequest.add_member(:tls_policy, Shapes::ShapeRef.new(shape: TlsPolicy, location_name: "TlsPolicy"))
|
630
633
|
PutConfigurationSetDeliveryOptionsRequest.add_member(:sending_pool_name, Shapes::ShapeRef.new(shape: SendingPoolName, location_name: "SendingPoolName"))
|
631
634
|
PutConfigurationSetDeliveryOptionsRequest.struct_class = Types::PutConfigurationSetDeliveryOptionsRequest
|
632
635
|
|
@@ -769,7 +772,6 @@ module Aws::PinpointEmail
|
|
769
772
|
"serviceId" => "Pinpoint Email",
|
770
773
|
"signatureVersion" => "v4",
|
771
774
|
"signingName" => "ses",
|
772
|
-
"targetPrefix" => "com.amazonaws.services.pinpoint.email",
|
773
775
|
"uid" => "pinpoint-email-2018-07-26",
|
774
776
|
}
|
775
777
|
|
@@ -257,6 +257,7 @@ module Aws::PinpointEmail
|
|
257
257
|
# custom_redirect_domain: "CustomRedirectDomain", # required
|
258
258
|
# },
|
259
259
|
# delivery_options: {
|
260
|
+
# tls_policy: "REQUIRE", # accepts REQUIRE, OPTIONAL
|
260
261
|
# sending_pool_name: "PoolName",
|
261
262
|
# },
|
262
263
|
# reputation_options: {
|
@@ -772,9 +773,18 @@ module Aws::PinpointEmail
|
|
772
773
|
# data as a hash:
|
773
774
|
#
|
774
775
|
# {
|
776
|
+
# tls_policy: "REQUIRE", # accepts REQUIRE, OPTIONAL
|
775
777
|
# sending_pool_name: "PoolName",
|
776
778
|
# }
|
777
779
|
#
|
780
|
+
# @!attribute [rw] tls_policy
|
781
|
+
# Specifies whether Amazon Pinpoint should require that incoming email
|
782
|
+
# is delivered over a connection that’s encrypted by using Transport
|
783
|
+
# Layer Security (TLS). If this value is set to `Require`, Amazon
|
784
|
+
# Pinpoint will bounce email messages that cannot be delivered over
|
785
|
+
# TLS. The default value is `Optional`.
|
786
|
+
# @return [String]
|
787
|
+
#
|
778
788
|
# @!attribute [rw] sending_pool_name
|
779
789
|
# The name of the dedicated IP pool that you want to associate with
|
780
790
|
# the configuration set.
|
@@ -783,6 +793,7 @@ module Aws::PinpointEmail
|
|
783
793
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-email-2018-07-26/DeliveryOptions AWS API Documentation
|
784
794
|
#
|
785
795
|
class DeliveryOptions < Struct.new(
|
796
|
+
:tls_policy,
|
786
797
|
:sending_pool_name)
|
787
798
|
include Aws::Structure
|
788
799
|
end
|
@@ -2664,6 +2675,7 @@ module Aws::PinpointEmail
|
|
2664
2675
|
#
|
2665
2676
|
# {
|
2666
2677
|
# configuration_set_name: "ConfigurationSetName", # required
|
2678
|
+
# tls_policy: "REQUIRE", # accepts REQUIRE, OPTIONAL
|
2667
2679
|
# sending_pool_name: "SendingPoolName",
|
2668
2680
|
# }
|
2669
2681
|
#
|
@@ -2672,6 +2684,12 @@ module Aws::PinpointEmail
|
|
2672
2684
|
# dedicated IP pool.
|
2673
2685
|
# @return [String]
|
2674
2686
|
#
|
2687
|
+
# @!attribute [rw] tls_policy
|
2688
|
+
# Whether Amazon Pinpoint should require that incoming email is
|
2689
|
+
# delivered over a connection encrypted with Transport Layer Security
|
2690
|
+
# (TLS).
|
2691
|
+
# @return [String]
|
2692
|
+
#
|
2675
2693
|
# @!attribute [rw] sending_pool_name
|
2676
2694
|
# The name of the dedicated IP pool that you want to associate with
|
2677
2695
|
# the configuration set.
|
@@ -2681,6 +2699,7 @@ module Aws::PinpointEmail
|
|
2681
2699
|
#
|
2682
2700
|
class PutConfigurationSetDeliveryOptionsRequest < Struct.new(
|
2683
2701
|
:configuration_set_name,
|
2702
|
+
:tls_policy,
|
2684
2703
|
:sending_pool_name)
|
2685
2704
|
include Aws::Structure
|
2686
2705
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-pinpointemail
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.11.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: 2019-05-
|
11
|
+
date: 2019-05-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|