aws-sdk-core 2.4.3 → 2.4.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,6 +11,24 @@
11
11
  "targetPrefix":"DirectoryService_20150416"
12
12
  },
13
13
  "operations":{
14
+ "AddIpRoutes":{
15
+ "name":"AddIpRoutes",
16
+ "http":{
17
+ "method":"POST",
18
+ "requestUri":"/"
19
+ },
20
+ "input":{"shape":"AddIpRoutesRequest"},
21
+ "output":{"shape":"AddIpRoutesResult"},
22
+ "errors":[
23
+ {"shape":"EntityDoesNotExistException"},
24
+ {"shape":"EntityAlreadyExistsException"},
25
+ {"shape":"InvalidParameterException"},
26
+ {"shape":"DirectoryUnavailableException"},
27
+ {"shape":"IpRouteLimitExceededException"},
28
+ {"shape":"ClientException"},
29
+ {"shape":"ServiceException"}
30
+ ]
31
+ },
14
32
  "AddTagsToResource":{
15
33
  "name":"AddTagsToResource",
16
34
  "http":{
@@ -407,6 +425,22 @@
407
425
  {"shape":"ServiceException"}
408
426
  ]
409
427
  },
428
+ "ListIpRoutes":{
429
+ "name":"ListIpRoutes",
430
+ "http":{
431
+ "method":"POST",
432
+ "requestUri":"/"
433
+ },
434
+ "input":{"shape":"ListIpRoutesRequest"},
435
+ "output":{"shape":"ListIpRoutesResult"},
436
+ "errors":[
437
+ {"shape":"EntityDoesNotExistException"},
438
+ {"shape":"InvalidNextTokenException"},
439
+ {"shape":"InvalidParameterException"},
440
+ {"shape":"ClientException"},
441
+ {"shape":"ServiceException"}
442
+ ]
443
+ },
410
444
  "ListTagsForResource":{
411
445
  "name":"ListTagsForResource",
412
446
  "http":{
@@ -438,6 +472,22 @@
438
472
  {"shape":"ServiceException"}
439
473
  ]
440
474
  },
475
+ "RemoveIpRoutes":{
476
+ "name":"RemoveIpRoutes",
477
+ "http":{
478
+ "method":"POST",
479
+ "requestUri":"/"
480
+ },
481
+ "input":{"shape":"RemoveIpRoutesRequest"},
482
+ "output":{"shape":"RemoveIpRoutesResult"},
483
+ "errors":[
484
+ {"shape":"EntityDoesNotExistException"},
485
+ {"shape":"InvalidParameterException"},
486
+ {"shape":"DirectoryUnavailableException"},
487
+ {"shape":"ClientException"},
488
+ {"shape":"ServiceException"}
489
+ ]
490
+ },
441
491
  "RemoveTagsFromResource":{
442
492
  "name":"RemoveTagsFromResource",
443
493
  "http":{
@@ -523,6 +573,23 @@
523
573
  "max":128,
524
574
  "min":1
525
575
  },
576
+ "AddIpRoutesRequest":{
577
+ "type":"structure",
578
+ "required":[
579
+ "DirectoryId",
580
+ "IpRoutes"
581
+ ],
582
+ "members":{
583
+ "DirectoryId":{"shape":"DirectoryId"},
584
+ "IpRoutes":{"shape":"IpRoutes"},
585
+ "UpdateSecurityGroupForDirectoryControllers":{"shape":"UpdateSecurityGroupForDirectoryControllers"}
586
+ }
587
+ },
588
+ "AddIpRoutesResult":{
589
+ "type":"structure",
590
+ "members":{
591
+ }
592
+ },
526
593
  "AddTagsToResourceRequest":{
527
594
  "type":"structure",
528
595
  "required":[
@@ -539,6 +606,7 @@
539
606
  "members":{
540
607
  }
541
608
  },
609
+ "AddedDateTime":{"type":"timestamp"},
542
610
  "AliasName":{
543
611
  "type":"string",
544
612
  "max":62,
@@ -574,6 +642,14 @@
574
642
  "type":"list",
575
643
  "member":{"shape":"AvailabilityZone"}
576
644
  },
645
+ "CidrIp":{
646
+ "type":"string",
647
+ "pattern":"^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\/([1-9]|[1-2][0-9]|3[0-2]))$"
648
+ },
649
+ "CidrIps":{
650
+ "type":"list",
651
+ "member":{"shape":"CidrIp"}
652
+ },
577
653
  "ClientException":{
578
654
  "type":"structure",
579
655
  "members":{
@@ -1233,12 +1309,74 @@
1233
1309
  "type":"list",
1234
1310
  "member":{"shape":"IpAddr"}
1235
1311
  },
1312
+ "IpRoute":{
1313
+ "type":"structure",
1314
+ "members":{
1315
+ "CidrIp":{"shape":"CidrIp"},
1316
+ "Description":{"shape":"Description"}
1317
+ }
1318
+ },
1319
+ "IpRouteInfo":{
1320
+ "type":"structure",
1321
+ "members":{
1322
+ "DirectoryId":{"shape":"DirectoryId"},
1323
+ "CidrIp":{"shape":"CidrIp"},
1324
+ "IpRouteStatusMsg":{"shape":"IpRouteStatusMsg"},
1325
+ "AddedDateTime":{"shape":"AddedDateTime"},
1326
+ "IpRouteStatusReason":{"shape":"IpRouteStatusReason"},
1327
+ "Description":{"shape":"Description"}
1328
+ }
1329
+ },
1330
+ "IpRouteLimitExceededException":{
1331
+ "type":"structure",
1332
+ "members":{
1333
+ "Message":{"shape":"ExceptionMessage"},
1334
+ "RequestId":{"shape":"RequestId"}
1335
+ },
1336
+ "exception":true
1337
+ },
1338
+ "IpRouteStatusMsg":{
1339
+ "type":"string",
1340
+ "enum":[
1341
+ "Adding",
1342
+ "Added",
1343
+ "Removing",
1344
+ "Removed",
1345
+ "AddFailed",
1346
+ "RemoveFailed"
1347
+ ]
1348
+ },
1349
+ "IpRouteStatusReason":{"type":"string"},
1350
+ "IpRoutes":{
1351
+ "type":"list",
1352
+ "member":{"shape":"IpRoute"}
1353
+ },
1354
+ "IpRoutesInfo":{
1355
+ "type":"list",
1356
+ "member":{"shape":"IpRouteInfo"}
1357
+ },
1236
1358
  "LastUpdatedDateTime":{"type":"timestamp"},
1237
1359
  "LaunchTime":{"type":"timestamp"},
1238
1360
  "Limit":{
1239
1361
  "type":"integer",
1240
1362
  "min":0
1241
1363
  },
1364
+ "ListIpRoutesRequest":{
1365
+ "type":"structure",
1366
+ "required":["DirectoryId"],
1367
+ "members":{
1368
+ "DirectoryId":{"shape":"DirectoryId"},
1369
+ "NextToken":{"shape":"NextToken"},
1370
+ "Limit":{"shape":"Limit"}
1371
+ }
1372
+ },
1373
+ "ListIpRoutesResult":{
1374
+ "type":"structure",
1375
+ "members":{
1376
+ "IpRoutesInfo":{"shape":"IpRoutesInfo"},
1377
+ "NextToken":{"shape":"NextToken"}
1378
+ }
1379
+ },
1242
1380
  "ListTagsForResourceRequest":{
1243
1381
  "type":"structure",
1244
1382
  "required":["ResourceId"],
@@ -1347,6 +1485,22 @@
1347
1485
  "type":"list",
1348
1486
  "member":{"shape":"RemoteDomainName"}
1349
1487
  },
1488
+ "RemoveIpRoutesRequest":{
1489
+ "type":"structure",
1490
+ "required":[
1491
+ "DirectoryId",
1492
+ "CidrIps"
1493
+ ],
1494
+ "members":{
1495
+ "DirectoryId":{"shape":"DirectoryId"},
1496
+ "CidrIps":{"shape":"CidrIps"}
1497
+ }
1498
+ },
1499
+ "RemoveIpRoutesResult":{
1500
+ "type":"structure",
1501
+ "members":{
1502
+ }
1503
+ },
1350
1504
  "RemoveTagsFromResourceRequest":{
1351
1505
  "type":"structure",
1352
1506
  "required":[
@@ -1647,6 +1801,7 @@
1647
1801
  "members":{
1648
1802
  }
1649
1803
  },
1804
+ "UpdateSecurityGroupForDirectoryControllers":{"type":"boolean"},
1650
1805
  "UseSameUsername":{"type":"boolean"},
1651
1806
  "UserName":{
1652
1807
  "type":"string",
@@ -9770,18 +9770,19 @@
9770
9770
  "AllowEgressFromLocalVpcToRemoteClassicLink":{
9771
9771
  "shape":"Boolean",
9772
9772
  "locationName":"allowEgressFromLocalVpcToRemoteClassicLink"
9773
+ },
9774
+ "AllowDnsResolutionFromRemoteVpc":{
9775
+ "shape":"Boolean",
9776
+ "locationName":"allowDnsResolutionFromRemoteVpc"
9773
9777
  }
9774
9778
  }
9775
9779
  },
9776
9780
  "PeeringConnectionOptionsRequest":{
9777
9781
  "type":"structure",
9778
- "required":[
9779
- "AllowEgressFromLocalClassicLinkToRemoteVpc",
9780
- "AllowEgressFromLocalVpcToRemoteClassicLink"
9781
- ],
9782
9782
  "members":{
9783
9783
  "AllowEgressFromLocalClassicLinkToRemoteVpc":{"shape":"Boolean"},
9784
- "AllowEgressFromLocalVpcToRemoteClassicLink":{"shape":"Boolean"}
9784
+ "AllowEgressFromLocalVpcToRemoteClassicLink":{"shape":"Boolean"},
9785
+ "AllowDnsResolutionFromRemoteVpc":{"shape":"Boolean"}
9785
9786
  }
9786
9787
  },
9787
9788
  "PermissionGroup":{
@@ -13616,6 +13617,10 @@
13616
13617
  "AllowEgressFromLocalVpcToRemoteClassicLink":{
13617
13618
  "shape":"Boolean",
13618
13619
  "locationName":"allowEgressFromLocalVpcToRemoteClassicLink"
13620
+ },
13621
+ "AllowDnsResolutionFromRemoteVpc":{
13622
+ "shape":"Boolean",
13623
+ "locationName":"allowDnsResolutionFromRemoteVpc"
13619
13624
  }
13620
13625
  }
13621
13626
  },
@@ -1,5 +1,953 @@
1
1
  {
2
2
  "version": "1.0",
3
3
  "examples": {
4
+ "CloneReceiptRuleSet": [
5
+ {
6
+ "input": {
7
+ "OriginalRuleSetName": "RuleSetToClone",
8
+ "RuleSetName": "RuleSetToCreate"
9
+ },
10
+ "comments": {
11
+ "input": {
12
+ },
13
+ "output": {
14
+ }
15
+ },
16
+ "description": "The following example creates a receipt rule set by cloning an existing one:",
17
+ "id": "clonereceiptruleset-1469055039770",
18
+ "title": "CloneReceiptRuleSet"
19
+ }
20
+ ],
21
+ "CreateReceiptFilter": [
22
+ {
23
+ "input": {
24
+ "Filter": {
25
+ "IpFilter": {
26
+ "Cidr": "1.2.3.4/24",
27
+ "Policy": "Allow"
28
+ },
29
+ "Name": "MyFilter"
30
+ }
31
+ },
32
+ "comments": {
33
+ "input": {
34
+ },
35
+ "output": {
36
+ }
37
+ },
38
+ "description": "The following example creates a new IP address filter:",
39
+ "id": "createreceiptfilter-1469122681253",
40
+ "title": "CreateReceiptFilter"
41
+ }
42
+ ],
43
+ "CreateReceiptRule": [
44
+ {
45
+ "input": {
46
+ "After": "",
47
+ "Rule": {
48
+ "Actions": [
49
+ {
50
+ "S3Action": {
51
+ "BucketName": "MyBucket",
52
+ "ObjectKeyPrefix": "email"
53
+ }
54
+ }
55
+ ],
56
+ "Enabled": true,
57
+ "Name": "MyRule",
58
+ "ScanEnabled": true,
59
+ "TlsPolicy": "Optional"
60
+ },
61
+ "RuleSetName": "MyRuleSet"
62
+ },
63
+ "comments": {
64
+ "input": {
65
+ },
66
+ "output": {
67
+ }
68
+ },
69
+ "description": "The following example creates a new receipt rule:",
70
+ "id": "createreceiptrule-1469122946515",
71
+ "title": "CreateReceiptRule"
72
+ }
73
+ ],
74
+ "CreateReceiptRuleSet": [
75
+ {
76
+ "input": {
77
+ "RuleSetName": "MyRuleSet"
78
+ },
79
+ "comments": {
80
+ "input": {
81
+ },
82
+ "output": {
83
+ }
84
+ },
85
+ "description": "The following example creates an empty receipt rule set:",
86
+ "id": "createreceiptruleset-1469058761646",
87
+ "title": "CreateReceiptRuleSet"
88
+ }
89
+ ],
90
+ "DeleteIdentity": [
91
+ {
92
+ "input": {
93
+ "Identity": "user@example.com"
94
+ },
95
+ "comments": {
96
+ "input": {
97
+ },
98
+ "output": {
99
+ }
100
+ },
101
+ "description": "The following example deletes an identity from the list of identities that have been submitted for verification with Amazon SES:",
102
+ "id": "deleteidentity-1469047858906",
103
+ "title": "DeleteIdentity"
104
+ }
105
+ ],
106
+ "DeleteIdentityPolicy": [
107
+ {
108
+ "input": {
109
+ "Identity": "user@example.com",
110
+ "PolicyName": "MyPolicy"
111
+ },
112
+ "comments": {
113
+ "input": {
114
+ },
115
+ "output": {
116
+ }
117
+ },
118
+ "description": "The following example deletes a sending authorization policy for an identity:",
119
+ "id": "deleteidentitypolicy-1469055282499",
120
+ "title": "DeleteIdentityPolicy"
121
+ }
122
+ ],
123
+ "DeleteReceiptFilter": [
124
+ {
125
+ "input": {
126
+ "FilterName": "MyFilter"
127
+ },
128
+ "comments": {
129
+ "input": {
130
+ },
131
+ "output": {
132
+ }
133
+ },
134
+ "description": "The following example deletes an IP address filter:",
135
+ "id": "deletereceiptfilter-1469055456835",
136
+ "title": "DeleteReceiptFilter"
137
+ }
138
+ ],
139
+ "DeleteReceiptRule": [
140
+ {
141
+ "input": {
142
+ "RuleName": "MyRule",
143
+ "RuleSetName": "MyRuleSet"
144
+ },
145
+ "comments": {
146
+ "input": {
147
+ },
148
+ "output": {
149
+ }
150
+ },
151
+ "description": "The following example deletes a receipt rule:",
152
+ "id": "deletereceiptrule-1469055563599",
153
+ "title": "DeleteReceiptRule"
154
+ }
155
+ ],
156
+ "DeleteReceiptRuleSet": [
157
+ {
158
+ "input": {
159
+ "RuleSetName": "MyRuleSet"
160
+ },
161
+ "comments": {
162
+ "input": {
163
+ },
164
+ "output": {
165
+ }
166
+ },
167
+ "description": "The following example deletes a receipt rule set:",
168
+ "id": "deletereceiptruleset-1469055713690",
169
+ "title": "DeleteReceiptRuleSet"
170
+ }
171
+ ],
172
+ "DeleteVerifiedEmailAddress": [
173
+ {
174
+ "input": {
175
+ "EmailAddress": "user@example.com"
176
+ },
177
+ "comments": {
178
+ "input": {
179
+ },
180
+ "output": {
181
+ }
182
+ },
183
+ "description": "The following example deletes an email address from the list of identities that have been submitted for verification with Amazon SES:",
184
+ "id": "deleteverifiedemailaddress-1469051086444",
185
+ "title": "DeleteVerifiedEmailAddress"
186
+ }
187
+ ],
188
+ "DescribeActiveReceiptRuleSet": [
189
+ {
190
+ "input": {
191
+ },
192
+ "output": {
193
+ "Metadata": {
194
+ "CreatedTimestamp": "2016-07-15T16:25:59.607Z",
195
+ "Name": "default-rule-set"
196
+ },
197
+ "Rules": [
198
+ {
199
+ "Actions": [
200
+ {
201
+ "S3Action": {
202
+ "BucketName": "MyBucket",
203
+ "ObjectKeyPrefix": "email"
204
+ }
205
+ }
206
+ ],
207
+ "Enabled": true,
208
+ "Name": "MyRule",
209
+ "ScanEnabled": true,
210
+ "TlsPolicy": "Optional"
211
+ }
212
+ ]
213
+ },
214
+ "comments": {
215
+ "input": {
216
+ },
217
+ "output": {
218
+ }
219
+ },
220
+ "description": "The following example returns the metadata and receipt rules for the receipt rule set that is currently active:",
221
+ "id": "describeactivereceiptruleset-1469121611502",
222
+ "title": "DescribeActiveReceiptRuleSet"
223
+ }
224
+ ],
225
+ "DescribeReceiptRule": [
226
+ {
227
+ "input": {
228
+ "RuleName": "MyRule",
229
+ "RuleSetName": "MyRuleSet"
230
+ },
231
+ "output": {
232
+ "Rule": {
233
+ "Actions": [
234
+ {
235
+ "S3Action": {
236
+ "BucketName": "MyBucket",
237
+ "ObjectKeyPrefix": "email"
238
+ }
239
+ }
240
+ ],
241
+ "Enabled": true,
242
+ "Name": "MyRule",
243
+ "ScanEnabled": true,
244
+ "TlsPolicy": "Optional"
245
+ }
246
+ },
247
+ "comments": {
248
+ "input": {
249
+ },
250
+ "output": {
251
+ }
252
+ },
253
+ "description": "The following example returns the details of a receipt rule:",
254
+ "id": "describereceiptrule-1469055813118",
255
+ "title": "DescribeReceiptRule"
256
+ }
257
+ ],
258
+ "DescribeReceiptRuleSet": [
259
+ {
260
+ "input": {
261
+ "RuleSetName": "MyRuleSet"
262
+ },
263
+ "output": {
264
+ "Metadata": {
265
+ "CreatedTimestamp": "2016-07-15T16:25:59.607Z",
266
+ "Name": "MyRuleSet"
267
+ },
268
+ "Rules": [
269
+ {
270
+ "Actions": [
271
+ {
272
+ "S3Action": {
273
+ "BucketName": "MyBucket",
274
+ "ObjectKeyPrefix": "email"
275
+ }
276
+ }
277
+ ],
278
+ "Enabled": true,
279
+ "Name": "MyRule",
280
+ "ScanEnabled": true,
281
+ "TlsPolicy": "Optional"
282
+ }
283
+ ]
284
+ },
285
+ "comments": {
286
+ "input": {
287
+ },
288
+ "output": {
289
+ }
290
+ },
291
+ "description": "The following example returns the metadata and receipt rules of a receipt rule set:",
292
+ "id": "describereceiptruleset-1469121240385",
293
+ "title": "DescribeReceiptRuleSet"
294
+ }
295
+ ],
296
+ "GetIdentityDkimAttributes": [
297
+ {
298
+ "input": {
299
+ "Identities": [
300
+ "example.com",
301
+ "user@example.com"
302
+ ]
303
+ },
304
+ "output": {
305
+ "DkimAttributes": {
306
+ "example.com": {
307
+ "DkimEnabled": true,
308
+ "DkimTokens": [
309
+ "EXAMPLEjcs5xoyqytjsotsijas7236gr",
310
+ "EXAMPLEjr76cvoc6mysspnioorxsn6ep",
311
+ "EXAMPLEkbmkqkhlm2lyz77ppkulerm4k"
312
+ ],
313
+ "DkimVerificationStatus": "Success"
314
+ },
315
+ "user@example.com": {
316
+ "DkimEnabled": false,
317
+ "DkimVerificationStatus": "NotStarted"
318
+ }
319
+ }
320
+ },
321
+ "comments": {
322
+ "input": {
323
+ },
324
+ "output": {
325
+ }
326
+ },
327
+ "description": "The following example retrieves the Amazon SES Easy DKIM attributes for a list of identities:",
328
+ "id": "getidentitydkimattributes-1469050695628",
329
+ "title": "GetIdentityDkimAttributes"
330
+ }
331
+ ],
332
+ "GetIdentityMailFromDomainAttributes": [
333
+ {
334
+ "input": {
335
+ "Identities": [
336
+ "example.com"
337
+ ]
338
+ },
339
+ "output": {
340
+ "MailFromDomainAttributes": {
341
+ "example.com": {
342
+ "BehaviorOnMXFailure": "UseDefaultValue",
343
+ "MailFromDomain": "bounces.example.com",
344
+ "MailFromDomainStatus": "Success"
345
+ }
346
+ }
347
+ },
348
+ "comments": {
349
+ "input": {
350
+ },
351
+ "output": {
352
+ }
353
+ },
354
+ "description": "The following example returns the custom MAIL FROM attributes for an identity:",
355
+ "id": "getidentitymailfromdomainattributes-1469123114860",
356
+ "title": "GetIdentityMailFromDomainAttributes"
357
+ }
358
+ ],
359
+ "GetIdentityNotificationAttributes": [
360
+ {
361
+ "input": {
362
+ "Identities": [
363
+ "example.com"
364
+ ]
365
+ },
366
+ "output": {
367
+ "NotificationAttributes": {
368
+ "example.com": {
369
+ "BounceTopic": "arn:aws:sns:us-east-1:EXAMPLE65304:ExampleTopic",
370
+ "ForwardingEnabled": true,
371
+ "HeadersInBounceNotificationsEnabled": false,
372
+ "HeadersInComplaintNotificationsEnabled": false,
373
+ "HeadersInDeliveryNotificationsEnabled": false
374
+ }
375
+ }
376
+ },
377
+ "comments": {
378
+ "input": {
379
+ },
380
+ "output": {
381
+ }
382
+ },
383
+ "description": "The following example returns the notification attributes for an identity:",
384
+ "id": "getidentitynotificationattributes-1469123466947",
385
+ "title": "GetIdentityNotificationAttributes"
386
+ }
387
+ ],
388
+ "GetIdentityPolicies": [
389
+ {
390
+ "input": {
391
+ "Identity": "example.com",
392
+ "PolicyNames": [
393
+ "MyPolicy"
394
+ ]
395
+ },
396
+ "output": {
397
+ "Policies": {
398
+ "MyPolicy": "{\"Version\":\"2008-10-17\",\"Statement\":[{\"Sid\":\"stmt1469123904194\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws:iam::123456789012:root\"},\"Action\":[\"ses:SendEmail\",\"ses:SendRawEmail\"],\"Resource\":\"arn:aws:ses:us-east-1:EXAMPLE65304:identity/example.com\"}]}"
399
+ }
400
+ },
401
+ "comments": {
402
+ "input": {
403
+ },
404
+ "output": {
405
+ }
406
+ },
407
+ "description": "The following example returns a sending authorization policy for an identity:",
408
+ "id": "getidentitypolicies-1469123949351",
409
+ "title": "GetIdentityPolicies"
410
+ }
411
+ ],
412
+ "GetIdentityVerificationAttributes": [
413
+ {
414
+ "input": {
415
+ "Identities": [
416
+ "example.com"
417
+ ]
418
+ },
419
+ "output": {
420
+ "VerificationAttributes": {
421
+ "example.com": {
422
+ "VerificationStatus": "Success",
423
+ "VerificationToken": "EXAMPLE3VYb9EDI2nTOQRi/Tf6MI/6bD6THIGiP1MVY="
424
+ }
425
+ }
426
+ },
427
+ "comments": {
428
+ "input": {
429
+ },
430
+ "output": {
431
+ }
432
+ },
433
+ "description": "The following example returns the verification status and the verification token for a domain identity:",
434
+ "id": "getidentityverificationattributes-1469124205897",
435
+ "title": "GetIdentityVerificationAttributes"
436
+ }
437
+ ],
438
+ "GetSendQuota": [
439
+ {
440
+ "output": {
441
+ "Max24HourSend": 200,
442
+ "MaxSendRate": 1,
443
+ "SentLast24Hours": 1
444
+ },
445
+ "comments": {
446
+ "input": {
447
+ },
448
+ "output": {
449
+ }
450
+ },
451
+ "description": "The following example returns the Amazon SES sending limits for an AWS account:",
452
+ "id": "getsendquota-1469047324508",
453
+ "title": "GetSendQuota"
454
+ }
455
+ ],
456
+ "GetSendStatistics": [
457
+ {
458
+ "output": {
459
+ "SendDataPoints": [
460
+ {
461
+ "Bounces": 0,
462
+ "Complaints": 0,
463
+ "DeliveryAttempts": 5,
464
+ "Rejects": 0,
465
+ "Timestamp": "2016-07-13T22:43:00Z"
466
+ },
467
+ {
468
+ "Bounces": 0,
469
+ "Complaints": 0,
470
+ "DeliveryAttempts": 3,
471
+ "Rejects": 0,
472
+ "Timestamp": "2016-07-13T23:13:00Z"
473
+ },
474
+ {
475
+ "Bounces": 0,
476
+ "Complaints": 0,
477
+ "DeliveryAttempts": 1,
478
+ "Rejects": 0,
479
+ "Timestamp": "2016-07-13T21:13:00Z"
480
+ }
481
+ ]
482
+ },
483
+ "comments": {
484
+ "input": {
485
+ },
486
+ "output": {
487
+ }
488
+ },
489
+ "description": "The following example returns Amazon SES sending statistics:",
490
+ "id": "getsendstatistics-1469047741329",
491
+ "title": "GetSendStatistics"
492
+ }
493
+ ],
494
+ "ListIdentities": [
495
+ {
496
+ "input": {
497
+ "IdentityType": "EmailAddress",
498
+ "MaxItems": 123,
499
+ "NextToken": ""
500
+ },
501
+ "output": {
502
+ "Identities": [
503
+ "user@example.com"
504
+ ],
505
+ "NextToken": ""
506
+ },
507
+ "comments": {
508
+ "input": {
509
+ },
510
+ "output": {
511
+ }
512
+ },
513
+ "description": "The following example lists the email address identities that have been submitted for verification with Amazon SES:",
514
+ "id": "listidentities-1469048638493",
515
+ "title": "ListIdentities"
516
+ }
517
+ ],
518
+ "ListIdentityPolicies": [
519
+ {
520
+ "input": {
521
+ "Identity": "example.com"
522
+ },
523
+ "output": {
524
+ "PolicyNames": [
525
+ "MyPolicy"
526
+ ]
527
+ },
528
+ "comments": {
529
+ "input": {
530
+ },
531
+ "output": {
532
+ }
533
+ },
534
+ "description": "The following example returns a list of sending authorization policies that are attached to an identity:",
535
+ "id": "listidentitypolicies-1469124417674",
536
+ "title": "ListIdentityPolicies"
537
+ }
538
+ ],
539
+ "ListReceiptFilters": [
540
+ {
541
+ "output": {
542
+ "Filters": [
543
+ {
544
+ "IpFilter": {
545
+ "Cidr": "1.2.3.4/24",
546
+ "Policy": "Block"
547
+ },
548
+ "Name": "MyFilter"
549
+ }
550
+ ]
551
+ },
552
+ "comments": {
553
+ "input": {
554
+ },
555
+ "output": {
556
+ }
557
+ },
558
+ "description": "The following example lists the IP address filters that are associated with an AWS account:",
559
+ "id": "listreceiptfilters-1469120786789",
560
+ "title": "ListReceiptFilters"
561
+ }
562
+ ],
563
+ "ListReceiptRuleSets": [
564
+ {
565
+ "input": {
566
+ "NextToken": ""
567
+ },
568
+ "output": {
569
+ "NextToken": "",
570
+ "RuleSets": [
571
+ {
572
+ "CreatedTimestamp": "2016-07-15T16:25:59.607Z",
573
+ "Name": "MyRuleSet"
574
+ }
575
+ ]
576
+ },
577
+ "comments": {
578
+ "input": {
579
+ },
580
+ "output": {
581
+ }
582
+ },
583
+ "description": "The following example lists the receipt rule sets that exist under an AWS account:",
584
+ "id": "listreceiptrulesets-1469121037235",
585
+ "title": "ListReceiptRuleSets"
586
+ }
587
+ ],
588
+ "ListVerifiedEmailAddresses": [
589
+ {
590
+ "output": {
591
+ "VerifiedEmailAddresses": [
592
+ "user1@example.com",
593
+ "user2@example.com"
594
+ ]
595
+ },
596
+ "comments": {
597
+ "input": {
598
+ },
599
+ "output": {
600
+ }
601
+ },
602
+ "description": "The following example lists all email addresses that have been submitted for verification with Amazon SES:",
603
+ "id": "listverifiedemailaddresses-1469051402570",
604
+ "title": "ListVerifiedEmailAddresses"
605
+ }
606
+ ],
607
+ "PutIdentityPolicy": [
608
+ {
609
+ "input": {
610
+ "Identity": "example.com",
611
+ "Policy": "{\"Version\":\"2008-10-17\",\"Statement\":[{\"Sid\":\"stmt1469123904194\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws:iam::123456789012:root\"},\"Action\":[\"ses:SendEmail\",\"ses:SendRawEmail\"],\"Resource\":\"arn:aws:ses:us-east-1:EXAMPLE65304:identity/example.com\"}]}",
612
+ "PolicyName": "MyPolicy"
613
+ },
614
+ "comments": {
615
+ "input": {
616
+ },
617
+ "output": {
618
+ }
619
+ },
620
+ "description": "The following example adds a sending authorization policy to an identity:",
621
+ "id": "putidentitypolicy-1469124560016",
622
+ "title": "PutIdentityPolicy"
623
+ }
624
+ ],
625
+ "ReorderReceiptRuleSet": [
626
+ {
627
+ "input": {
628
+ "RuleNames": [
629
+ "MyRule",
630
+ "MyOtherRule"
631
+ ],
632
+ "RuleSetName": "MyRuleSet"
633
+ },
634
+ "comments": {
635
+ "input": {
636
+ },
637
+ "output": {
638
+ }
639
+ },
640
+ "description": "The following example reorders the receipt rules within a receipt rule set:",
641
+ "id": "reorderreceiptruleset-1469058156806",
642
+ "title": "ReorderReceiptRuleSet"
643
+ }
644
+ ],
645
+ "SendEmail": [
646
+ {
647
+ "input": {
648
+ "Destination": {
649
+ "BccAddresses": [
650
+
651
+ ],
652
+ "CcAddresses": [
653
+ "recipient3@example.com"
654
+ ],
655
+ "ToAddresses": [
656
+ "recipient1@example.com",
657
+ "recipient2@example.com"
658
+ ]
659
+ },
660
+ "Message": {
661
+ "Body": {
662
+ "Html": {
663
+ "Charset": "UTF-8",
664
+ "Data": "This message body contains HTML formatting. It can, for example, contain links like this one: <a class=\"ulink\" href=\"http://docs.aws.amazon.com/ses/latest/DeveloperGuide\" target=\"_blank\">Amazon SES Developer Guide</a>."
665
+ },
666
+ "Text": {
667
+ "Charset": "UTF-8",
668
+ "Data": "This is the message body in text format."
669
+ }
670
+ },
671
+ "Subject": {
672
+ "Charset": "UTF-8",
673
+ "Data": "Test email"
674
+ }
675
+ },
676
+ "ReplyToAddresses": [
677
+
678
+ ],
679
+ "ReturnPath": "",
680
+ "ReturnPathArn": "",
681
+ "Source": "sender@example.com",
682
+ "SourceArn": ""
683
+ },
684
+ "output": {
685
+ "MessageId": "EXAMPLE78603177f-7a5433e7-8edb-42ae-af10-f0181f34d6ee-000000"
686
+ },
687
+ "comments": {
688
+ "input": {
689
+ },
690
+ "output": {
691
+ }
692
+ },
693
+ "description": "The following example sends a formatted email:",
694
+ "id": "sendemail-1469049656296",
695
+ "title": "SendEmail"
696
+ }
697
+ ],
698
+ "SendRawEmail": [
699
+ {
700
+ "input": {
701
+ "Destinations": [
702
+
703
+ ],
704
+ "FromArn": "",
705
+ "RawMessage": {
706
+ "Data": "From: sender@example.com\\nTo: recipient@example.com\\nSubject: Test email (contains an attachment)\\nMIME-Version: 1.0\\nContent-type: Multipart/Mixed; boundary=\"NextPart\"\\n\\n--NextPart\\nContent-Type: text/plain\\n\\nThis is the message body.\\n\\n--NextPart\\nContent-Type: text/plain;\\nContent-Disposition: attachment; filename=\"attachment.txt\"\\n\\nThis is the text in the attachment.\\n\\n--NextPart--"
707
+ },
708
+ "ReturnPathArn": "",
709
+ "Source": "",
710
+ "SourceArn": ""
711
+ },
712
+ "output": {
713
+ "MessageId": "EXAMPLEf3f73d99b-c63fb06f-d263-41f8-a0fb-d0dc67d56c07-000000"
714
+ },
715
+ "comments": {
716
+ "input": {
717
+ },
718
+ "output": {
719
+ }
720
+ },
721
+ "description": "The following example sends an email with an attachment:",
722
+ "id": "sendrawemail-1469118548649",
723
+ "title": "SendRawEmail"
724
+ }
725
+ ],
726
+ "SetActiveReceiptRuleSet": [
727
+ {
728
+ "input": {
729
+ "RuleSetName": "RuleSetToActivate"
730
+ },
731
+ "comments": {
732
+ "input": {
733
+ },
734
+ "output": {
735
+ }
736
+ },
737
+ "description": "The following example sets the active receipt rule set:",
738
+ "id": "setactivereceiptruleset-1469058391329",
739
+ "title": "SetActiveReceiptRuleSet"
740
+ }
741
+ ],
742
+ "SetIdentityDkimEnabled": [
743
+ {
744
+ "input": {
745
+ "DkimEnabled": true,
746
+ "Identity": "user@example.com"
747
+ },
748
+ "comments": {
749
+ "input": {
750
+ },
751
+ "output": {
752
+ }
753
+ },
754
+ "description": "The following example configures Amazon SES to Easy DKIM-sign the email sent from an identity:",
755
+ "id": "setidentitydkimenabled-1469057485202",
756
+ "title": "SetIdentityDkimEnabled"
757
+ }
758
+ ],
759
+ "SetIdentityFeedbackForwardingEnabled": [
760
+ {
761
+ "input": {
762
+ "ForwardingEnabled": true,
763
+ "Identity": "user@example.com"
764
+ },
765
+ "comments": {
766
+ "input": {
767
+ },
768
+ "output": {
769
+ }
770
+ },
771
+ "description": "The following example configures Amazon SES to forward an identity's bounces and complaints via email:",
772
+ "id": "setidentityfeedbackforwardingenabled-1469056811329",
773
+ "title": "SetIdentityFeedbackForwardingEnabled"
774
+ }
775
+ ],
776
+ "SetIdentityHeadersInNotificationsEnabled": [
777
+ {
778
+ "input": {
779
+ "Enabled": true,
780
+ "Identity": "user@example.com",
781
+ "NotificationType": "Bounce"
782
+ },
783
+ "comments": {
784
+ "input": {
785
+ },
786
+ "output": {
787
+ }
788
+ },
789
+ "description": "The following example configures Amazon SES to include the original email headers in the Amazon SNS bounce notifications for an identity:",
790
+ "id": "setidentityheadersinnotificationsenabled-1469057295001",
791
+ "title": "SetIdentityHeadersInNotificationsEnabled"
792
+ }
793
+ ],
794
+ "SetIdentityMailFromDomain": [
795
+ {
796
+ "input": {
797
+ "BehaviorOnMXFailure": "UseDefaultValue",
798
+ "Identity": "user@example.com",
799
+ "MailFromDomain": "bounces.example.com"
800
+ },
801
+ "comments": {
802
+ "input": {
803
+ },
804
+ "output": {
805
+ }
806
+ },
807
+ "description": "The following example configures Amazon SES to use a custom MAIL FROM domain for an identity:",
808
+ "id": "setidentitymailfromdomain-1469057693908",
809
+ "title": "SetIdentityMailFromDomain"
810
+ }
811
+ ],
812
+ "SetIdentityNotificationTopic": [
813
+ {
814
+ "input": {
815
+ "Identity": "user@example.com",
816
+ "NotificationType": "Bounce",
817
+ "SnsTopic": "arn:aws:sns:us-west-2:111122223333:MyTopic"
818
+ },
819
+ "comments": {
820
+ "input": {
821
+ },
822
+ "output": {
823
+ }
824
+ },
825
+ "description": "The following example sets the Amazon SNS topic to which Amazon SES will publish bounce, complaint, and/or delivery notifications for emails sent with the specified identity as the Source:",
826
+ "id": "setidentitynotificationtopic-1469057854966",
827
+ "title": "SetIdentityNotificationTopic"
828
+ }
829
+ ],
830
+ "SetReceiptRulePosition": [
831
+ {
832
+ "input": {
833
+ "After": "PutRuleAfterThisRule",
834
+ "RuleName": "RuleToReposition",
835
+ "RuleSetName": "MyRuleSet"
836
+ },
837
+ "comments": {
838
+ "input": {
839
+ },
840
+ "output": {
841
+ }
842
+ },
843
+ "description": "The following example sets the position of a receipt rule in a receipt rule set:",
844
+ "id": "setreceiptruleposition-1469058530550",
845
+ "title": "SetReceiptRulePosition"
846
+ }
847
+ ],
848
+ "UpdateReceiptRule": [
849
+ {
850
+ "input": {
851
+ "Rule": {
852
+ "Actions": [
853
+ {
854
+ "S3Action": {
855
+ "BucketName": "MyBucket",
856
+ "ObjectKeyPrefix": "email"
857
+ }
858
+ }
859
+ ],
860
+ "Enabled": true,
861
+ "Name": "MyRule",
862
+ "ScanEnabled": true,
863
+ "TlsPolicy": "Optional"
864
+ },
865
+ "RuleSetName": "MyRuleSet"
866
+ },
867
+ "comments": {
868
+ "input": {
869
+ },
870
+ "output": {
871
+ }
872
+ },
873
+ "description": "The following example updates a receipt rule to use an Amazon S3 action:",
874
+ "id": "updatereceiptrule-1469051756940",
875
+ "title": "UpdateReceiptRule"
876
+ }
877
+ ],
878
+ "VerifyDomainDkim": [
879
+ {
880
+ "input": {
881
+ "Domain": "example.com"
882
+ },
883
+ "output": {
884
+ "DkimTokens": [
885
+ "EXAMPLEq76owjnks3lnluwg65scbemvw",
886
+ "EXAMPLEi3dnsj67hstzaj673klariwx2",
887
+ "EXAMPLEwfbtcukvimehexktmdtaz6naj"
888
+ ]
889
+ },
890
+ "comments": {
891
+ "input": {
892
+ },
893
+ "output": {
894
+ }
895
+ },
896
+ "description": "The following example generates DKIM tokens for a domain that has been verified with Amazon SES:",
897
+ "id": "verifydomaindkim-1469049503083",
898
+ "title": "VerifyDomainDkim"
899
+ }
900
+ ],
901
+ "VerifyDomainIdentity": [
902
+ {
903
+ "input": {
904
+ "Domain": "example.com"
905
+ },
906
+ "output": {
907
+ "VerificationToken": "eoEmxw+YaYhb3h3iVJHuXMJXqeu1q1/wwmvjuEXAMPLE"
908
+ },
909
+ "comments": {
910
+ "input": {
911
+ },
912
+ "output": {
913
+ }
914
+ },
915
+ "description": "The following example starts the domain verification process with Amazon SES:",
916
+ "id": "verifydomainidentity-1469049165936",
917
+ "title": "VerifyDomainIdentity"
918
+ }
919
+ ],
920
+ "VerifyEmailAddress": [
921
+ {
922
+ "input": {
923
+ "EmailAddress": "user@example.com"
924
+ },
925
+ "comments": {
926
+ "input": {
927
+ },
928
+ "output": {
929
+ }
930
+ },
931
+ "description": "The following example starts the email address verification process with Amazon SES:",
932
+ "id": "verifyemailaddress-1469048849187",
933
+ "title": "VerifyEmailAddress"
934
+ }
935
+ ],
936
+ "VerifyEmailIdentity": [
937
+ {
938
+ "input": {
939
+ "EmailAddress": "user@example.com"
940
+ },
941
+ "comments": {
942
+ "input": {
943
+ },
944
+ "output": {
945
+ }
946
+ },
947
+ "description": "The following example starts the email address verification process with Amazon SES:",
948
+ "id": "verifyemailidentity-1469049068623",
949
+ "title": "VerifyEmailIdentity"
950
+ }
951
+ ]
4
952
  }
5
953
  }