aws-sdk-sesv2 1.98.0 → 1.99.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
  SHA256:
3
- metadata.gz: 57732889cdc659493bc08e099f5d09442ed44747cf4111d7012347a9d66014ca
4
- data.tar.gz: daf755dfdbc0608cc567312ebef7e31ac4937796f8a5b1784c9879b1ce202f3a
3
+ metadata.gz: 15dbe9637470865b8642b481fa30ee564e9af81b1c9127c3ff1f46ab2bf7c187
4
+ data.tar.gz: 547ba2aa5a7eff13db117e1ede4b67aa46ef13c2d0f041d797b4d27357680b71
5
5
  SHA512:
6
- metadata.gz: 1eafe010004820c503fd86214d729f9892254677fdd104de15ab67ef4b454cff2f242a8fec58fd9a01016c40064940d63aa9e83c6720681ba59dc236db24b87e
7
- data.tar.gz: beaae2853b43ad35f1741bb8f0a84b201eecd4feff9fa48cf5f75a24a7e144bc35c2e7f2b794d3818931a4bd48cad5426fd71061449f81b82c719a4dd1f81572
6
+ metadata.gz: e1f3bbdf8e5c7717340154cf0ef992dc570255dcbda053dd200715bbc6e0cac1e154d9690bb63a55a131c364b444e1ccc03cedfc51fd9b2534a059e40fe68238
7
+ data.tar.gz: 43bb0196daf1b96237ab92c15ed92f9ed9ca8b0c715aec46d9a3bed39d74aeca603d9d4673164e913239c4bc8ab17bddfff7b7c4af4cc3cd176cbf04ceed0272
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.99.0 (2026-05-19)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.98.0 (2026-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.98.0
1
+ 1.99.0
@@ -6257,7 +6257,7 @@ module Aws::SESV2
6257
6257
  tracer: tracer
6258
6258
  )
6259
6259
  context[:gem_name] = 'aws-sdk-sesv2'
6260
- context[:gem_version] = '1.98.0'
6260
+ context[:gem_version] = '1.99.0'
6261
6261
  Seahorse::Client::Request.new(handlers, context)
6262
6262
  end
6263
6263
 
data/lib/aws-sdk-sesv2.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::SESV2
54
54
  autoload :EndpointProvider, 'aws-sdk-sesv2/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-sesv2/endpoints'
56
56
 
57
- GEM_VERSION = '1.98.0'
57
+ GEM_VERSION = '1.99.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -93,7 +93,7 @@ module Aws
93
93
  dimensions: Hash[("EMAIL_IDENTITY" | "CONFIGURATION_SET" | "ISP"), ::String]?,
94
94
  start_date: ::Time,
95
95
  end_date: ::Time
96
- },
96
+ }
97
97
  ]
98
98
  ) -> _BatchGetMetricDataResponseSuccess
99
99
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetMetricDataResponseSuccess
@@ -133,27 +133,13 @@ module Aws
133
133
  {
134
134
  key: ::String,
135
135
  value: ::String
136
- },
136
+ }
137
137
  ],
138
138
  ?suppression_options: {
139
139
  suppressed_reasons: Array[("BOUNCE" | "COMPLAINT")]?,
140
- validation_options: {
141
- condition_threshold: {
142
- condition_threshold_enabled: ("ENABLED" | "DISABLED"),
143
- overall_confidence_threshold: {
144
- confidence_verdict_threshold: ("MEDIUM" | "HIGH" | "MANAGED")
145
- }?
146
- }
147
- }?
148
- },
149
- ?vdm_options: {
150
- dashboard_options: {
151
- engagement_metrics: ("ENABLED" | "DISABLED")?
152
- }?,
153
- guardian_options: {
154
- optimized_shared_delivery: ("ENABLED" | "DISABLED")?
155
- }?
140
+ validation_options: Params::suppression_validation_options?
156
141
  },
142
+ ?vdm_options: Params::vdm_options,
157
143
  ?archiving_options: {
158
144
  archive_arn: ::String?
159
145
  }
