aws-sdk-core 2.11.282 → 2.11.283

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,4 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": { }
4
+ }
@@ -0,0 +1,40 @@
1
+ {
2
+ "pagination": {
3
+ "ListConfigs": {
4
+ "input_token": "nextToken",
5
+ "limit_key": "maxResults",
6
+ "output_token": "nextToken",
7
+ "result_key": "configList"
8
+ },
9
+ "ListContacts": {
10
+ "input_token": "nextToken",
11
+ "limit_key": "maxResults",
12
+ "output_token": "nextToken",
13
+ "result_key": "contactList"
14
+ },
15
+ "ListDataflowEndpointGroups": {
16
+ "input_token": "nextToken",
17
+ "limit_key": "maxResults",
18
+ "output_token": "nextToken",
19
+ "result_key": "dataflowEndpointGroupList"
20
+ },
21
+ "ListMissionProfiles": {
22
+ "input_token": "nextToken",
23
+ "limit_key": "maxResults",
24
+ "output_token": "nextToken",
25
+ "result_key": "missionProfileList"
26
+ },
27
+ "ListGroundStations": {
28
+ "input_token": "nextToken",
29
+ "limit_key": "maxResults",
30
+ "output_token": "nextToken",
31
+ "result_key": "groundStationList"
32
+ },
33
+ "ListSatellites": {
34
+ "input_token": "nextToken",
35
+ "limit_key": "maxResults",
36
+ "output_token": "nextToken",
37
+ "result_key": "satellites"
38
+ }
39
+ }
40
+ }
@@ -268,6 +268,20 @@
268
268
  {"shape":"BadRequestException"}
269
269
  ]
270
270
  },
271
+ "GetDomainDeliverabilityCampaign":{
272
+ "name":"GetDomainDeliverabilityCampaign",
273
+ "http":{
274
+ "method":"GET",
275
+ "requestUri":"/v1/email/deliverability-dashboard/campaigns/{CampaignId}"
276
+ },
277
+ "input":{"shape":"GetDomainDeliverabilityCampaignRequest"},
278
+ "output":{"shape":"GetDomainDeliverabilityCampaignResponse"},
279
+ "errors":[
280
+ {"shape":"TooManyRequestsException"},
281
+ {"shape":"BadRequestException"},
282
+ {"shape":"NotFoundException"}
283
+ ]
284
+ },
271
285
  "GetDomainStatisticsReport":{
272
286
  "name":"GetDomainStatisticsReport",
273
287
  "http":{
@@ -336,6 +350,20 @@
336
350
  {"shape":"BadRequestException"}
337
351
  ]
338
352
  },
353
+ "ListDomainDeliverabilityCampaigns":{
354
+ "name":"ListDomainDeliverabilityCampaigns",
355
+ "http":{
356
+ "method":"GET",
357
+ "requestUri":"/v1/email/deliverability-dashboard/domains/{SubscribedDomain}/campaigns"
358
+ },
359
+ "input":{"shape":"ListDomainDeliverabilityCampaignsRequest"},
360
+ "output":{"shape":"ListDomainDeliverabilityCampaignsResponse"},
361
+ "errors":[
362
+ {"shape":"TooManyRequestsException"},
363
+ {"shape":"BadRequestException"},
364
+ {"shape":"NotFoundException"}
365
+ ]
366
+ },
339
367
  "ListEmailIdentities":{
340
368
  "name":"ListEmailIdentities",
341
369
  "http":{
@@ -655,6 +683,7 @@
655
683
  "Html":{"shape":"Content"}
656
684
  }
657
685
  },
686
+ "CampaignId":{"type":"string"},
658
687
  "Charset":{"type":"string"},
659
688
  "CloudWatchDestination":{
660
689
  "type":"structure",
@@ -724,6 +753,7 @@
724
753
  },
