aws-sdk-ses 1.0.0.rc9 → 1.0.0.rc10

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: 53e9d9b126d3214ab1b67c423867e7d5f4142968
4
- data.tar.gz: f9784d6639bfc7efbdce3413692706c1457050f2
3
+ metadata.gz: 34cd688a9588552e5d6ea2df043908839d76eb55
4
+ data.tar.gz: eb2b370c0c377257cff49700b8b4708d1a8fa8b1
5
5
  SHA512:
6
- metadata.gz: 1e596af1d044382a8158f2bd565b443aff269b233616ed51958d6615e1bdacee9578d293ee4504d9e5259ca831ee1f648666f0f1cee270551ead77087e7dc939
7
- data.tar.gz: 1bace88b930c43e5b1e4b61e3ef4575aee4b6c2c4348a7e3a5b90b5115a08ca94d6401dc2b29a1d2f40c266987a578ced3e31dc0ed357bc06a5fe559afc08551
6
+ metadata.gz: eacd7c186a09ee886137f5cce3f29726a1e92651931c2679ea2312f03b38f1c3a314d251b9fece1d1b96af0099d376dab88335864ae26869550c40312c20dbb6
7
+ data.tar.gz: 4d06e5072135acda05dd5b1735ee5dc55ebd202fcb3ab128b215a4eac636d1431946c2c5824a2479f042ab9b75d430e5eeb2b72853b12d8739792d06b2833838
data/lib/aws-sdk-ses.rb CHANGED
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-ses/customizations'
43
43
  # @service
44
44
  module Aws::SES
45
45
 
46
- GEM_VERSION = '1.0.0.rc9'
46
+ GEM_VERSION = '1.0.0.rc10'
47
47
 
48
48
  end
@@ -236,8 +236,9 @@ module Aws::SES
236
236
  # Creates a configuration set event destination.
237
237
  #
238
238
  # <note markdown="1"> When you create or update an event destination, you must provide one,
239
- # and only one, destination. The destination can be either Amazon
240
- # CloudWatch or Amazon Kinesis Firehose.
239
+ # and only one, destination. The destination can be Amazon CloudWatch,
240
+ # Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon
241
+ # SNS).
241
242
  #
242
243
  # </note>
243
244
  #
@@ -270,7 +271,7 @@ module Aws::SES
270
271
  # event_destination: { # required
271
272
  # name: "EventDestinationName", # required
272
273
  # enabled: false,
273
- # matching_event_types: ["send"], # required, accepts send, reject, bounce, complaint, delivery
274
+ # matching_event_types: ["send"], # required, accepts send, reject, bounce, complaint, delivery, open, click
274
275
  # kinesis_firehose_destination: {
275
276
  # iam_role_arn: "AmazonResourceName", # required
276
277
  # delivery_stream_arn: "AmazonResourceName", # required
@@ -279,11 +280,14 @@ module Aws::SES
279
280
  # dimension_configurations: [ # required
280
281
  # {
281
282
  # dimension_name: "DimensionName", # required
282
- # dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader
283
+ # dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader, linkTag
283
284
  # default_dimension_value: "DefaultDimensionValue", # required
284
285
  # },
285
286
  # ],
286
287
  # },
288
+ # sns_destination: {
289
+ # topic_arn: "AmazonResourceName", # required
290
+ # },
287
291
  # },
288
292
  # })
289
293
  #
@@ -968,13 +972,14 @@ module Aws::SES
968
972
  # resp.event_destinations[0].name #=> String
969
973
  # resp.event_destinations[0].enabled #=> Boolean
970
974
  # resp.event_destinations[0].matching_event_types #=> Array
971
- # resp.event_destinations[0].matching_event_types[0] #=> String, one of "send", "reject", "bounce", "complaint", "delivery"
975
+ # resp.event_destinations[0].matching_event_types[0] #=> String, one of "send", "reject", "bounce", "complaint", "delivery", "open", "click"
972
976
  # resp.event_destinations[0].kinesis_firehose_destination.iam_role_arn #=> String
