aws-sdk-ses 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.
@@ -93,6 +93,7 @@ module Aws::SES
93
93
  DeleteTemplateRequest = Shapes::StructureShape.new(name: 'DeleteTemplateRequest')
94
94
  DeleteTemplateResponse = Shapes::StructureShape.new(name: 'DeleteTemplateResponse')
95
95
  DeleteVerifiedEmailAddressRequest = Shapes::StructureShape.new(name: 'DeleteVerifiedEmailAddressRequest')
96
+ DeliveryOptions = Shapes::StructureShape.new(name: 'DeliveryOptions')
96
97
  DescribeActiveReceiptRuleSetRequest = Shapes::StructureShape.new(name: 'DescribeActiveReceiptRuleSetRequest')
97
98
  DescribeActiveReceiptRuleSetResponse = Shapes::StructureShape.new(name: 'DescribeActiveReceiptRuleSetResponse')
98
99
  DescribeConfigurationSetRequest = Shapes::StructureShape.new(name: 'DescribeConfigurationSetRequest')
@@ -155,6 +156,7 @@ module Aws::SES
155
156
  IdentityVerificationAttributes = Shapes::StructureShape.new(name: 'IdentityVerificationAttributes')
156
157
  InvalidCloudWatchDestinationException = Shapes::StructureShape.new(name: 'InvalidCloudWatchDestinationException')
157
158
  InvalidConfigurationSetException = Shapes::StructureShape.new(name: 'InvalidConfigurationSetException')
159
+ InvalidDeliveryOptionsException = Shapes::StructureShape.new(name: 'InvalidDeliveryOptionsException')
158
160
  InvalidFirehoseDestinationException = Shapes::StructureShape.new(name: 'InvalidFirehoseDestinationException')
159
161
  InvalidLambdaFunctionException = Shapes::StructureShape.new(name: 'InvalidLambdaFunctionException')
160
162
  InvalidPolicyException = Shapes::StructureShape.new(name: 'InvalidPolicyException')
@@ -211,6 +213,8 @@ module Aws::SES
211
213
  PolicyName = Shapes::StringShape.new(name: 'PolicyName')
212
214
  PolicyNameList = Shapes::ListShape.new(name: 'PolicyNameList')
213
215
  ProductionAccessNotGrantedException = Shapes::StructureShape.new(name: 'ProductionAccessNotGrantedException')
216
+ PutConfigurationSetDeliveryOptionsRequest = Shapes::StructureShape.new(name: 'PutConfigurationSetDeliveryOptionsRequest')
217
+ PutConfigurationSetDeliveryOptionsResponse = Shapes::StructureShape.new(name: 'PutConfigurationSetDeliveryOptionsResponse')
214
218
  PutIdentityPolicyRequest = Shapes::StructureShape.new(name: 'PutIdentityPolicyRequest')
215
219
  PutIdentityPolicyResponse = Shapes::StructureShape.new(name: 'PutIdentityPolicyResponse')
216
220
  RawMessage = Shapes::StructureShape.new(name: 'RawMessage')
@@ -518,6 +522,9 @@ module Aws::SES
518
522
  DeleteVerifiedEmailAddressRequest.add_member(:email_address, Shapes::ShapeRef.new(shape: Address, required: true, location_name: "EmailAddress"))
519
523
  DeleteVerifiedEmailAddressRequest.struct_class = Types::DeleteVerifiedEmailAddressRequest
520
524
 
525
+ DeliveryOptions.add_member(:tls_policy, Shapes::ShapeRef.new(shape: TlsPolicy, location_name: "TlsPolicy"))
526
+ DeliveryOptions.struct_class = Types::DeliveryOptions
527
+
521
528
  DescribeActiveReceiptRuleSetRequest.struct_class = Types::DescribeActiveReceiptRuleSetRequest
522
529
 
523
530
  DescribeActiveReceiptRuleSetResponse.add_member(:metadata, Shapes::ShapeRef.new(shape: ReceiptRuleSetMetadata, location_name: "Metadata"))
@@ -531,6 +538,7 @@ module Aws::SES
531
538
  DescribeConfigurationSetResponse.add_member(:configuration_set, Shapes::ShapeRef.new(shape: ConfigurationSet, location_name: "ConfigurationSet"))
532
539
  DescribeConfigurationSetResponse.add_member(:event_destinations, Shapes::ShapeRef.new(shape: EventDestinations, location_name: "EventDestinations"))
533
540
  DescribeConfigurationSetResponse.add_member(:tracking_options, Shapes::ShapeRef.new(shape: TrackingOptions, location_name: "TrackingOptions"))
541
+ DescribeConfigurationSetResponse.add_member(:delivery_options, Shapes::ShapeRef.new(shape: DeliveryOptions, location_name: "DeliveryOptions"))
534
542
  DescribeConfigurationSetResponse.add_member(:reputation_options, Shapes::ShapeRef.new(shape: ReputationOptions, location_name: "ReputationOptions"))
535
543
  DescribeConfigurationSetResponse.struct_class = Types::DescribeConfigurationSetResponse
536
544
 
@@ -788,6 +796,12 @@ module Aws::SES
788
796
 
789
797
  PolicyNameList.member = Shapes::ShapeRef.new(shape: PolicyName)
790
798
 
799
+ PutConfigurationSetDeliveryOptionsRequest.add_member(:configuration_set_name, Shapes::ShapeRef.new(shape: ConfigurationSetName, required: true, location_name: "ConfigurationSetName"))
800
+ PutConfigurationSetDeliveryOptionsRequest.add_member(:delivery_options, Shapes::ShapeRef.new(shape: DeliveryOptions, location_name: "DeliveryOptions"))
801
+ PutConfigurationSetDeliveryOptionsRequest.struct_class = Types::PutConfigurationSetDeliveryOptionsRequest
802
+
803
+ PutConfigurationSetDeliveryOptionsResponse.struct_class = Types::PutConfigurationSetDeliveryOptionsResponse
804
+
791
805
  PutIdentityPolicyRequest.add_member(:identity, Shapes::ShapeRef.new(shape: Identity, required: true, location_name: "Identity"))
792
806
  PutIdentityPolicyRequest.add_member(:policy_name, Shapes::ShapeRef.new(shape: PolicyName, required: true, location_name: "PolicyName"))
793
807
  PutIdentityPolicyRequest.add_member(:policy, Shapes::ShapeRef.new(shape: Policy, required: true, location_name: "Policy"))