@@ -167,32 +153,7 @@ module Aws
167
153
  def create_configuration_set_event_destination: (
168
154
  configuration_set_name: ::String,
169
155
  event_destination_name: ::String,
170
- event_destination: {
171
- enabled: bool?,
172
- matching_event_types: Array[("SEND" | "REJECT" | "BOUNCE" | "COMPLAINT" | "DELIVERY" | "OPEN" | "CLICK" | "RENDERING_FAILURE" | "DELIVERY_DELAY" | "SUBSCRIPTION")]?,
173
- kinesis_firehose_destination: {
174
- iam_role_arn: ::String,
175
- delivery_stream_arn: ::String
176
- }?,
177
- cloud_watch_destination: {
178
- dimension_configurations: Array[
179
- {
180
- dimension_name: ::String,
181
- dimension_value_source: ("MESSAGE_TAG" | "EMAIL_HEADER" | "LINK_TAG"),
182
- default_dimension_value: ::String
183
- },
184
- ]
185
- }?,
186
- sns_destination: {
187
- topic_arn: ::String
188
- }?,
189
- event_bridge_destination: {
190
- event_bus_arn: ::String
191
- }?,
192
- pinpoint_destination: {
193
- application_arn: ::String?
194
- }?
195
- }
156
+ event_destination: Params::event_destination_definition
196
157
  ) -> _CreateConfigurationSetEventDestinationResponseSuccess
197
158
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigurationSetEventDestinationResponseSuccess
198
159
 
@@ -207,7 +168,7 @@ module Aws
207
168
  {
208
169
  topic_name: ::String,
209
170
  subscription_status: ("OPT_IN" | "OPT_OUT")
210
- },
171
+ }
211
172
  ],
212
173
  ?unsubscribe_all: bool,
213
174
  ?attributes_data: ::String
@@ -226,14 +187,14 @@ module Aws
226
187
  display_name: ::String,
227
188
  description: ::String?,
228
189
  default_subscription_status: ("OPT_IN" | "OPT_OUT")
229
- },
190
+ }
230
191
  ],
231
192
  ?description: ::String,
232
193
  ?tags: Array[
233
194
  {
234
195
  key: ::String,
235
196
  value: ::String
236
- },
197
+ }
237
198
  ]
238
199
  ) -> _CreateContactListResponseSuccess
239
200
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactListResponseSuccess
@@ -251,7 +212,7 @@ module Aws
251
212
  {
252
213
  key: ::String,
253
214
  value: ::String
254
- },
215
+ }
255
216
  ],
256
217
  success_redirection_url: ::String,
257
218
  failure_redirection_url: ::String
@@ -268,7 +229,7 @@ module Aws
268
229
  {
269
230
  key: ::String,
270
231
  value: ::String
271
- },
232
+ }
272
233
  ],
273
234
  ?scaling_mode: ("STANDARD" | "MANAGED")
274
235
  ) -> _CreateDedicatedIpPoolResponseSuccess
@@ -283,76 +244,12 @@ module Aws
283
244
  def create_deliverability_test_report: (
284
245
  ?report_name: ::String,
285
246
  from_email_address: ::String,
286
- content: {
287
- simple: {
288
- subject: {
289
- data: ::String,
290
- charset: ::String?
291
- },
292
- body: {
293
- text: {
294
- data: ::String,
295
- charset: ::String?
296
- }?,
297
- html: {
298
- data: ::String,
299
- charset: ::String?
300
- }?
301
- },
302
- headers: Array[
303
- {
304
- name: ::String,
305
- value: ::String
306
- },
307
- ]?,
308
- attachments: Array[
309
- {
310
- raw_content: ::String,
311
- content_disposition: ("ATTACHMENT" | "INLINE")?,
312
- file_name: ::String,
313
- content_description: ::String?,
314
- content_id: ::String?,
315
- content_transfer_encoding: ("BASE64" | "QUOTED_PRINTABLE" | "SEVEN_BIT")?,
316
- content_type: ::String?
317
- },
318
- ]?
319
- }?,
320
- raw: {
321
- data: ::String
322
- }?,
323
- template: {
324
- template_name: ::String?,
325
- template_arn: ::String?,
326
- template_content: {
327
- subject: ::String?,
328
- text: ::String?,
329
- html: ::String?
330
- }?,
331
- template_data: ::String?,
332
- headers: Array[
333
- {
334
- name: ::String,
335
- value: ::String
336
- },
337
- ]?,
338
- attachments: Array[
339
- {
340
- raw_content: ::String,
341
- content_disposition: ("ATTACHMENT" | "INLINE")?,
342
- file_name: ::String,
343
- content_description: ::String?,
344
- content_id: ::String?,
345
- content_transfer_encoding: ("BASE64" | "QUOTED_PRINTABLE" | "SEVEN_BIT")?,
346
- content_type: ::String?
347
- },
348
- ]?
349
- }?
350
- },
247
+ content: Params::email_content,
351
248
  ?tags: Array[
352
249
  {
353
250
  key: ::String,
354
251
  value: ::String
355
- },
252
+ }
356
253
  ]