973
977
  # resp.event_destinations[0].kinesis_firehose_destination.delivery_stream_arn #=> String
974
978
  # resp.event_destinations[0].cloud_watch_destination.dimension_configurations #=> Array
975
979
  # resp.event_destinations[0].cloud_watch_destination.dimension_configurations[0].dimension_name #=> String
976
- # resp.event_destinations[0].cloud_watch_destination.dimension_configurations[0].dimension_value_source #=> String, one of "messageTag", "emailHeader"
980
+ # resp.event_destinations[0].cloud_watch_destination.dimension_configurations[0].dimension_value_source #=> String, one of "messageTag", "emailHeader", "linkTag"
977
981
  # resp.event_destinations[0].cloud_watch_destination.dimension_configurations[0].default_dimension_value #=> String
982
+ # resp.event_destinations[0].sns_destination.topic_arn #=> String
978
983
  #
979
984
  # @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DescribeConfigurationSet AWS API Documentation
980
985
  #
@@ -1365,6 +1370,8 @@ module Aws::SES
1365
1370
  # notification_attributes: {
1366
1371
  # "example.com" => {
1367
1372
  # bounce_topic: "arn:aws:sns:us-east-1:EXAMPLE65304:ExampleTopic",
1373
+ # complaint_topic: "arn:aws:sns:us-east-1:EXAMPLE65304:ExampleTopic",
1374
+ # delivery_topic: "arn:aws:sns:us-east-1:EXAMPLE65304:ExampleTopic",
1368
1375
  # forwarding_enabled: true,
1369
1376
  # headers_in_bounce_notifications_enabled: false,
1370
1377
  # headers_in_complaint_notifications_enabled: false,
@@ -1481,6 +1488,24 @@ module Aws::SES
1481
1488
  # the verification status and (for domain identities) the verification
1482
1489
  # token for each identity.
1483
1490
  #
1491
+ # The verification status of an email address is "Pending" until the
1492
+ # email address owner clicks the link within the verification email that
1493
+ # Amazon SES sent to that address. If the email address owner clicks the
1494
+ # link within 24 hours, the verification status of the email address
1495
+ # changes to "Success". If the link is not clicked within 24 hours,
1496
+ # the verification status changes to "Failed." In that case, if you
1497
+ # still want to verify the email address, you must restart the
1498
+ # verification process from the beginning.
1499
+ #
1500
+ # For domain identities, the domain's verification status is
1501
+ # "Pending" as Amazon SES searches for the required TXT record in the
1502
+ # DNS settings of the domain. When Amazon SES detects the record, the
1503
+ # domain's verification status changes to "Success". If Amazon SES is
1504
+ # unable to detect the record within 72 hours, the domain's
1505
+ # verification status changes to "Failed." In that case, if you still
1506
+ # want to verify the domain, you must restart the verification process
1507
+ # from the beginning.
1508
+ #
1484
1509
  # This action is throttled at one request per second and can only get
1485
1510
  # verification attributes for up to 100 identities at a time.
1486
1511
  #
@@ -2229,6 +2254,11 @@ module Aws::SES
2229
2254
  # * The total size of the message cannot exceed 10 MB. This includes any
2230
2255
  # attachments that are part of the message.
2231
2256
  #
2257
+ # * You must provide at least one recipient email address. The recipient
2258
+ # address can be a To: address, a CC: address, or a BCC: address. If
2259
+ # any email address you provide is invalid, Amazon SES rejects the
2260
+ # entire email.
2261
+ #
2232
2262
  # * Amazon SES has a limit on the total number of recipients per
2233
2263
  # message. The combined number of To:, CC: and BCC: email addresses
2234
2264
  # cannot exceed 50. If you need to send an email message to a larger
@@ -2458,6 +2488,11 @@ module Aws::SES
2458
2488
  # * The total size of the message cannot exceed 10 MB. This includes any
2459
2489
  # attachments that are part of the message.
2460
2490
  #