@@ -1529,6 +1543,16 @@ module Aws::SES
1529
1543
  o.output = Shapes::ShapeRef.new(shape: ListVerifiedEmailAddressesResponse)
1530
1544
  end)
1531
1545
 
1546
+ api.add_operation(:put_configuration_set_delivery_options, Seahorse::Model::Operation.new.tap do |o|
1547
+ o.name = "PutConfigurationSetDeliveryOptions"
1548
+ o.http_method = "POST"
1549
+ o.http_request_uri = "/"
1550
+ o.input = Shapes::ShapeRef.new(shape: PutConfigurationSetDeliveryOptionsRequest)
1551
+ o.output = Shapes::ShapeRef.new(shape: PutConfigurationSetDeliveryOptionsResponse)
1552
+ o.errors << Shapes::ShapeRef.new(shape: ConfigurationSetDoesNotExistException)
1553
+ o.errors << Shapes::ShapeRef.new(shape: InvalidDeliveryOptionsException)
1554
+ end)
1555
+
1532
1556
  api.add_operation(:put_identity_policy, Seahorse::Model::Operation.new.tap do |o|
1533
1557
  o.name = "PutIdentityPolicy"
1534
1558
  o.http_method = "POST"
@@ -16,7 +16,7 @@ module Aws::SES
16
16
  #
17
17
  #
18
18
  #
19
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-add-header.html
19
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-add-header.html
20
20
  #
21
21
  # @note When making an API call, you may pass AddHeaderAction
22
22
  # data as a hash:
@@ -108,7 +108,7 @@ module Aws::SES
108
108
  #
109
109
  #
110
110
  #
111
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-bounce.html
111
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-bounce.html
112
112
  #
113
113
  # @note When making an API call, you may pass BounceAction
114
114
  # data as a hash:
@@ -130,7 +130,7 @@ module Aws::SES
130
130
  #
131
131
  #
132
132
  #
133
- # [1]: http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html
133
+ # [1]: https://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html
134
134
  # @return [String]
135
135
  #
136
136
  # @!attribute [rw] smtp_reply_code
@@ -178,7 +178,7 @@ module Aws::SES
178
178
  #
179
179
  #
180
180
  #
181
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html
181
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html
182
182
  #
183
183
  # @note When making an API call, you may pass BouncedRecipientInfo
184
184
  # data as a hash:
@@ -216,7 +216,7 @@ module Aws::SES
216
216
  #
217
217
  #
218
218
  #
219
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
219
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
220
220
  # @return [String]
221
221
  #
222
222
  # @!attribute [rw] bounce_type
@@ -400,7 +400,7 @@ module Aws::SES
400
400
  #
401
401
  #
402
402
  #
403
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
403
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
404
404
  #
405
405
  # @note When making an API call, you may pass CloneReceiptRuleSetRequest
406
406
  # data as a hash:
@@ -449,7 +449,7 @@ module Aws::SES
449
449
  #
450
450
  #
451
451
  #
452
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
452
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
453
453
  #
454
454
  # @note When making an API call, you may pass CloudWatchDestination
455
455
  # data as a hash:
@@ -484,7 +484,7 @@ module Aws::SES
484
484
  #
485
485
  #
486
486
  #
487
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
487
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
488
488
  #
489
489
  # @note When making an API call, you may pass CloudWatchDimensionConfiguration
490
490
  # data as a hash:
@@ -542,8 +542,8 @@ module Aws::SES
542
542
  #
543
543
  #
544
544
  #
545
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/using-configuration-sets.html
546
- # [2]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/
545
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/using-configuration-sets.html
546
+ # [2]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/
547
547
  #
548
548
  # @note When making an API call, you may pass ConfigurationSet
549
549
  # data as a hash:
@@ -653,7 +653,7 @@ module Aws::SES
653
653
  #
654
654
  #
655
655
  #
656
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
656
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
657
657
  #
658
658
  # @note When making an API call, you may pass CreateConfigurationSetEventDestinationRequest
659
659
  # data as a hash:
@@ -713,7 +713,7 @@ module Aws::SES
713
713
  #
714
714
  #
715
715
  #
716
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
716
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
717
717
  #
718
718
  # @note When making an API call, you may pass CreateConfigurationSetRequest
719
719
  # data as a hash:
@@ -765,9 +765,11 @@ module Aws::SES
765
765
  # generated by Amazon SES emails.
766
766
  #
767
767
  # For more information, see [Configuring Custom Domains to Handle Open
768
- # and Click
769
- # Tracking](ses/latest/DeveloperGuide/configure-custom-open-click-domains.html)
770
- # in the *Amazon SES Developer Guide*.
768
+ # and Click Tracking][1] in the *Amazon SES Developer Guide*.
769
+ #
770
+ #
771
+ #
772
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/configure-custom-open-click-domains.html
771
773
  # @return [Types::TrackingOptions]
772
774
  #
773
775
  # @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateConfigurationSetTrackingOptionsRequest AWS API Documentation
@@ -819,7 +821,7 @@ module Aws::SES
819
821
  #
820
822
  #
821
823
  #
822
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html#custom-verification-emails-faq
824
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html#custom-verification-emails-faq
823
825
  # @return [String]
824
826
  #
825
827
  # @!attribute [rw] success_redirection_url
@@ -850,7 +852,7 @@ module Aws::SES
850
852
  #
851
853
  #
852
854
  #
853
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
855
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
854
856
  #
855
857
  # @note When making an API call, you may pass CreateReceiptFilterRequest
856
858
  # data as a hash:
@@ -890,7 +892,7 @@ module Aws::SES
890
892
  #
891
893
  #
892
894
  #
893
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
895
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
894
896
  #
895
897
  # @note When making an API call, you may pass CreateReceiptRuleRequest
896
898
  # data as a hash:
@@ -981,7 +983,7 @@ module Aws::SES
981
983
  #
982
984
  #
983
985
  #
984
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
986
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
985
987
  #
986
988
  # @note When making an API call, you may pass CreateReceiptRuleSetRequest
987
989
  # data as a hash:
@@ -1019,7 +1021,7 @@ module Aws::SES
1019
1021
  #
1020
1022
  #
1021
1023
  #
1022
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html
1024
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html
1023
1025
  #
1024
1026
  # @note When making an API call, you may pass CreateTemplateRequest
1025
1027
  # data as a hash:
@@ -1122,7 +1124,7 @@ module Aws::SES
1122
1124
  #
1123
1125
  #
1124
1126
  #
1125
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
1127
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
1126
1128
  #
1127
1129
  # @note When making an API call, you may pass DeleteConfigurationSetEventDestinationRequest
1128
1130
  # data as a hash:
@@ -1161,7 +1163,7 @@ module Aws::SES
1161
1163
  #
1162
1164
  #
1163
1165
  #
1164
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
1166
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
1165
1167
  #
1166
1168
  # @note When making an API call, you may pass DeleteConfigurationSetRequest
1167
1169
  # data as a hash:
@@ -1244,7 +1246,7 @@ module Aws::SES
1244
1246
  #
1245
1247
  #
1246
1248
  #
1247
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
1249
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
1248
1250
  #
1249
1251
  # @note When making an API call, you may pass DeleteIdentityPolicyRequest
1250
1252
  # data as a hash:
@@ -1316,7 +1318,7 @@ module Aws::SES
1316
1318
  #
1317
1319
  #
1318
1320
  #
1319
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
1321
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
1320
1322
  #
1321
1323
  # @note When making an API call, you may pass DeleteReceiptFilterRequest
1322
1324
  # data as a hash:
@@ -1348,7 +1350,7 @@ module Aws::SES
1348
1350
  #
1349
1351
  #
1350
1352
  #
1351
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
1353
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
1352
1354
  #
1353
1355
  # @note When making an API call, you may pass DeleteReceiptRuleRequest
1354
1356
  # data as a hash:
@@ -1388,7 +1390,7 @@ module Aws::SES
1388
1390
  #
1389
1391
  #
1390
1392
  #
1391
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
1393
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
1392
1394
  #
1393
1395
  # @note When making an API call, you may pass DeleteReceiptRuleSetRequest
1394
1396
  # data as a hash:
@@ -1419,7 +1421,7 @@ module Aws::SES
1419
1421
  #
1420
1422
  #
1421
1423
  #
1422
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html
1424
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html
1423
1425
  #
1424
1426
  # @note When making an API call, you may pass DeleteTemplateRequest
1425
1427
  # data as a hash:
@@ -1464,6 +1466,31 @@ module Aws::SES
1464
1466
  include Aws::Structure
1465
1467
  end
1466
1468
 
1469
+ # Specifies whether messages that use the configuration set are required
1470
+ # to use Transport Layer Security (TLS).
1471
+ #
1472
+ # @note When making an API call, you may pass DeliveryOptions
1473
+ # data as a hash:
1474
+ #
1475
+ # {
1476
+ # tls_policy: "Require", # accepts Require, Optional
1477
+ # }
1478
+ #
1479
+ # @!attribute [rw] tls_policy
1480
+ # Specifies whether messages that use the configuration set are
1481
+ # required to use Transport Layer Security (TLS). If the value is
1482
+ # `Require`, messages are only delivered if a TLS connection can be
1483
+ # established. If the value is `Optional`, messages can be delivered
1484
+ # in plain text if a TLS connection can't be established.
1485
+ # @return [String]
1486
+ #
1487
+ # @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeliveryOptions AWS API Documentation
1488
+ #
1489
+ class DeliveryOptions < Struct.new(
1490
+ :tls_policy)
1491
+ include Aws::Structure
1492
+ end
1493
+
1467
1494
  # Represents a request to return the metadata and receipt rules for the
1468
1495
  # receipt rule set that is currently active. You use receipt rule sets
1469
1496
  # to receive email with Amazon SES. For more information, see the
@@ -1471,7 +1498,7 @@ module Aws::SES
1471
1498
  #
1472
1499
  #
1473
1500
  #
1474
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
1501
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
1475
1502
  #
1476
1503
  # @api private
1477
1504
  #
@@ -1507,14 +1534,14 @@ module Aws::SES
1507
1534
  #
1508
1535
  #
1509
1536
  #
1510
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
1537
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
1511
1538
  #
1512
1539
  # @note When making an API call, you may pass DescribeConfigurationSetRequest
1513
1540
  # data as a hash:
1514
1541
  #
1515
1542
  # {
1516
1543
  # configuration_set_name: "ConfigurationSetName", # required
1517
- # configuration_set_attribute_names: ["eventDestinations"], # accepts eventDestinations, trackingOptions, reputationOptions
1544
+ # configuration_set_attribute_names: ["eventDestinations"], # accepts eventDestinations, trackingOptions, deliveryOptions, reputationOptions
1518
1545
  # }
1519
1546
  #
1520
1547
  # @!attribute [rw] configuration_set_name
@@ -1539,7 +1566,7 @@ module Aws::SES
1539
1566
  #
1540
1567
  #
1541
1568
  #
1542
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
1569
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
1543
1570
  #
1544
1571
  # @!attribute [rw] configuration_set
1545
1572
  # The configuration set object associated with the specified
@@ -1555,6 +1582,11 @@ module Aws::SES
1555
1582
  # with the configuration set.
1556
1583
  # @return [Types::TrackingOptions]
1557
1584
  #
1585
+ # @!attribute [rw] delivery_options
1586
+ # Specifies whether messages that use the configuration set are
1587
+ # required to use Transport Layer Security (TLS).
1588
+ # @return [Types::DeliveryOptions]
1589
+ #
1558
1590
  # @!attribute [rw] reputation_options
1559
1591
  # An object that represents the reputation settings for the
1560
1592
  # configuration set.
@@ -1566,6 +1598,7 @@ module Aws::SES
1566
1598
  :configuration_set,
1567
1599
  :event_destinations,
1568
1600
  :tracking_options,
1601
+ :delivery_options,
1569
1602
  :reputation_options)