725
754
  "CreateConfigurationSetRequest":{
726
755
  "type":"structure",
756
+ "required":["ConfigurationSetName"],
727
757
  "members":{
728
758
  "ConfigurationSetName":{"shape":"ConfigurationSetName"},
729
759
  "TrackingOptions":{"shape":"TrackingOptions"},
@@ -895,6 +925,14 @@
895
925
  "members":{
896
926
  }
897
927
  },
928
+ "DeliverabilityDashboardAccountStatus":{
929
+ "type":"string",
930
+ "enum":[
931
+ "ACTIVE",
932
+ "PENDING_EXPIRATION",
933
+ "DISABLED"
934
+ ]
935
+ },
898
936
  "DeliverabilityTestReport":{
899
937
  "type":"structure",
900
938
  "members":{
@@ -964,6 +1002,42 @@
964
1002
  "type":"list",
965
1003
  "member":{"shape":"DnsToken"}
966
1004
  },
1005
+ "Domain":{"type":"string"},
1006
+ "DomainDeliverabilityCampaign":{
1007
+ "type":"structure",
1008
+ "members":{
1009
+ "CampaignId":{"shape":"CampaignId"},
1010
+ "ImageUrl":{"shape":"ImageUrl"},
1011
+ "Subject":{"shape":"Subject"},
1012
+ "FromAddress":{"shape":"Identity"},
1013
+ "SendingIps":{"shape":"IpList"},
1014
+ "FirstSeenDateTime":{"shape":"Timestamp"},
1015
+ "LastSeenDateTime":{"shape":"Timestamp"},
1016
+ "InboxCount":{"shape":"Volume"},
1017
+ "SpamCount":{"shape":"Volume"},
1018
+ "ReadRate":{"shape":"Percentage"},
1019
+ "DeleteRate":{"shape":"Percentage"},
1020
+ "ReadDeleteRate":{"shape":"Percentage"},
1021
+ "ProjectedVolume":{"shape":"Volume"},
1022
+ "Esps":{"shape":"Esps"}
1023
+ }
1024
+ },
1025
+ "DomainDeliverabilityCampaignList":{
1026
+ "type":"list",
1027
+ "member":{"shape":"DomainDeliverabilityCampaign"}
1028
+ },
1029
+ "DomainDeliverabilityTrackingOption":{
1030
+ "type":"structure",
1031
+ "members":{
1032
+ "Domain":{"shape":"Domain"},
1033
+ "SubscriptionStartDate":{"shape":"Timestamp"},
1034
+ "InboxPlacementTrackingOption":{"shape":"InboxPlacementTrackingOption"}
1035
+ }
1036
+ },
1037
+ "DomainDeliverabilityTrackingOptions":{
1038
+ "type":"list",
1039
+ "member":{"shape":"DomainDeliverabilityTrackingOption"}
1040
+ },
967
1041
  "DomainIspPlacement":{
968
1042
  "type":"structure",
969
1043
  "members":{
@@ -991,6 +1065,11 @@
991
1065
  }
992
1066
  },
993
1067
  "Enabled":{"type":"boolean"},
1068
+ "Esp":{"type":"string"},
1069
+ "Esps":{
1070
+ "type":"list",
1071
+ "member":{"shape":"Esp"}
1072
+ },
994
1073
  "EventDestination":{
995
1074
  "type":"structure",
996
1075
  "required":[
@@ -1060,7 +1139,11 @@
1060
1139
  "type":"structure",
1061
1140
  "required":["BlacklistItemNames"],
1062
1141
  "members":{
1063
- "BlacklistItemNames":{"shape":"BlacklistItemNames"}
1142
+ "BlacklistItemNames":{
1143
+ "shape":"BlacklistItemNames",
1144
+ "location":"querystring",
1145
+ "locationName":"BlacklistItemNames"
1146
+ }
1064
1147
  }
1065
1148
  },
1066
1149
  "GetBlacklistReportsResponse":{
@@ -1105,7 +1188,8 @@
1105
1188
  "TrackingOptions":{"shape":"TrackingOptions"},
1106
1189
  "DeliveryOptions":{"shape":"DeliveryOptions"},
1107
1190
  "ReputationOptions":{"shape":"ReputationOptions"},
1108
- "SendingOptions":{"shape":"SendingOptions"}
1191
+ "SendingOptions":{"shape":"SendingOptions"},
1192
+ "Tags":{"shape":"TagList"}
1109
1193
  }
1110
1194
  },
1111
1195
  "GetDedicatedIpRequest":{
@@ -1128,9 +1212,21 @@
1128
1212
  "GetDedicatedIpsRequest":{
1129
1213
  "type":"structure",
1130
1214
  "members":{
1131
- "PoolName":{"shape":"PoolName"},
1132
- "NextToken":{"shape":"NextToken"},
1133
- "PageSize":{"shape":"MaxItems"}
1215
+ "PoolName":{
1216
+ "shape":"PoolName",
1217
+ "location":"querystring",
1218
+ "locationName":"PoolName"
1219
+ },
1220
+ "NextToken":{
1221
+ "shape":"NextToken",
1222
+ "location":"querystring",
1223
+ "locationName":"NextToken"
1224
+ },
1225
+ "PageSize":{
1226
+ "shape":"MaxItems",
1227
+ "location":"querystring",
1228
+ "locationName":"PageSize"
1229
+ }
1134
1230
  }
1135
1231
  },
1136
1232
  "GetDedicatedIpsResponse":{
@@ -1149,7 +1245,11 @@
1149
1245
  "type":"structure",
1150
1246
  "required":["DashboardEnabled"],
1151
1247
  "members":{
1152
- "DashboardEnabled":{"shape":"Enabled"}
1248
+ "DashboardEnabled":{"shape":"Enabled"},
1249
+ "SubscriptionExpiryDate":{"shape":"Timestamp"},
1250
+ "AccountStatus":{"shape":"DeliverabilityDashboardAccountStatus"},
1251
+ "ActiveSubscribedDomains":{"shape":"DomainDeliverabilityTrackingOptions"},
1252
+ "PendingExpirationSubscribedDomains":{"shape":"DomainDeliverabilityTrackingOptions"}
1153
1253
  }
1154
1254
  },
1155
1255
  "GetDeliverabilityTestReportRequest":{
@@ -1174,7 +1274,26 @@
1174
1274
  "DeliverabilityTestReport":{"shape":"DeliverabilityTestReport"},
1175
1275
  "OverallPlacement":{"shape":"PlacementStatistics"},
1176
1276
  "IspPlacements":{"shape":"IspPlacements"},
1177
- "Message":{"shape":"MessageContent"}
1277
+ "Message":{"shape":"MessageContent"},
1278
+ "Tags":{"shape":"TagList"}
1279
+ }
1280
+ },
1281
+ "GetDomainDeliverabilityCampaignRequest":{
1282
+ "type":"structure",
1283
+ "required":["CampaignId"],
1284
+ "members":{
1285
+ "CampaignId":{
1286
+ "shape":"CampaignId",
1287
+ "location":"uri",
1288
+ "locationName":"CampaignId"
1289
+ }
1290
+ }
1291
+ },
1292
+ "GetDomainDeliverabilityCampaignResponse":{
1293
+ "type":"structure",
1294
+ "required":["DomainDeliverabilityCampaign"],
1295
+ "members":{
1296
+ "DomainDeliverabilityCampaign":{"shape":"DomainDeliverabilityCampaign"}
1178
1297
  }
1179
1298
  },
1180
1299
  "GetDomainStatisticsReportRequest":{
@@ -1190,8 +1309,16 @@
1190
1309
  "location":"uri",
1191
1310
  "locationName":"Domain"
1192
1311
  },
1193
- "StartDate":{"shape":"Timestamp"},
1194
- "EndDate":{"shape":"Timestamp"}
1312
+ "StartDate":{
1313
+ "shape":"Timestamp",
1314
+ "location":"querystring",
1315
+ "locationName":"StartDate"
1316
+ },
1317
+ "EndDate":{
1318
+ "shape":"Timestamp",
1319
+ "location":"querystring",
1320
+ "locationName":"EndDate"
1321
+ }
1195
1322
  }
1196
1323
  },