2491
+ # * You must provide at least one recipient email address. The recipient
2492
+ # address can be a To: address, a CC: address, or a BCC: address. If
2493
+ # any email address you provide is invalid, Amazon SES rejects the
2494
+ # entire email.
2495
+ #
2461
2496
  # * Amazon SES has a limit on the total number of recipients per
2462
2497
  # message. The combined number of To:, CC: and BCC: email addresses
2463
2498
  # cannot exceed 50. If you need to send an email message to a larger
@@ -2549,9 +2584,13 @@ module Aws::SES
2549
2584
  #
2550
2585
  # * Must be base64-encoded.
2551
2586
  #
2587
+ # * Per [RFC 5321][2], the maximum length of each line of text,
2588
+ # including the &lt;CRLF&gt;, must not exceed 1,000 characters.
2589
+ #
2552
2590
  #
2553
2591
  #
2554
2592
  # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mime-types.html
2593
+ # [2]: https://tools.ietf.org/html/rfc5321#section-4.5.3.1.6
2555
2594
  #
2556
2595
  # @option params [String] :from_arn
2557
2596
  # This parameter is used only for sending authorization. It is the ARN
@@ -3121,15 +3160,17 @@ module Aws::SES
3121
3160
  # Updates the event destination of a configuration set.
3122
3161
  #
3123
3162
  # <note markdown="1"> When you create or update an event destination, you must provide one,
3124
- # and only one, destination. The destination can be either Amazon
3125
- # CloudWatch or Amazon Kinesis Firehose.
3163
+ # and only one, destination. The destination can be Amazon CloudWatch,
3164
+ # Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon
3165
+ # SNS).
3126
3166
  #
3127
3167
  # </note>
3128
3168
  #
3129
3169
  # Event destinations are associated with configuration sets, which
3130
- # enable you to publish email sending events to Amazon CloudWatch or
3131
- # Amazon Kinesis Firehose. For information about using configuration
3132
- # sets, see the [Amazon SES Developer Guide][1].
3170
+ # enable you to publish email sending events to Amazon CloudWatch,
3171
+ # Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon
3172
+ # SNS). For information about using configuration sets, see the [Amazon
3173
+ # SES Developer Guide][1].
3133
3174
  #
3134
3175
  # This action is throttled at one request per second.
3135
3176
  #
@@ -3153,7 +3194,7 @@ module Aws::SES
3153
3194
  # event_destination: { # required
3154
3195
  # name: "EventDestinationName", # required
3155
3196
  # enabled: false,
3156
- # matching_event_types: ["send"], # required, accepts send, reject, bounce, complaint, delivery
3197
+ # matching_event_types: ["send"], # required, accepts send, reject, bounce, complaint, delivery, open, click
3157
3198
  # kinesis_firehose_destination: {
3158
3199
  # iam_role_arn: "AmazonResourceName", # required
3159
3200
  # delivery_stream_arn: "AmazonResourceName", # required
@@ -3162,11 +3203,14 @@ module Aws::SES
3162
3203
  # dimension_configurations: [ # required
3163
3204
  # {
3164
3205
  # dimension_name: "DimensionName", # required
3165
- # dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader
3206
+ # dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader, linkTag
3166
3207
  # default_dimension_value: "DefaultDimensionValue", # required
3167
3208
  # },
3168
3209
  # ],
3169
3210
  # },
3211
+ # sns_destination: {
3212
+ # topic_arn: "AmazonResourceName", # required
3213
+ # },
3170
3214
  # },
3171
3215
  # })
3172
3216
  #
@@ -3475,7 +3519,7 @@ module Aws::SES
3475
3519
  params: params,
3476
3520
  config: config)
3477
3521
  context[:gem_name] = 'aws-sdk-ses'
3478
- context[:gem_version] = '1.0.0.rc9'
3522
+ context[:gem_version] = '1.0.0.rc10'
3479
3523
  Seahorse::Client::Request.new(handlers, context)
3480
3524
  end
3481
3525
 