1570
1603
  include Aws::Structure
1571
1604
  end
@@ -1576,7 +1609,7 @@ module Aws::SES
1576
1609
  #
1577
1610
  #
1578
1611
  #
1579
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
1612
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
1580
1613
  #
1581
1614
  # @note When making an API call, you may pass DescribeReceiptRuleRequest
1582
1615
  # data as a hash:
@@ -1623,7 +1656,7 @@ module Aws::SES
1623
1656
  #
1624
1657
  #
1625
1658
  #
1626
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
1659
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
1627
1660
  #
1628
1661
  # @note When making an API call, you may pass DescribeReceiptRuleSetRequest
1629
1662
  # data as a hash:
@@ -1729,7 +1762,7 @@ module Aws::SES
1729
1762
  #
1730
1763
  #
1731
1764
  #
1732
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
1765
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
1733
1766
  #
1734
1767
  # @note When making an API call, you may pass EventDestination
1735
1768
  # data as a hash:
@@ -1851,7 +1884,7 @@ module Aws::SES
1851
1884
  #
1852
1885
  #
1853
1886
  #
1854
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html
1887
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html
1855
1888
  #
1856
1889
  # @note When making an API call, you may pass ExtensionField
1857
1890
  # data as a hash:
@@ -1982,7 +2015,7 @@ module Aws::SES
1982
2015
  #