357
254
  ) -> _CreateDeliverabilityTestReportResponseSuccess
358
255
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDeliverabilityTestReportResponseSuccess
@@ -370,7 +267,7 @@ module Aws
370
267
  {
371
268
  key: ::String,
372
269
  value: ::String
373
- },
270
+ }
374
271
  ],
375
272
  ?dkim_signing_attributes: {
376
273
  domain_signing_selector: ::String?,
@@ -408,7 +305,7 @@ module Aws
408
305
  {
409
306
  key: ::String,
410
307
  value: ::String
411
- },
308
+ }
412
309
  ]
413
310
  ) -> _CreateEmailTemplateResponseSuccess
414
311
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEmailTemplateResponseSuccess
@@ -427,7 +324,7 @@ module Aws
427
324
  {
428
325
  name: ("SEND" | "COMPLAINT" | "PERMANENT_BOUNCE" | "TRANSIENT_BOUNCE" | "OPEN" | "CLICK" | "DELIVERY" | "DELIVERY_OPEN" | "DELIVERY_CLICK" | "DELIVERY_COMPLAINT")?,
429
326
  aggregation: ("RATE" | "VOLUME")?
430
- },
327
+ }
431
328
  ],
432
329
  start_date: ::Time,
433
330
  end_date: ::Time
@@ -435,22 +332,8 @@ module Aws
435
332
  message_insights_data_source: {
436
333
  start_date: ::Time,
437
334
  end_date: ::Time,
438
- include: {
439
- from_email_address: Array[::String]?,
440
- destination: Array[::String]?,
441
- subject: Array[::String]?,
442
- isp: Array[::String]?,
443
- last_delivery_event: Array[("SEND" | "DELIVERY" | "TRANSIENT_BOUNCE" | "PERMANENT_BOUNCE" | "UNDETERMINED_BOUNCE" | "COMPLAINT")]?,
444
- last_engagement_event: Array[("OPEN" | "CLICK")]?
445
- }?,
446
- exclude: {
447
- from_email_address: Array[::String]?,
448
- destination: Array[::String]?,
449
- subject: Array[::String]?,
450
- isp: Array[::String]?,
451
- last_delivery_event: Array[("SEND" | "DELIVERY" | "TRANSIENT_BOUNCE" | "PERMANENT_BOUNCE" | "UNDETERMINED_BOUNCE" | "COMPLAINT")]?,
452
- last_engagement_event: Array[("OPEN" | "CLICK")]?
453
- }?,
335
+ include: Params::message_insights_filters?,
336
+ exclude: Params::message_insights_filters?,
454
337
  max_results: ::Integer?
455
338
  }?
456
339
  },
@@ -495,14 +378,14 @@ module Aws
495
378
  routes_details: Array[
496
379
  {
497
380
  region: ::String
498
- },
381
+ }
499
382
  ]
500
383
  },
501
384
  ?tags: Array[
502
385
  {
503
386
  key: ::String,
504
387
  value: ::String
505
- },
388
+ }
506
389
  ]
507
390
  ) -> _CreateMultiRegionEndpointResponseSuccess
508
391
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMultiRegionEndpointResponseSuccess
@@ -523,7 +406,7 @@ module Aws
523
406
  {
524
407
  key: ::String,
525
408
  value: ::String
526
- },
409
+ }
527
410
  ]
528
411
  ) -> _CreateTenantResponseSuccess
529
412
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTenantResponseSuccess
@@ -1356,14 +1239,7 @@ module Aws
1356
1239
  def put_configuration_set_suppression_options: (
1357
1240
  configuration_set_name: ::String,
1358
1241
  ?suppressed_reasons: Array[("BOUNCE" | "COMPLAINT")],
1359
- ?validation_options: {
1360
- condition_threshold: {
1361
- condition_threshold_enabled: ("ENABLED" | "DISABLED"),
1362
- overall_confidence_threshold: {
1363
- confidence_verdict_threshold: ("MEDIUM" | "HIGH" | "MANAGED")
1364
- }?
1365
- }
1366
- }
1242
+ ?validation_options: Params::suppression_validation_options
1367
1243
  ) -> _PutConfigurationSetSuppressionOptionsResponseSuccess