@@ -126,6 +126,7 @@ module Aws::SES
126
126
  InvalidLambdaFunctionException = Shapes::StructureShape.new(name: 'InvalidLambdaFunctionException')
127
127
  InvalidPolicyException = Shapes::StructureShape.new(name: 'InvalidPolicyException')
128
128
  InvalidS3ConfigurationException = Shapes::StructureShape.new(name: 'InvalidS3ConfigurationException')
129
+ InvalidSNSDestinationException = Shapes::StructureShape.new(name: 'InvalidSNSDestinationException')
129
130
  InvalidSnsTopicException = Shapes::StructureShape.new(name: 'InvalidSnsTopicException')
130
131
  InvocationType = Shapes::StringShape.new(name: 'InvocationType')
131
132
  KinesisFirehoseDestination = Shapes::StructureShape.new(name: 'KinesisFirehoseDestination')
@@ -199,6 +200,7 @@ module Aws::SES
199
200
  S3KeyPrefix = Shapes::StringShape.new(name: 'S3KeyPrefix')
200
201
  SNSAction = Shapes::StructureShape.new(name: 'SNSAction')
201
202
  SNSActionEncoding = Shapes::StringShape.new(name: 'SNSActionEncoding')
203
+ SNSDestination = Shapes::StructureShape.new(name: 'SNSDestination')
202
204
  SendBounceRequest = Shapes::StructureShape.new(name: 'SendBounceRequest')
203
205
  SendBounceResponse = Shapes::StructureShape.new(name: 'SendBounceResponse')
204
206
  SendDataPoint = Shapes::StructureShape.new(name: 'SendDataPoint')
@@ -405,6 +407,7 @@ module Aws::SES
405
407
  EventDestination.add_member(:matching_event_types, Shapes::ShapeRef.new(shape: EventTypes, required: true, location_name: "MatchingEventTypes"))
406
408
  EventDestination.add_member(:kinesis_firehose_destination, Shapes::ShapeRef.new(shape: KinesisFirehoseDestination, location_name: "KinesisFirehoseDestination"))
407
409
  EventDestination.add_member(:cloud_watch_destination, Shapes::ShapeRef.new(shape: CloudWatchDestination, location_name: "CloudWatchDestination"))
410
+ EventDestination.add_member(:sns_destination, Shapes::ShapeRef.new(shape: SNSDestination, location_name: "SNSDestination"))
408
411
  EventDestination.struct_class = Types::EventDestination
409
412
 
410
413
  EventDestinations.member = Shapes::ShapeRef.new(shape: EventDestination)
@@ -630,6 +633,9 @@ module Aws::SES
630
633
  SNSAction.add_member(:encoding, Shapes::ShapeRef.new(shape: SNSActionEncoding, location_name: "Encoding"))
631
634
  SNSAction.struct_class = Types::SNSAction
632
635
 
636
+ SNSDestination.add_member(:topic_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "TopicARN"))
637
+ SNSDestination.struct_class = Types::SNSDestination
638
+
633
639
  SendBounceRequest.add_member(:original_message_id, Shapes::ShapeRef.new(shape: MessageId, required: true, location_name: "OriginalMessageId"))
634
640
  SendBounceRequest.add_member(:bounce_sender, Shapes::ShapeRef.new(shape: Address, required: true, location_name: "BounceSender"))
635
641
  SendBounceRequest.add_member(:explanation, Shapes::ShapeRef.new(shape: Explanation, location_name: "Explanation"))
@@ -814,6 +820,7 @@ module Aws::SES
814
820
  o.errors << Shapes::ShapeRef.new(shape: EventDestinationAlreadyExistsException)
815
821
  o.errors << Shapes::ShapeRef.new(shape: InvalidCloudWatchDestinationException)
816
822
  o.errors << Shapes::ShapeRef.new(shape: InvalidFirehoseDestinationException)
823
+ o.errors << Shapes::ShapeRef.new(shape: InvalidSNSDestinationException)
817
824
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
818
825
  end)
819
826
 