1983
2016
  #
1984
2017
  #
1985
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html
2018
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html
1986
2019
  #
1987
2020
  # @note When making an API call, you may pass GetIdentityDkimAttributesRequest
1988
2021
  # data as a hash:
@@ -2025,7 +2058,7 @@ module Aws::SES
2025
2058
  #
2026
2059
  #
2027
2060
  #
2028
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from.html
2061
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from.html
2029
2062
  #
2030
2063
  # @note When making an API call, you may pass GetIdentityMailFromDomainAttributesRequest
2031
2064
  # data as a hash:
@@ -2064,7 +2097,7 @@ module Aws::SES
2064
2097
  #
2065
2098
  #
2066
2099
  #
2067
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html
2100
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html
2068
2101
  #
2069
2102
  # @note When making an API call, you may pass GetIdentityNotificationAttributesRequest
2070
2103
  # data as a hash:
@@ -2107,7 +2140,7 @@ module Aws::SES
2107
2140
  #
2108
2141
  #
2109
2142
  #
2110
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
2143
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
2111
2144
  #
2112
2145
  # @note When making an API call, you may pass GetIdentityPoliciesRequest
2113
2146
  # data as a hash:
@@ -2161,7 +2194,7 @@ module Aws::SES
2161
2194
  #
2162
2195
  #
2163
2196
  #
2164
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html
2197
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html
2165
2198
  #
2166
2199
  # @note When making an API call, you may pass GetIdentityVerificationAttributesRequest
2167
2200
  # data as a hash:
@@ -2275,8 +2308,8 @@ module Aws::SES
2275
2308
  # domain.
2276
2309
  #
2277
2310
  # @!attribute [rw] dkim_enabled
2278
- # True if DKIM signing is enabled for email sent from the identity;
2279
- # false otherwise. The default value is true.
2311
+ # Is true if DKIM signing is enabled for email sent from the identity.
2312
+ # It's false otherwise. The default value is true.
2280
2313
  # @return [Boolean]
2281
2314
  #
2282
2315
  # @!attribute [rw] dkim_verification_status
@@ -2287,20 +2320,20 @@ module Aws::SES
2287
2320
  #
2288
2321
  # @!attribute [rw] dkim_tokens
2289
2322
  # A set of character strings that represent the domain's identity.
2290
- # Using these tokens, you will need to create DNS CNAME records that
2291
- # point to DKIM public keys hosted by Amazon SES. Amazon Web Services
2292
- # will eventually detect that you have updated your DNS records; this
2293
- # detection process may take up to 72 hours. Upon successful
2294
- # detection, Amazon SES will be able to DKIM-sign email originating
2295
- # from that domain. (This only applies to domain identities, not email
2323
+ # Using these tokens, you need to create DNS CNAME records that point
2324
+ # to DKIM public keys that are hosted by Amazon SES. Amazon Web
2325
+ # Services eventually detects that you've updated your DNS records.
2326
+ # This detection process might take up to 72 hours. After successful
2327
+ # detection, Amazon SES is able to DKIM-sign email originating from
2328
+ # that domain. (This only applies to domain identities, not email
2296
2329
  # address identities.)
2297
2330
  #
2298
2331
  # For more information about creating DNS records using DKIM tokens,
2299
- # go to the [Amazon SES Developer Guide][1].
2332
+ # see the [Amazon SES Developer Guide][1].
2300
2333
  #
2301
2334
  #
2302
2335
  #
2303
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html
2336
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html
2304
2337
  # @return [Array<String>]
2305
2338
  #
2306
2339
  # @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/IdentityDkimAttributes AWS API Documentation
@@ -2481,7 +2514,7 @@ module Aws::SES
2481
2514
  #
2482
2515
  #
2483
2516
  #
2484
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
2517
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
2485
2518
  #
2486
2519
  # @!attribute [rw] function_arn
2487
2520
  # Indicates that the ARN of the function was not found.
@@ -2515,7 +2548,7 @@ module Aws::SES
2515
2548
  #
2516
2549
  #
2517
2550
  #
2518
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
2551
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
2519
2552
  #
2520
2553
  # @!attribute [rw] bucket
2521
2554
  # Indicated that the S3 Bucket was not found.
@@ -2554,7 +2587,7 @@ module Aws::SES
2554
2587
  #
2555
2588
  #
2556
2589
  #
2557
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
2590
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
2558
2591
  #
2559
2592
  # @!attribute [rw] topic
2560
2593
  # Indicates that the topic does not exist.
@@ -2591,7 +2624,7 @@ module Aws::SES
2591
2624
  #
2592
2625
  #
2593
2626
  #
2594
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
2627
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
2595
2628
  #
2596
2629
  # @note When making an API call, you may pass KinesisFirehoseDestination
2597
2630
  # data as a hash:
@@ -2633,8 +2666,8 @@ module Aws::SES
2633
2666
  #
2634
2667
  #
2635
2668
  #
2636
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
2637
- # [2]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-lambda.html
2669
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
2670
+ # [2]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-lambda.html
2638
2671
  #
2639
2672
  # @note When making an API call, you may pass LambdaAction
2640
2673
  # data as a hash:
@@ -2654,7 +2687,7 @@ module Aws::SES
2654
2687
  #
2655
2688
  #
2656
2689
  #
2657
- # [1]: http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html
2690
+ # [1]: https://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html
2658
2691
  # @return [String]
2659
2692
  #
2660
2693
  # @!attribute [rw] function_arn
@@ -2666,7 +2699,7 @@ module Aws::SES
2666
2699
  #
2667
2700
  #
2668
2701
  #
2669
- # [1]: http://docs.aws.amazon.com/lambda/latest/dg/welcome.html
2702
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/welcome.html
2670
2703
  # @return [String]
2671
2704
  #
2672
2705
  # @!attribute [rw] invocation_type
@@ -2684,7 +2717,7 @@ module Aws::SES
2684
2717
  #