1368
1244
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutConfigurationSetSuppressionOptionsResponseSuccess
1369
1245
 
@@ -1384,14 +1260,7 @@ module Aws
1384
1260
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_configuration_set_vdm_options-instance_method
1385
1261
  def put_configuration_set_vdm_options: (
1386
1262
  configuration_set_name: ::String,
1387
- ?vdm_options: {
1388
- dashboard_options: {
1389
- engagement_metrics: ("ENABLED" | "DISABLED")?
1390
- }?,
1391
- guardian_options: {
1392
- optimized_shared_delivery: ("ENABLED" | "DISABLED")?
1393
- }?
1394
- }
1263
+ ?vdm_options: Params::vdm_options
1395
1264
  ) -> _PutConfigurationSetVdmOptionsResponseSuccess
1396
1265
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutConfigurationSetVdmOptionsResponseSuccess
1397
1266
 
@@ -1439,7 +1308,7 @@ module Aws
1439
1308
  global: bool?,
1440
1309
  tracked_isps: Array[::String]?
1441
1310
  }?
1442
- },
1311
+ }
1443
1312
  ]
1444
1313
  ) -> _PutDeliverabilityDashboardOptionResponseSuccess
1445
1314
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutDeliverabilityDashboardOptionResponseSuccess
@@ -1529,36 +1398,10 @@ module Aws
1529
1398
  {
1530
1399
  name: ::String,
1531
1400
  value: ::String
1532
- },
1401
+ }
1533
1402
  ],
1534
1403
  default_content: {
1535
- template: {
1536
- template_name: ::String?,
1537
- template_arn: ::String?,
1538
- template_content: {
1539
- subject: ::String?,
1540
- text: ::String?,
1541
- html: ::String?
1542
- }?,
1543
- template_data: ::String?,
1544
- headers: Array[
1545
- {
1546
- name: ::String,
1547
- value: ::String
1548
- },
1549
- ]?,
1550
- attachments: Array[
1551
- {
1552
- raw_content: ::String,
1553
- content_disposition: ("ATTACHMENT" | "INLINE")?,
1554
- file_name: ::String,
1555
- content_description: ::String?,
1556
- content_id: ::String?,
1557
- content_transfer_encoding: ("BASE64" | "QUOTED_PRINTABLE" | "SEVEN_BIT")?,
1558
- content_type: ::String?
1559
- },
1560
- ]?
1561
- }?
1404
+ template: Params::template?
1562
1405
  },
1563
1406
  bulk_email_entries: Array[
1564
1407
  {
@@ -1571,7 +1414,7 @@ module Aws
1571
1414
  {
1572
1415
  name: ::String,
1573
1416
  value: ::String
1574
- },
1417
+ }
1575
1418
  ]?,
1576
1419
  replacement_email_content: {
1577
1420
  replacement_template: {
@@ -1582,9 +1425,9 @@ module Aws
1582
1425
  {
1583
1426
  name: ::String,
1584
1427
  value: ::String
1585
- },
1428
+ }
1586
1429
  ]?
1587
- },
1430
+ }
1588
1431
  ],
1589
1432
  ?configuration_set_name: ::String,
1590
1433
  ?endpoint_id: ::String,
@@ -1620,76 +1463,12 @@ module Aws
1620
1463
  ?reply_to_addresses: Array[::String],
1621
1464
  ?feedback_forwarding_email_address: ::String,
1622
1465
  ?feedback_forwarding_email_address_identity_arn: ::String,