1197
1324
  "GetDomainStatisticsReportResponse":{
@@ -1223,7 +1350,8 @@
1223
1350
  "FeedbackForwardingStatus":{"shape":"Enabled"},
1224
1351
  "VerifiedForSendingStatus":{"shape":"Enabled"},
1225
1352
  "DkimAttributes":{"shape":"DkimAttributes"},
1226
- "MailFromAttributes":{"shape":"MailFromAttributes"}
1353
+ "MailFromAttributes":{"shape":"MailFromAttributes"},
1354
+ "Tags":{"shape":"TagList"}
1227
1355
  }
1228
1356
  },
1229
1357
  "Identity":{"type":"string"},
@@ -1247,8 +1375,24 @@
1247
1375
  "MANAGED_DOMAIN"
1248
1376
  ]
1249
1377
  },
1378
+ "ImageUrl":{"type":"string"},
1379
+ "InboxPlacementTrackingOption":{
1380
+ "type":"structure",
1381
+ "members":{
1382
+ "Global":{"shape":"Enabled"},
1383
+ "TrackedIsps":{"shape":"IspNameList"}
1384
+ }
1385
+ },
1250
1386
  "Ip":{"type":"string"},
1387
+ "IpList":{
1388
+ "type":"list",
1389
+ "member":{"shape":"Ip"}
1390
+ },
1251
1391
  "IspName":{"type":"string"},