2685
2718
  #
2686
2719
  #
2687
- # [1]: http://docs.aws.amazon.com/lambda/latest/dg/API_Invoke.html
2720
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/API_Invoke.html
2688
2721
  # @return [String]
2689
2722
  #
2690
2723
  # @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/LambdaAction AWS API Documentation
@@ -2703,7 +2736,7 @@ module Aws::SES
2703
2736
  #
2704
2737
  #
2705
2738
  #
2706
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
2739
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
2707
2740
  #
2708
2741
  # @note When making an API call, you may pass ListConfigurationSetsRequest
2709
2742
  # data as a hash:
@@ -2738,7 +2771,7 @@ module Aws::SES
2738
2771
  #
2739
2772
  #
2740
2773
  #
2741
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
2774
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
2742
2775
  #
2743
2776
  # @!attribute [rw] configuration_sets
2744
2777
  # A list of configuration sets.
@@ -2880,7 +2913,7 @@ module Aws::SES
2880
2913
  #
2881
2914
  #
2882
2915
  #
2883
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
2916
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
2884
2917
  #
2885
2918
  # @note When making an API call, you may pass ListIdentityPoliciesRequest
2886
2919
  # data as a hash:
@@ -2927,7 +2960,7 @@ module Aws::SES
2927
2960
  #
2928
2961
  #
2929
2962
  #
2930
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
2963
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
2931
2964
  #
2932
2965
  # @api private
2933
2966
  #
@@ -2957,7 +2990,7 @@ module Aws::SES
2957
2990
  #
2958
2991
  #
2959
2992
  #
2960
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
2993
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
2961
2994
  #
2962
2995
  # @note When making an API call, you may pass ListReceiptRuleSetsRequest
2963
2996
  # data as a hash:
@@ -3110,7 +3143,7 @@ module Aws::SES
3110
3143
  #
3111
3144
  #
3112
3145
  #
3113
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html
3146
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html
3114
3147
  #
3115
3148
  # @note When making an API call, you may pass MessageDsn
3116
3149
  # data as a hash:
@@ -3167,7 +3200,7 @@ module Aws::SES
3167
3200
  #
3168
3201
  #
3169
3202
  #
3170
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
3203
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
3171
3204
  #
3172
3205
  # @note When making an API call, you may pass MessageTag
3173
3206
  # data as a hash:
@@ -3218,6 +3251,43 @@ module Aws::SES
3218
3251
  include Aws::Structure
3219
3252
  end
3220
3253
 
3254
+ # A request to modify the delivery options for a configuration set.
3255
+ #
3256
+ # @note When making an API call, you may pass PutConfigurationSetDeliveryOptionsRequest
3257
+ # data as a hash:
3258
+ #
3259
+ # {
3260
+ # configuration_set_name: "ConfigurationSetName", # required
3261
+ # delivery_options: {
3262
+ # tls_policy: "Require", # accepts Require, Optional
3263
+ # },
3264
+ # }
3265
+ #
3266
+ # @!attribute [rw] configuration_set_name
3267
+ # The name of the configuration set that you want to specify the
3268
+ # delivery options for.
3269
+ # @return [String]
3270
+ #
3271
+ # @!attribute [rw] delivery_options
3272
+ # Specifies whether messages that use the configuration set are
3273
+ # required to use Transport Layer Security (TLS).
3274
+ # @return [Types::DeliveryOptions]
3275
+ #
3276
+ # @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/PutConfigurationSetDeliveryOptionsRequest AWS API Documentation
3277
+ #
3278
+ class PutConfigurationSetDeliveryOptionsRequest < Struct.new(
3279
+ :configuration_set_name,
3280
+ :delivery_options)
3281
+ include Aws::Structure
3282
+ end
3283
+
3284
+ # An HTTP 200 response if the request succeeds, or an error message if
3285
+ # the request fails.
3286
+ #
3287
+ # @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/PutConfigurationSetDeliveryOptionsResponse AWS API Documentation
3288
+ #
3289
+ class PutConfigurationSetDeliveryOptionsResponse < Aws::EmptyStructure; end
3290
+
3221
3291
  # Represents a request to add or update a sending authorization policy
3222
3292
  # for an identity. Sending authorization is an Amazon SES feature that
3223
3293
  # enables you to authorize other senders to use your identities. For
@@ -3225,7 +3295,7 @@ module Aws::SES
3225
3295
  #
3226
3296
  #
3227
3297
  #
3228
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
3298
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
3229
3299
  #
3230
3300
  # @note When making an API call, you may pass PutIdentityPolicyRequest
3231
3301
  # data as a hash:
@@ -3261,7 +3331,7 @@ module Aws::SES
3261
3331
  #
3262
3332
  #
3263
3333
  #
3264
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-policies.html
3334
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-policies.html
3265
3335
  # @return [String]
3266
3336
  #
3267
3337
  # @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/PutIdentityPolicyRequest AWS API Documentation
@@ -3312,7 +3382,7 @@ module Aws::SES
3312
3382
  #
3313
3383
  #
3314
3384
  #
3315
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-raw.html
3385
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-raw.html
3316
3386
  # @return [String]
3317
3387
  #
3318
3388
  # @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/RawMessage AWS API Documentation
@@ -3331,7 +3401,7 @@ module Aws::SES
3331
3401
  #
3332
3402
  #
3333
3403
  #
3334
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html
3404
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html
3335
3405
  #
3336
3406
  # @note When making an API call, you may pass ReceiptAction
3337
3407
  # data as a hash:
@@ -3430,7 +3500,7 @@ module Aws::SES
3430
3500
  #
3431
3501
  #
3432
3502
  #
3433
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-ip-filters.html
3503
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-ip-filters.html
3434
3504
  #
3435
3505
  # @note When making an API call, you may pass ReceiptFilter
3436
3506
  # data as a hash:
@@ -3476,7 +3546,7 @@ module Aws::SES
3476
3546
  #
3477
3547
  #
3478
3548
  #
3479
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-ip-filters.html
3549
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-ip-filters.html
3480
3550
  #
3481
3551
  # @note When making an API call, you may pass ReceiptIpFilter
3482
3552
  # data as a hash:
@@ -3525,7 +3595,7 @@ module Aws::SES
3525
3595
  #
3526
3596
  #
3527
3597
  #
3528
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html
3598
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html
3529
3599
  #
3530
3600
  # @note When making an API call, you may pass ReceiptRule