1623
- content: {
1624
- simple: {
1625
- subject: {
1626
- data: ::String,
1627
- charset: ::String?
1628
- },
1629
- body: {
1630
- text: {
1631
- data: ::String,
1632
- charset: ::String?
1633
- }?,
1634
- html: {
1635
- data: ::String,
1636
- charset: ::String?
1637
- }?
1638
- },
1639
- headers: Array[
1640
- {
1641
- name: ::String,
1642
- value: ::String
1643
- },
1644
- ]?,
1645
- attachments: Array[
1646
- {
1647
- raw_content: ::String,
1648
- content_disposition: ("ATTACHMENT" | "INLINE")?,
1649
- file_name: ::String,
1650
- content_description: ::String?,
1651
- content_id: ::String?,
1652
- content_transfer_encoding: ("BASE64" | "QUOTED_PRINTABLE" | "SEVEN_BIT")?,
1653
- content_type: ::String?
1654
- },
1655
- ]?
1656
- }?,
1657
- raw: {
1658
- data: ::String
1659
- }?,
1660
- template: {
1661
- template_name: ::String?,
1662
- template_arn: ::String?,
1663
- template_content: {
1664
- subject: ::String?,
1665
- text: ::String?,
1666
- html: ::String?
1667
- }?,
1668
- template_data: ::String?,
1669
- headers: Array[
1670
- {
1671
- name: ::String,
1672
- value: ::String
1673
- },
1674
- ]?,
1675
- attachments: Array[
1676
- {
1677
- raw_content: ::String,
1678
- content_disposition: ("ATTACHMENT" | "INLINE")?,
1679
- file_name: ::String,
1680
- content_description: ::String?,
1681
- content_id: ::String?,
1682
- content_transfer_encoding: ("BASE64" | "QUOTED_PRINTABLE" | "SEVEN_BIT")?,
1683
- content_type: ::String?
1684
- },
1685
- ]?
1686
- }?
1687
- },
1466
+ content: Params::email_content,
1688
1467
  ?email_tags: Array[
1689
1468
  {
1690
1469
  name: ::String,
1691
1470
  value: ::String
1692
- },
1471
+ }
1693
1472
  ],
1694
1473
  ?configuration_set_name: ::String,
1695
1474
  ?endpoint_id: ::String,
@@ -1711,7 +1490,7 @@ module Aws
1711
1490
  {
1712
1491
  key: ::String,
1713
1492
  value: ::String
1714
- },
1493
+ }
1715
1494
  ]
1716
1495
  ) -> _TagResourceResponseSuccess
1717
1496
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
@@ -1744,32 +1523,7 @@ module Aws
1744
1523
  def update_configuration_set_event_destination: (
1745
1524
  configuration_set_name: ::String,
1746
1525
  event_destination_name: ::String,
1747
- event_destination: {
1748
- enabled: bool?,
1749
- matching_event_types: Array[("SEND" | "REJECT" | "BOUNCE" | "COMPLAINT" | "DELIVERY" | "OPEN" | "CLICK" | "RENDERING_FAILURE" | "DELIVERY_DELAY" | "SUBSCRIPTION")]?,
1750
- kinesis_firehose_destination: {
1751
- iam_role_arn: ::String,
1752
- delivery_stream_arn: ::String
1753
- }?,
1754
- cloud_watch_destination: {
1755
- dimension_configurations: Array[
1756
- {
1757
- dimension_name: ::String,
1758
- dimension_value_source: ("MESSAGE_TAG" | "EMAIL_HEADER" | "LINK_TAG"),
1759
- default_dimension_value: ::String
1760
- },
1761
- ]
1762
- }?,
1763
- sns_destination: {
1764
- topic_arn: ::String
1765
- }?,
1766
- event_bridge_destination: {
1767
- event_bus_arn: ::String
1768
- }?,
1769
- pinpoint_destination: {
1770
- application_arn: ::String?
1771
- }?
1772
- }
1526
+ event_destination: Params::event_destination_definition
1773
1527
  ) -> _UpdateConfigurationSetEventDestinationResponseSuccess
1774
1528
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfigurationSetEventDestinationResponseSuccess
1775
1529
 
@@ -1784,7 +1538,7 @@ module Aws
1784
1538
  {
1785
1539
  topic_name: ::String,
1786
1540
  subscription_status: ("OPT_IN" | "OPT_OUT")
1787
- },
1541
+ }
1788
1542
  ],
1789
1543
  ?unsubscribe_all: bool,
1790
1544
  ?attributes_data: ::String
@@ -1803,7 +1557,7 @@ module Aws
1803
1557
  display_name: ::String,
1804
1558
  description: ::String?,
1805
1559
  default_subscription_status: ("OPT_IN" | "OPT_OUT")
1806
- },
1560
+ }
1807
1561
  ],
1808
1562
  ?description: ::String
1809
1563
  ) -> _UpdateContactListResponseSuccess