@@ -1186,6 +1193,7 @@ module Aws::SES
1186
1193
  o.errors << Shapes::ShapeRef.new(shape: EventDestinationDoesNotExistException)
1187
1194
  o.errors << Shapes::ShapeRef.new(shape: InvalidCloudWatchDestinationException)
1188
1195
  o.errors << Shapes::ShapeRef.new(shape: InvalidFirehoseDestinationException)
1196
+ o.errors << Shapes::ShapeRef.new(shape: InvalidSNSDestinationException)
1189
1197
  end)
1190
1198
 
1191
1199
  api.add_operation(:update_receipt_rule, Seahorse::Model::Operation.new.tap do |o|
@@ -289,7 +289,7 @@ module Aws::SES
289
289
  # dimension_configurations: [ # required
290
290
  # {
291
291
  # dimension_name: "DimensionName", # required
292
- # dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader
292
+ # dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader, linkTag
293
293
  # default_dimension_value: "DefaultDimensionValue", # required
294
294
  # },
295
295
  # ],
@@ -322,7 +322,7 @@ module Aws::SES
322
322
  #
323
323
  # {
324
324
  # dimension_name: "DimensionName", # required
325
- # dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader
325
+ # dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader, linkTag
326
326
  # default_dimension_value: "DefaultDimensionValue", # required
327
327
  # }
328
328
  #
@@ -447,7 +447,7 @@ module Aws::SES
447
447
  # event_destination: { # required
448
448
  # name: "EventDestinationName", # required
449
449
  # enabled: false,
450
- # matching_event_types: ["send"], # required, accepts send, reject, bounce, complaint, delivery
450
+ # matching_event_types: ["send"], # required, accepts send, reject, bounce, complaint, delivery, open, click
451
451
  # kinesis_firehose_destination: {
452
452
  # iam_role_arn: "AmazonResourceName", # required
453
453
  # delivery_stream_arn: "AmazonResourceName", # required
@@ -456,11 +456,14 @@ module Aws::SES
456
456
  # dimension_configurations: [ # required
457
457
  # {
458
458
  # dimension_name: "DimensionName", # required
459
- # dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader
459
+ # dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader, linkTag
460
460
  # default_dimension_value: "DefaultDimensionValue", # required
461
461
  # },
462
462
  # ],
463
463
  # },
464
+ # sns_destination: {
465
+ # topic_arn: "AmazonResourceName", # required
466
+ # },
464
467
  # },
465
468
  # }
466
469
  #
@@ -1198,15 +1201,17 @@ module Aws::SES
1198
1201
  # specified email sending events are published.
1199
1202
  #
1200
1203
  # <note markdown="1"> When you create or update an event destination, you must provide one,
1201
- # and only one, destination. The destination can be either Amazon
1202
- # CloudWatch or Amazon Kinesis Firehose.
1204
+ # and only one, destination. The destination can be Amazon CloudWatch,
1205
+ # Amazon Kinesis Firehose or Amazon Simple Notification Service (Amazon
1206
+ # SNS).
1203
1207
  #
1204
1208
  # </note>
1205
1209
  #
1206
1210
  # Event destinations are associated with configuration sets, which
1207
- # enable you to publish email sending events to Amazon CloudWatch or
1208
- # Amazon Kinesis Firehose. For information about using configuration
1209
- # sets, see the [Amazon SES Developer Guide][1].
1211
+ # enable you to publish email sending events to Amazon CloudWatch,
1212
+ # Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon
1213
+ # SNS). For information about using configuration sets, see the [Amazon
1214
+ # SES Developer Guide][1].
1210
1215
  #
1211
1216
  #
1212
1217
  #
@@ -1218,7 +1223,7 @@ module Aws::SES
1218
1223
  # {
1219
1224
  # name: "EventDestinationName", # required
1220
1225
  # enabled: false,
1221
- # matching_event_types: ["send"], # required, accepts send, reject, bounce, complaint, delivery
1226
+ # matching_event_types: ["send"], # required, accepts send, reject, bounce, complaint, delivery, open, click
1222
1227
  # kinesis_firehose_destination: {
1223
1228
  # iam_role_arn: "AmazonResourceName", # required
1224
1229
  # delivery_stream_arn: "AmazonResourceName", # required
@@ -1227,11 +1232,14 @@ module Aws::SES
1227
1232
  # dimension_configurations: [ # required
1228
1233
  # {
1229
1234
  # dimension_name: "DimensionName", # required
1230
- # dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader
1235
+ # dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader, linkTag
1231
1236
  # default_dimension_value: "DefaultDimensionValue", # required
1232
1237
  # },
1233
1238
  # ],
1234
1239
  # },
1240
+ # sns_destination: {
1241
+ # topic_arn: "AmazonResourceName", # required
1242
+ # },
1235
1243
  # }
1236
1244
  #
1237
1245
  # @!attribute [rw] name
@@ -1267,6 +1275,11 @@ module Aws::SES
1267
1275
  # destination.
1268
1276
  # @return [Types::CloudWatchDestination]
1269
1277
  #
1278
+ # @!attribute [rw] sns_destination
1279
+ # An object that contains the topic ARN associated with an Amazon
1280
+ # Simple Notification Service (Amazon SNS) event destination.
1281
+ # @return [Types::SNSDestination]
1282
+ #
1270
1283
  # @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/EventDestination AWS API Documentation
1271
1284
  #
1272
1285
  class EventDestination < Struct.new(
@@ -1274,7 +1287,8 @@ module Aws::SES
1274
1287
  :enabled,
1275
1288
  :matching_event_types,
1276
1289
  :kinesis_firehose_destination,
1277
- :cloud_watch_destination)
1290
+ :cloud_watch_destination,
1291
+ :sns_destination)
1278
1292
  include Aws::Structure