3531
3601
  # data as a hash:
@@ -3638,7 +3708,7 @@ module Aws::SES
3638
3708
  #
3639
3709
  #
3640
3710
  #
3641
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html
3711
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html
3642
3712
  #
3643
3713
  # @!attribute [rw] name
3644
3714
  # The name of the receipt rule set. The name must:
@@ -3672,7 +3742,7 @@ module Aws::SES
3672
3742
  #
3673
3743
  #
3674
3744
  #
3675
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html
3745
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html
3676
3746
  #
3677
3747
  # @note When making an API call, you may pass RecipientDsnFields
3678
3748
  # data as a hash:
@@ -3782,7 +3852,7 @@ module Aws::SES
3782
3852
  #
3783
3853
  #
3784
3854
  #
3785
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
3855
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
3786
3856
  #
3787
3857
  # @note When making an API call, you may pass ReorderReceiptRuleSetRequest
3788
3858
  # data as a hash:
@@ -3908,8 +3978,8 @@ module Aws::SES
3908
3978
  #
3909
3979
  #
3910
3980
  #
3911
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
3912
- # [2]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-s3.html
3981
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
3982
+ # [2]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-s3.html
3913
3983
  #
3914
3984
  # @note When making an API call, you may pass S3Action
3915
3985
  # data as a hash:
@@ -3929,7 +3999,7 @@ module Aws::SES
3929
3999
  #
3930
4000
  #
3931
4001
  #
3932
- # [1]: http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html
4002
+ # [1]: https://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html
3933
4003
  # @return [String]
3934
4004
  #
3935
4005
  # @!attribute [rw] bucket_name
@@ -3981,11 +4051,11 @@ module Aws::SES
3981
4051
  #
3982
4052
  #
3983
4053
  #
3984
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
3985
- # [2]: http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html
4054
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
4055
+ # [2]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html
3986
4056
  # [3]: http://aws.amazon.com/sdk-for-java/
3987
4057
  # [4]: http://aws.amazon.com/sdk-for-ruby/
3988
- # [5]: http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingClientSideEncryption.html
4058
+ # [5]: https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingClientSideEncryption.html
3989
4059
  # @return [String]
3990
4060
  #
3991
4061
  # @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/S3Action AWS API Documentation
@@ -4020,8 +4090,8 @@ module Aws::SES
4020
4090
  #
4021
4091
  #
4022
4092
  #
4023
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
4024
- # [2]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-sns.html
4093
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
4094
+ # [2]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-sns.html
4025
4095
  #
4026
4096
  # @note When making an API call, you may pass SNSAction
4027
4097
  # data as a hash:
@@ -4039,7 +4109,7 @@ module Aws::SES
4039
4109
  #
4040
4110
  #
4041
4111
  #
4042
- # [1]: http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html
4112
+ # [1]: https://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html
4043
4113
  # @return [String]
4044
4114
  #
4045
4115
  # @!attribute [rw] encoding
@@ -4068,7 +4138,7 @@ module Aws::SES
4068
4138
  #
4069
4139
  #
4070
4140
  #
4071
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
4141
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
4072
4142
  #
4073
4143
  # @note When making an API call, you may pass SNSDestination
4074
4144
  # data as a hash:
@@ -4085,7 +4155,7 @@ module Aws::SES
4085
4155
  #
4086
4156
  #
4087
4157
  #
4088
- # [1]: http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html
4158
+ # [1]: https://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html
4089
4159
  # @return [String]
4090
4160
  #
4091
4161
  # @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SNSDestination AWS API Documentation
@@ -4175,7 +4245,7 @@ module Aws::SES
4175
4245
  #
4176
4246
  #
4177
4247
  #
4178
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
4248
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
4179
4249
  # @return [String]
4180
4250
  #
4181
4251
  # @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SendBounceRequest AWS API Documentation
@@ -4209,7 +4279,7 @@ module Aws::SES
4209
4279
  #
4210
4280
  #
4211
4281
  #
4212
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html
4282
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html
4213
4283
  #
4214
4284
  # @note When making an API call, you may pass SendBulkTemplatedEmailRequest
4215
4285
  # data as a hash:
@@ -4275,8 +4345,8 @@ module Aws::SES
4275
4345
  #
4276
4346
  #
4277
4347
  #
4278
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html
4279
- # [2]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
4348
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html
4349
+ # [2]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
4280
4350
  # [3]: https://tools.ietf.org/html/rfc6531
4281
4351
  # [4]: https://en.wikipedia.org/wiki/Email_address#Local-part
4282
4352
  # [5]: https://tools.ietf.org/html/rfc3492.html
@@ -4301,7 +4371,7 @@ module Aws::SES
4301
4371
  #
4302
4372
  #
4303
4373
  #
4304
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
4374
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
4305
4375
  # @return [String]
4306
4376
  #
4307
4377
  # @!attribute [rw] reply_to_addresses
@@ -4339,7 +4409,7 @@ module Aws::SES
4339
4409
  #
4340
4410
  #
4341
4411
  #
4342
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
4412
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
4343
4413
  # @return [String]
4344
4414
  #
4345
4415
  # @!attribute [rw] configuration_set_name
@@ -4496,7 +4566,7 @@ module Aws::SES
4496
4566
  #
4497
4567
  #
4498
4568
  #
4499
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-formatted.html
4569
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-formatted.html
4500
4570
  #
4501
4571
  # @note When making an API call, you may pass SendEmailRequest
4502
4572
  # data as a hash:
@@ -4564,8 +4634,8 @@ module Aws::SES
4564
4634
  #
4565
4635
  #
4566
4636
  #
4567
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html
4568
- # [2]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
4637
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html
4638
+ # [2]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
4569
4639
  # [3]: https://tools.ietf.org/html/rfc6531
4570
4640
  # [4]: https://en.wikipedia.org/wiki/Email_address#Local-part
4571
4641
  # [5]: https://tools.ietf.org/html/rfc3492.html
@@ -4616,7 +4686,7 @@ module Aws::SES
4616
4686
  #
4617
4687
  #
4618
4688
  #
4619
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
4689
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
4620
4690
  # @return [String]
4621
4691
  #
4622
4692
  # @!attribute [rw] return_path_arn
@@ -4637,7 +4707,7 @@ module Aws::SES
4637
4707
  #
4638
4708
  #
4639
4709
  #
4640
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
4710
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
4641
4711
  # @return [String]