1392
+ "IspNameList":{
1393
+ "type":"list",
1394
+ "member":{"shape":"IspName"}
1395
+ },
1252
1396
  "IspPlacement":{
1253
1397
  "type":"structure",
1254
1398
  "members":{
@@ -1282,8 +1426,16 @@
1282
1426
  "ListConfigurationSetsRequest":{
1283
1427
  "type":"structure",
1284
1428
  "members":{
1285
- "NextToken":{"shape":"NextToken"},
1286
- "PageSize":{"shape":"MaxItems"}
1429
+ "NextToken":{
1430
+ "shape":"NextToken",
1431
+ "location":"querystring",
1432
+ "locationName":"NextToken"
1433
+ },
1434
+ "PageSize":{
1435
+ "shape":"MaxItems",
1436
+ "location":"querystring",
1437
+ "locationName":"PageSize"
1438
+ }
1287
1439
  }
1288
1440
  },
1289
1441
  "ListConfigurationSetsResponse":{
@@ -1296,8 +1448,16 @@
1296
1448
  "ListDedicatedIpPoolsRequest":{
1297
1449
  "type":"structure",
1298
1450
  "members":{
1299
- "NextToken":{"shape":"NextToken"},
1300
- "PageSize":{"shape":"MaxItems"}
1451
+ "NextToken":{
1452
+ "shape":"NextToken",
1453
+ "location":"querystring",
1454
+ "locationName":"NextToken"
1455
+ },
1456
+ "PageSize":{
1457
+ "shape":"MaxItems",
1458
+ "location":"querystring",
1459
+ "locationName":"PageSize"
1460
+ }
1301
1461
  }
1302
1462
  },
1303
1463
  "ListDedicatedIpPoolsResponse":{
@@ -1310,8 +1470,16 @@
1310
1470
  "ListDeliverabilityTestReportsRequest":{
1311
1471
  "type":"structure",
1312
1472
  "members":{
1313
- "NextToken":{"shape":"NextToken"},
1314
- "PageSize":{"shape":"MaxItems"}
1473
+ "NextToken":{
1474
+ "shape":"NextToken",
1475
+ "location":"querystring",
1476
+ "locationName":"NextToken"
1477
+ },
1478
+ "PageSize":{
1479
+ "shape":"MaxItems",
1480
+ "location":"querystring",
1481
+ "locationName":"PageSize"
1482
+ }
1315
1483
  }
1316
1484
  },
1317
1485
  "ListDeliverabilityTestReportsResponse":{
@@ -1322,11 +1490,62 @@
1322
1490
  "NextToken":{"shape":"NextToken"}
1323
1491
  }
1324
1492
  },
1493
+ "ListDomainDeliverabilityCampaignsRequest":{
1494
+ "type":"structure",
1495
+ "required":[
1496
+ "StartDate",
1497
+ "EndDate",
1498
+ "SubscribedDomain"
1499
+ ],
1500
+ "members":{
1501
+ "StartDate":{
1502
+ "shape":"Timestamp",
1503
+ "location":"querystring",
1504
+ "locationName":"StartDate"
1505
+ },
1506
+ "EndDate":{
1507
+ "shape":"Timestamp",
1508
+ "location":"querystring",
1509
+ "locationName":"EndDate"
1510
+ },
1511
+ "SubscribedDomain":{
1512
+ "shape":"Domain",
1513
+ "location":"uri",
1514
+ "locationName":"SubscribedDomain"
1515
+ },
1516
+ "NextToken":{
1517
+ "shape":"NextToken",
1518
+ "location":"querystring",
1519
+ "locationName":"NextToken"
1520
+ },
1521
+ "PageSize":{
1522
+ "shape":"MaxItems",
1523
+ "location":"querystring",
1524
+ "locationName":"PageSize"
1525
+ }
1526
+ }
1527
+ },
1528
+ "ListDomainDeliverabilityCampaignsResponse":{
1529
+ "type":"structure",
1530
+ "required":["DomainDeliverabilityCampaigns"],
1531
+ "members":{
1532
+ "DomainDeliverabilityCampaigns":{"shape":"DomainDeliverabilityCampaignList"},
1533
+ "NextToken":{"shape":"NextToken"}
1534
+ }
1535
+ },
1325
1536
  "ListEmailIdentitiesRequest":{
1326
1537
  "type":"structure",
1327
1538
  "members":{
1328
- "NextToken":{"shape":"NextToken"},
1329
- "PageSize":{"shape":"MaxItems"}
1539
+ "NextToken":{
1540
+ "shape":"NextToken",
1541
+ "location":"querystring",
1542
+ "locationName":"NextToken"
1543
+ },
1544
+ "PageSize":{
1545
+ "shape":"MaxItems",
1546
+ "location":"querystring",
1547
+ "locationName":"PageSize"
1548
+ }
1330
1549
  }
1331
1550
  },
1332
1551
  "ListEmailIdentitiesResponse":{
@@ -1344,7 +1563,11 @@
1344
1563
  "type":"structure",
1345
1564
  "required":["ResourceArn"],
1346
1565
  "members":{
1347
- "ResourceArn":{"shape":"AmazonResourceName"}
1566
+ "ResourceArn":{
1567
+ "shape":"AmazonResourceName",
1568
+ "location":"querystring",
1569
+ "locationName":"ResourceArn"
1570
+ }
1348
1571
  }
1349
1572
  },
1350
1573
  "ListTagsForResourceResponse":{
@@ -1594,7 +1817,8 @@
1594
1817
  "type":"structure",
1595
1818
  "required":["DashboardEnabled"],
1596
1819
  "members":{
1597
- "DashboardEnabled":{"shape":"Enabled"}
1820
+ "DashboardEnabled":{"shape":"Enabled"},
1821
+ "SubscribedDomains":{"shape":"DomainDeliverabilityTrackingOptions"}
1598
1822
  }
1599
1823
  },
1600
1824
  "PutDeliverabilityDashboardOptionResponse":{
@@ -1724,6 +1948,7 @@
1724
1948
  "TopicArn":{"shape":"AmazonResourceName"}
1725
1949
  }
1726
1950
  },
1951
+ "Subject":{"type":"string"},
1727
1952
  "Tag":{
1728
1953
  "type":"structure",
1729
1954
  "required":[