1279
1293
  end
1280
1294
 
@@ -2336,9 +2350,13 @@ module Aws::SES
2336
2350
  # }
2337
2351
  #
2338
2352
  # @!attribute [rw] data
2339
- # The raw data of the message. The client must ensure that the message
2340
- # format complies with Internet email standards regarding email header
2341
- # fields, MIME types, MIME encoding, and base64 encoding.
2353
+ # The raw data of the message. This data needs to base64-encoded if
2354
+ # you are accessing Amazon SES directly through the HTTPS interface.
2355
+ # If you are accessing Amazon SES using an AWS SDK, the SDK takes care
2356
+ # of the base 64-encoding for you. In all cases, the client must
2357
+ # ensure that the message format complies with Internet email
2358
+ # standards regarding email header fields, MIME types, and MIME
2359
+ # encoding.
2342
2360
  #
2343
2361
  # The To:, CC:, and BCC: headers in the raw message can contain a
2344
2362
  # group list.
@@ -3029,6 +3047,44 @@ module Aws::SES
3029
3047
  include Aws::Structure
3030
3048
  end
3031
3049
 
3050
+ # Contains the topic ARN associated with an Amazon Simple Notification
3051
+ # Service (Amazon SNS) event destination.
3052
+ #
3053
+ # Event destinations, such as Amazon SNS, are associated with
3054
+ # configuration sets, which enable you to publish email sending events.
3055
+ # For information about using configuration sets, see the [Amazon SES
3056
+ # Developer Guide][1].
3057
+ #
3058
+ #
3059
+ #
3060
+ # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
3061
+ #
3062
+ # @note When making an API call, you may pass SNSDestination
3063
+ # data as a hash:
3064
+ #
3065
+ # {
3066
+ # topic_arn: "AmazonResourceName", # required
3067
+ # }
3068
+ #
3069
+ # @!attribute [rw] topic_arn
3070
+ # The ARN of the Amazon SNS topic to which you want to publish email
3071
+ # sending events. An example of an Amazon SNS topic ARN is
3072
+ # arn:aws:sns:us-west-2:123456789012:MyTopic. For more information
3073
+ # about Amazon SNS topics, see the [ *Amazon SNS Developer Guide*
3074
+ # ][1].
3075
+ #
3076
+ #
3077
+ #
3078
+ # [1]: http://docs.aws.amazon.com/http:/alpha-docs-aws.amazon.com/sns/latest/dg/CreateTopic.html
3079
+ # @return [String]
3080
+ #
3081
+ # @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SNSDestination AWS API Documentation
3082
+ #
3083
+ class SNSDestination < Struct.new(
3084
+ :topic_arn)
3085
+ include Aws::Structure
3086
+ end
3087
+
3032
3088
  # Represents a request to send a bounce message to the sender of an