4642
4712
  #
4643
4713
  # @!attribute [rw] tags
@@ -4685,7 +4755,7 @@ module Aws::SES
4685
4755
  #
4686
4756
  #
4687
4757
  #
4688
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-raw.html
4758
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-raw.html
4689
4759
  #
4690
4760
  # @note When making an API call, you may pass SendRawEmailRequest
4691
4761
  # data as a hash:
@@ -4772,8 +4842,8 @@ module Aws::SES
4772
4842
  #
4773
4843
  #
4774
4844
  #
4775
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mime-types.html
4776
- # [2]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-raw.html
4845
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/mime-types.html
4846
+ # [2]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-raw.html
4777
4847
  # [3]: https://tools.ietf.org/html/rfc5321#section-4.5.3.1.6
4778
4848
  # @return [Types::RawMessage]
4779
4849
  #
@@ -4796,7 +4866,7 @@ module Aws::SES
4796
4866
  #
4797
4867
  #
4798
4868
  #
4799
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-delegate-sender-tasks-email.html
4869
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-delegate-sender-tasks-email.html
4800
4870
  # @return [String]
4801
4871
  #
4802
4872
  # @!attribute [rw] source_arn
@@ -4825,7 +4895,7 @@ module Aws::SES
4825
4895
  #
4826
4896
  #
4827
4897
  #
4828
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-delegate-sender-tasks-email.html
4898
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-delegate-sender-tasks-email.html
4829
4899
  # @return [String]
4830
4900
  #
4831
4901
  # @!attribute [rw] return_path_arn
@@ -4854,7 +4924,7 @@ module Aws::SES
4854
4924
  #
4855
4925
  #
4856
4926
  #
4857
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-delegate-sender-tasks-email.html
4927
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-delegate-sender-tasks-email.html
4858
4928
  # @return [String]
4859
4929
  #
4860
4930
  # @!attribute [rw] tags
@@ -4902,7 +4972,7 @@ module Aws::SES
4902
4972
  #
4903
4973
  #
4904
4974
  #
4905
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html
4975
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html
4906
4976
  #
4907
4977
  # @note When making an API call, you may pass SendTemplatedEmailRequest
4908
4978
  # data as a hash:
@@ -4956,8 +5026,8 @@ module Aws::SES
4956
5026
  #
4957
5027
  #
4958
5028
  #
4959
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html
4960
- # [2]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
5029
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html
5030
+ # [2]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
4961
5031
  # [3]: https://tools.ietf.org/html/rfc6531
4962
5032
  # [4]: https://en.wikipedia.org/wiki/Email_address#Local-part
4963
5033
  # [5]: https://tools.ietf.org/html/rfc3492.html
@@ -5005,7 +5075,7 @@ module Aws::SES
5005
5075
  #
5006
5076
  #
5007
5077
  #
5008
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
5078
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
5009
5079
  # @return [String]
5010
5080
  #
5011
5081
  # @!attribute [rw] return_path_arn
@@ -5026,7 +5096,7 @@ module Aws::SES
5026
5096
  #
5027
5097
  #
5028
5098
  #
5029
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
5099
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
5030
5100
  # @return [String]
5031
5101
  #
5032
5102
  # @!attribute [rw] tags
@@ -5091,7 +5161,7 @@ module Aws::SES
5091
5161
  #
5092
5162
  #
5093
5163
  #
5094
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
5164
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
5095
5165
  #
5096
5166
  # @note When making an API call, you may pass SetActiveReceiptRuleSetRequest
5097
5167
  # data as a hash:
@@ -5124,7 +5194,7 @@ module Aws::SES
5124
5194
  #
5125
5195
  #
5126
5196
  #
5127
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html
5197
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html
5128
5198
  #
5129
5199
  # @note When making an API call, you may pass SetIdentityDkimEnabledRequest
5130
5200
  # data as a hash:
@@ -5164,7 +5234,7 @@ module Aws::SES
5164
5234
  #
5165
5235
  #
5166
5236
  #
5167
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications-via-email.html
5237
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications-via-email.html
5168
5238
  #
5169
5239
  # @note When making an API call, you may pass SetIdentityFeedbackForwardingEnabledRequest
5170
5240
  # data as a hash:
@@ -5211,7 +5281,7 @@ module Aws::SES
5211
5281
  #
5212
5282
  #
5213
5283
  #
5214
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications-via-sns.html
5284
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications-via-sns.html
5215
5285
  #
5216
5286
  # @note When making an API call, you may pass SetIdentityHeadersInNotificationsEnabledRequest
5217
5287
  # data as a hash:
@@ -5264,7 +5334,7 @@ module Aws::SES
5264
5334
  #
5265
5335
  #
5266
5336
  #
5267
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from.html
5337
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from.html
5268
5338
  #
5269
5339
  # @note When making an API call, you may pass SetIdentityMailFromDomainRequest
5270
5340
  # data as a hash:
@@ -5291,7 +5361,7 @@ module Aws::SES
5291
5361
  #
5292
5362
  #
5293
5363
  #
5294
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from.html
5364
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from.html
5295
5365
  # @return [String]
5296
5366
  #
5297
5367
  # @!attribute [rw] behavior_on_mx_failure
@@ -5329,7 +5399,7 @@ module Aws::SES
5329
5399
  #
5330
5400
  #
5331
5401
  #
5332
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications-via-sns.html
5402
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications-via-sns.html
5333
5403
  #
5334
5404
  # @note When making an API call, you may pass SetIdentityNotificationTopicRequest
5335
5405
  # data as a hash:
@@ -5385,7 +5455,7 @@ module Aws::SES
5385
5455
  #
5386
5456
  #
5387
5457
  #
5388
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
5458
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
5389
5459
  #
5390
5460
  # @note When making an API call, you may pass SetReceiptRulePositionRequest
5391
5461
  # data as a hash:
@@ -5434,7 +5504,7 @@ module Aws::SES
5434
5504
  #
5435
5505
  #
5436
5506
  #
5437
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-stop.html
5507
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-stop.html
5438
5508
  #
5439
5509
  # @note When making an API call, you may pass StopAction
5440
5510
  # data as a hash:
@@ -5457,7 +5527,7 @@ module Aws::SES
5457
5527
  #
5458
5528
  #
5459
5529
  #
5460
- # [1]: http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html
5530
+ # [1]: https://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html
5461
5531
  # @return [String]
5462
5532
  #