data/sig/params.rbs ADDED
@@ -0,0 +1,133 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module SESV2
10
+ module Params
11
+ type suppression_validation_options = {
12
+ condition_threshold: {
13
+ condition_threshold_enabled: ("ENABLED" | "DISABLED"),
14
+ overall_confidence_threshold: {
15
+ confidence_verdict_threshold: ("MEDIUM" | "HIGH" | "MANAGED")
16
+ }?
17
+ }
18
+ }
19
+
20
+ type vdm_options = {
21
+ dashboard_options: {
22
+ engagement_metrics: ("ENABLED" | "DISABLED")?
23
+ }?,
24
+ guardian_options: {
25
+ optimized_shared_delivery: ("ENABLED" | "DISABLED")?
26
+ }?
27
+ }
28
+
29
+ type event_destination_definition = {
30
+ enabled: bool?,
31
+ matching_event_types: Array[("SEND" | "REJECT" | "BOUNCE" | "COMPLAINT" | "DELIVERY" | "OPEN" | "CLICK" | "RENDERING_FAILURE" | "DELIVERY_DELAY" | "SUBSCRIPTION")]?,
32
+ kinesis_firehose_destination: {
33
+ iam_role_arn: ::String,
34
+ delivery_stream_arn: ::String
35
+ }?,
36
+ cloud_watch_destination: {
37
+ dimension_configurations: Array[
38
+ {
39
+ dimension_name: ::String,
40
+ dimension_value_source: ("MESSAGE_TAG" | "EMAIL_HEADER" | "LINK_TAG"),
41
+ default_dimension_value: ::String
42
+ }
43
+ ]
44
+ }?,
45
+ sns_destination: {
46
+ topic_arn: ::String
47
+ }?,
48
+ event_bridge_destination: {
49
+ event_bus_arn: ::String
50
+ }?,
51
+ pinpoint_destination: {
52
+ application_arn: ::String?
53
+ }?
54
+ }
55
+
56
+ type body = {
57
+ text: {
58
+ data: ::String,
59
+ charset: ::String?
60
+ }?,
61
+ html: {
62
+ data: ::String,
63
+ charset: ::String?
64
+ }?
65
+ }
66
+
67
+ type message = {
68
+ subject: {
69
+ data: ::String,
70
+ charset: ::String?
71
+ },
72
+ body: Params::body,
73
+ headers: Array[
74
+ {
75
+ name: ::String,
76
+ value: ::String
77
+ }
78
+ ]?,
79
+ attachments: Array[
80
+ Params::attachment
81
+ ]?
82
+ }
83
+
84
+ type template = {
85
+ template_name: ::String?,
86
+ template_arn: ::String?,
87
+ template_content: {
88
+ subject: ::String?,
89
+ text: ::String?,
90
+ html: ::String?
91
+ }?,
92
+ template_data: ::String?,
93
+ headers: Array[
94
+ {
95
+ name: ::String,
96
+ value: ::String
97
+ }
98
+ ]?,
99
+ attachments: Array[
100
+ Params::attachment
101
+ ]?
102
+ }
103
+
104
+ type email_content = {
105
+ simple: Params::message?,
106
+ raw: {
107
+ data: ::String
108
+ }?,
109
+ template: Params::template?
110
+ }
111
+
112
+ type attachment = {
113
+ raw_content: ::String,
114
+ content_disposition: ("ATTACHMENT" | "INLINE")?,
115
+ file_name: ::String,
116
+ content_description: ::String?,
117
+ content_id: ::String?,
118
+ content_transfer_encoding: ("BASE64" | "QUOTED_PRINTABLE" | "SEVEN_BIT")?,
119
+ content_type: ::String?
120
+ }
121
+
122
+ type message_insights_filters = {
123
+ from_email_address: Array[::String]?,
124
+ destination: Array[::String]?,
125
+ subject: Array[::String]?,
126
+ isp: Array[::String]?,
127
+ last_delivery_event: Array[("SEND" | "DELIVERY" | "TRANSIENT_BOUNCE" | "PERMANENT_BOUNCE" | "UNDETERMINED_BOUNCE" | "COMPLAINT")]?,
128
+ last_engagement_event: Array[("OPEN" | "CLICK")]?
129
+ }
130
+
131
+ end
132
+ end
133
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sesv2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.98.0
4
+ version: 1.99.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -67,6 +67,7 @@ files:
67
67
  - lib/aws-sdk-sesv2/types.rb
68
68
  - sig/client.rbs
69
69
  - sig/errors.rbs
70
+ - sig/params.rbs
70
71
  - sig/resource.rbs
71
72
  - sig/types.rbs
72
73
  - sig/waiters.rbs