3033
3089
  # email you received through Amazon SES.
3034
3090
  #
@@ -3422,9 +3478,13 @@ module Aws::SES
3422
3478
  #
3423
3479
  # * Must be base64-encoded.
3424
3480
  #
3481
+ # * Per [RFC 5321][2], the maximum length of each line of text,
3482
+ # including the &lt;CRLF&gt;, must not exceed 1,000 characters.
3483
+ #
3425
3484
  #
3426
3485
  #
3427
3486
  # [1]: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mime-types.html
3487
+ # [2]: https://tools.ietf.org/html/rfc5321#section-4.5.3.1.6
3428
3488
  # @return [Types::RawMessage]
3429
3489
  #
3430
3490
  # @!attribute [rw] from_arn
@@ -3943,7 +4003,7 @@ module Aws::SES
3943
4003
  # event_destination: { # required
3944
4004
  # name: "EventDestinationName", # required
3945
4005
  # enabled: false,
3946
- # matching_event_types: ["send"], # required, accepts send, reject, bounce, complaint, delivery
4006
+ # matching_event_types: ["send"], # required, accepts send, reject, bounce, complaint, delivery, open, click
3947
4007
  # kinesis_firehose_destination: {
3948
4008
  # iam_role_arn: "AmazonResourceName", # required
3949
4009
  # delivery_stream_arn: "AmazonResourceName", # required
@@ -3952,11 +4012,14 @@ module Aws::SES
3952
4012
  # dimension_configurations: [ # required
3953
4013
  # {
3954
4014
  # dimension_name: "DimensionName", # required
3955
- # dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader
4015
+ # dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader, linkTag
3956
4016
  # default_dimension_value: "DefaultDimensionValue", # required
3957
4017
  # },
3958
4018
  # ],
3959
4019
  # },
4020
+ # sns_destination: {
4021
+ # topic_arn: "AmazonResourceName", # required
4022
+ # },
3960
4023
  # },
3961
4024
  # }
3962
4025
  #
@@ -4152,8 +4215,16 @@ module Aws::SES
4152
4215
  # domain to complete domain verification with Amazon SES.
4153
4216
  #
4154
4217
  # @!attribute [rw] verification_token
4155
- # A TXT record that must be placed in the DNS settings for the domain,
4156
- # in order to complete domain verification.
4218
+ # A TXT record that you must place in the DNS settings of the domain
4219
+ # to complete domain verification with Amazon SES.
4220
+ #
4221
+ # As Amazon SES searches for the TXT record, the domain's
4222
+ # verification status is "Pending". When Amazon SES detects the
4223
+ # record, the domain's verification status changes to "Success". If
4224
+ # Amazon SES is unable to detect the record within 72 hours, the
4225
+ # domain's verification status changes to "Failed." In that case,
4226
+ # if you still want to verify the domain, you must restart the
4227
+ # verification process from the beginning.
4157
4228
  # @return [String]
4158
4229
  #
4159
4230
  # @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/VerifyDomainIdentityResponse AWS API Documentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ses
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.rc9
4
+ version: 1.0.0.rc10
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: 2017-07-27 00:00:00.000000000 Z
11
+ date: 2017-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 3.0.0.rc18
19
+ version: 3.0.0.rc19
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 3.0.0.rc18
26
+ version: 3.0.0.rc19
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: aws-sigv4
29
29
  requirement: !ruby/object:Gem::Requirement