5463
5533
  # @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/StopAction AWS API Documentation
@@ -5586,9 +5656,11 @@ module Aws::SES
5586
5656
  # generated by Amazon SES emails.
5587
5657
  #
5588
5658
  # For more information, see [Configuring Custom Domains to Handle Open
5589
- # and Click
5590
- # Tracking](ses/latest/DeveloperGuide/configure-custom-open-click-domains.html)
5591
- # in the *Amazon SES Developer Guide*.
5659
+ # and Click Tracking][1] in the *Amazon SES Developer Guide*.
5660
+ #
5661
+ #
5662
+ #
5663
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/configure-custom-open-click-domains.html
5592
5664
  #
5593
5665
  # @note When making an API call, you may pass TrackingOptions
5594
5666
  # data as a hash:
@@ -5668,7 +5740,7 @@ module Aws::SES
5668
5740
  #
5669
5741
  #
5670
5742
  #
5671
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
5743
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
5672
5744
  #
5673
5745
  # @note When making an API call, you may pass UpdateConfigurationSetEventDestinationRequest
5674
5746
  # data as a hash:
@@ -5803,9 +5875,11 @@ module Aws::SES
5803
5875
  # generated by Amazon SES emails.
5804
5876
  #
5805
5877
  # For more information, see [Configuring Custom Domains to Handle Open
5806
- # and Click
5807
- # Tracking](ses/latest/DeveloperGuide/configure-custom-open-click-domains.html)
5808
- # in the *Amazon SES Developer Guide*.
5878
+ # and Click Tracking][1] in the *Amazon SES Developer Guide*.
5879
+ #
5880
+ #
5881
+ #
5882
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/configure-custom-open-click-domains.html
5809
5883
  # @return [Types::TrackingOptions]
5810
5884
  #
5811
5885
  # @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/UpdateConfigurationSetTrackingOptionsRequest AWS API Documentation
@@ -5859,7 +5933,7 @@ module Aws::SES
5859
5933
  #
5860
5934
  #
5861
5935
  #
5862
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html#custom-verification-emails-faq
5936
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html#custom-verification-emails-faq
5863
5937
  # @return [String]
5864
5938
  #
5865
5939
  # @!attribute [rw] success_redirection_url
@@ -5890,7 +5964,7 @@ module Aws::SES
5890
5964
  #
5891
5965
  #
5892
5966
  #
5893
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
5967
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
5894
5968
  #
5895
5969
  # @note When making an API call, you may pass UpdateReceiptRuleRequest
5896
5970
  # data as a hash:
@@ -6000,7 +6074,7 @@ module Aws::SES
6000
6074
  #
6001
6075
  #
6002
6076
  #
6003
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html
6077
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html
6004
6078
  #
6005
6079
  # @note When making an API call, you may pass VerifyDomainDkimRequest
6006
6080
  # data as a hash:
@@ -6028,19 +6102,20 @@ module Aws::SES
6028
6102
  # the identity is an email address, the tokens represent the domain of
6029
6103
  # that address.
6030
6104
  #
6031
- # Using these tokens, you will need to create DNS CNAME records that
6032
- # point to DKIM public keys hosted by Amazon SES. Amazon Web Services
6033
- # will eventually detect that you have updated your DNS records; this
6034
- # detection process may take up to 72 hours. Upon successful
6035
- # detection, Amazon SES will be able to DKIM-sign emails originating
6036
- # from that domain.
6105
+ # Using these tokens, you need to create DNS CNAME records that point
6106
+ # to DKIM public keys that are hosted by Amazon SES. Amazon Web
6107
+ # Services eventually detects that you've updated your DNS records.
6108
+ # This detection process might take up to 72 hours. After successful
6109
+ # detection, Amazon SES is able to DKIM-sign email originating from
6110
+ # that domain. (This only applies to domain identities, not email
6111
+ # address identities.)
6037
6112
  #
6038
6113
  # For more information about creating DNS records using DKIM tokens,
6039
- # go to the [Amazon SES Developer Guide][1].
6114
+ # see the [Amazon SES Developer Guide][1].
6040
6115
  #
6041
6116
  #
6042
6117
  #
6043
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html
6118
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html
6044
6119
  # @return [Array<String>]
6045
6120
  #
6046
6121
  # @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/VerifyDomainDkimResponse AWS API Documentation
@@ -6057,7 +6132,7 @@ module Aws::SES
6057
6132
  #
6058
6133
  #
6059
6134
  #
6060
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-domains.html
6135
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-domains.html
6061
6136
  #
6062
6137
  # @note When making an API call, you may pass VerifyDomainIdentityRequest
6063
6138
  # data as a hash:
@@ -6106,7 +6181,7 @@ module Aws::SES
6106
6181
  #
6107
6182
  #
6108
6183
  #
6109
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-email-addresses.html
6184
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-email-addresses.html
6110
6185
  #
6111
6186
  # @note When making an API call, you may pass VerifyEmailAddressRequest
6112
6187
  # data as a hash:
@@ -6132,7 +6207,7 @@ module Aws::SES
6132
6207
  #
6133
6208
  #
6134
6209
  #
6135
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-email-addresses.html
6210
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-email-addresses.html
6136
6211
  #
6137
6212
  # @note When making an API call, you may pass VerifyEmailIdentityRequest
6138
6213
  # data as a hash:
@@ -6169,7 +6244,7 @@ module Aws::SES
6169
6244
  #
6170
6245
  #
6171
6246
  #
6172
- # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-workmail.html
6247
+ # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-workmail.html
6173
6248
  #
6174
6249
  # @note When making an API call, you may pass WorkmailAction
6175
6250
  # data as a hash:
@@ -6188,7 +6263,7 @@ module Aws::SES
6188
6263
  #
6189
6264
  #
6190
6265
  #
6191
- # [1]: http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html
6266
+ # [1]: https://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html
6192
6267
  # @return [String]
6193
6268
  #
6194
6269
  # @!attribute [rw] organization_arn
@@ -6200,7 +6275,7 @@ module Aws::SES
6200
6275
  #
6201
6276
  #
6202
6277
  #
6203
- # [1]: http://docs.aws.amazon.com/workmail/latest/adminguide/organizations_overview.html
6278
+ # [1]: https://docs.aws.amazon.com/workmail/latest/adminguide/organizations_overview.html
6204
6279
  # @return [String]
6205
6280
  #
6206
6281
  # @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/WorkmailAction AWS API Documentation