|
61 | 61 | {"shape":"InternalServerException"}
|
62 | 62 | ]
|
63 | 63 | },
|
| 64 | + "CreateEventStream":{ |
| 65 | + "name":"CreateEventStream", |
| 66 | + "http":{ |
| 67 | + "method":"POST", |
| 68 | + "requestUri":"/domains/{DomainName}/event-streams/{EventStreamName}" |
| 69 | + }, |
| 70 | + "input":{"shape":"CreateEventStreamRequest"}, |
| 71 | + "output":{"shape":"CreateEventStreamResponse"}, |
| 72 | + "errors":[ |
| 73 | + {"shape":"BadRequestException"}, |
| 74 | + {"shape":"ResourceNotFoundException"}, |
| 75 | + {"shape":"AccessDeniedException"}, |
| 76 | + {"shape":"ThrottlingException"}, |
| 77 | + {"shape":"InternalServerException"} |
| 78 | + ] |
| 79 | + }, |
64 | 80 | "CreateIntegrationWorkflow":{
|
65 | 81 | "name":"CreateIntegrationWorkflow",
|
66 | 82 | "http":{
|
|
125 | 141 | {"shape":"InternalServerException"}
|
126 | 142 | ]
|
127 | 143 | },
|
| 144 | + "DeleteEventStream":{ |
| 145 | + "name":"DeleteEventStream", |
| 146 | + "http":{ |
| 147 | + "method":"DELETE", |
| 148 | + "requestUri":"/domains/{DomainName}/event-streams/{EventStreamName}" |
| 149 | + }, |
| 150 | + "input":{"shape":"DeleteEventStreamRequest"}, |
| 151 | + "output":{"shape":"DeleteEventStreamResponse"}, |
| 152 | + "errors":[ |
| 153 | + {"shape":"BadRequestException"}, |
| 154 | + {"shape":"ResourceNotFoundException"}, |
| 155 | + {"shape":"AccessDeniedException"}, |
| 156 | + {"shape":"ThrottlingException"}, |
| 157 | + {"shape":"InternalServerException"} |
| 158 | + ], |
| 159 | + "idempotent":true |
| 160 | + }, |
128 | 161 | "DeleteIntegration":{
|
129 | 162 | "name":"DeleteIntegration",
|
130 | 163 | "http":{
|
|
285 | 318 | {"shape":"InternalServerException"}
|
286 | 319 | ]
|
287 | 320 | },
|
| 321 | + "GetEventStream":{ |
| 322 | + "name":"GetEventStream", |
| 323 | + "http":{ |
| 324 | + "method":"GET", |
| 325 | + "requestUri":"/domains/{DomainName}/event-streams/{EventStreamName}" |
| 326 | + }, |
| 327 | + "input":{"shape":"GetEventStreamRequest"}, |
| 328 | + "output":{"shape":"GetEventStreamResponse"}, |
| 329 | + "errors":[ |
| 330 | + {"shape":"BadRequestException"}, |
| 331 | + {"shape":"ResourceNotFoundException"}, |
| 332 | + {"shape":"AccessDeniedException"}, |
| 333 | + {"shape":"ThrottlingException"}, |
| 334 | + {"shape":"InternalServerException"} |
| 335 | + ] |
| 336 | + }, |
288 | 337 | "GetIdentityResolutionJob":{
|
289 | 338 | "name":"GetIdentityResolutionJob",
|
290 | 339 | "http":{
|
|
461 | 510 | {"shape":"InternalServerException"}
|
462 | 511 | ]
|
463 | 512 | },
|
| 513 | + "ListEventStreams":{ |
| 514 | + "name":"ListEventStreams", |
| 515 | + "http":{ |
| 516 | + "method":"GET", |
| 517 | + "requestUri":"/domains/{DomainName}/event-streams" |
| 518 | + }, |
| 519 | + "input":{"shape":"ListEventStreamsRequest"}, |
| 520 | + "output":{"shape":"ListEventStreamsResponse"}, |
| 521 | + "errors":[ |
| 522 | + {"shape":"BadRequestException"}, |
| 523 | + {"shape":"ResourceNotFoundException"}, |
| 524 | + {"shape":"AccessDeniedException"}, |
| 525 | + {"shape":"ThrottlingException"}, |
| 526 | + {"shape":"InternalServerException"} |
| 527 | + ] |
| 528 | + }, |
464 | 529 | "ListIdentityResolutionJobs":{
|
465 | 530 | "name":"ListIdentityResolutionJobs",
|
466 | 531 | "http":{
|
|
1060 | 1125 | "Tags":{"shape":"TagMap"}
|
1061 | 1126 | }
|
1062 | 1127 | },
|
| 1128 | + "CreateEventStreamRequest":{ |
| 1129 | + "type":"structure", |
| 1130 | + "required":[ |
| 1131 | + "DomainName", |
| 1132 | + "Uri", |
| 1133 | + "EventStreamName" |
| 1134 | + ], |
| 1135 | + "members":{ |
| 1136 | + "DomainName":{ |
| 1137 | + "shape":"name", |
| 1138 | + "location":"uri", |
| 1139 | + "locationName":"DomainName" |
| 1140 | + }, |
| 1141 | + "Uri":{"shape":"string1To255"}, |
| 1142 | + "EventStreamName":{ |
| 1143 | + "shape":"name", |
| 1144 | + "location":"uri", |
| 1145 | + "locationName":"EventStreamName" |
| 1146 | + }, |
| 1147 | + "Tags":{"shape":"TagMap"} |
| 1148 | + } |
| 1149 | + }, |
| 1150 | + "CreateEventStreamResponse":{ |
| 1151 | + "type":"structure", |
| 1152 | + "required":["EventStreamArn"], |
| 1153 | + "members":{ |
| 1154 | + "EventStreamArn":{"shape":"string1To255"}, |
| 1155 | + "Tags":{"shape":"TagMap"} |
| 1156 | + } |
| 1157 | + }, |
1063 | 1158 | "CreateIntegrationWorkflowRequest":{
|
1064 | 1159 | "type":"structure",
|
1065 | 1160 | "required":[
|
|
1189 | 1284 | "Message":{"shape":"message"}
|
1190 | 1285 | }
|
1191 | 1286 | },
|
| 1287 | + "DeleteEventStreamRequest":{ |
| 1288 | + "type":"structure", |
| 1289 | + "required":[ |
| 1290 | + "DomainName", |
| 1291 | + "EventStreamName" |
| 1292 | + ], |
| 1293 | + "members":{ |
| 1294 | + "DomainName":{ |
| 1295 | + "shape":"name", |
| 1296 | + "location":"uri", |
| 1297 | + "locationName":"DomainName" |
| 1298 | + }, |
| 1299 | + "EventStreamName":{ |
| 1300 | + "shape":"name", |
| 1301 | + "location":"uri", |
| 1302 | + "locationName":"EventStreamName" |
| 1303 | + } |
| 1304 | + } |
| 1305 | + }, |
| 1306 | + "DeleteEventStreamResponse":{ |
| 1307 | + "type":"structure", |
| 1308 | + "members":{ |
| 1309 | + } |
| 1310 | + }, |
1192 | 1311 | "DeleteIntegrationRequest":{
|
1193 | 1312 | "type":"structure",
|
1194 | 1313 | "required":[
|
|
1337 | 1456 | "max":256,
|
1338 | 1457 | "pattern":".*"
|
1339 | 1458 | },
|
| 1459 | + "DestinationSummary":{ |
| 1460 | + "type":"structure", |
| 1461 | + "required":[ |
| 1462 | + "Uri", |
| 1463 | + "Status" |
| 1464 | + ], |
| 1465 | + "members":{ |
| 1466 | + "Uri":{"shape":"string1To255"}, |
| 1467 | + "Status":{"shape":"EventStreamDestinationStatus"}, |
| 1468 | + "UnhealthySince":{"shape":"timestamp"} |
| 1469 | + } |
| 1470 | + }, |
1340 | 1471 | "DomainList":{
|
1341 | 1472 | "type":"list",
|
1342 | 1473 | "member":{"shape":"ListDomainItem"}
|
|
1356 | 1487 | "max":1.0,
|
1357 | 1488 | "min":0.0
|
1358 | 1489 | },
|
| 1490 | + "EventStreamDestinationDetails":{ |
| 1491 | + "type":"structure", |
| 1492 | + "required":[ |
| 1493 | + "Uri", |
| 1494 | + "Status" |
| 1495 | + ], |
| 1496 | + "members":{ |
| 1497 | + "Uri":{"shape":"string1To255"}, |
| 1498 | + "Status":{"shape":"EventStreamDestinationStatus"}, |
| 1499 | + "UnhealthySince":{"shape":"timestamp"}, |
| 1500 | + "Message":{"shape":"string1To1000"} |
| 1501 | + } |
| 1502 | + }, |
| 1503 | + "EventStreamDestinationStatus":{ |
| 1504 | + "type":"string", |
| 1505 | + "enum":[ |
| 1506 | + "HEALTHY", |
| 1507 | + "UNHEALTHY" |
| 1508 | + ] |
| 1509 | + }, |
| 1510 | + "EventStreamState":{ |
| 1511 | + "type":"string", |
| 1512 | + "enum":[ |
| 1513 | + "RUNNING", |
| 1514 | + "STOPPED" |
| 1515 | + ] |
| 1516 | + }, |
| 1517 | + "EventStreamSummary":{ |
| 1518 | + "type":"structure", |
| 1519 | + "required":[ |
| 1520 | + "DomainName", |
| 1521 | + "EventStreamName", |
| 1522 | + "EventStreamArn", |
| 1523 | + "State" |
| 1524 | + ], |
| 1525 | + "members":{ |
| 1526 | + "DomainName":{"shape":"name"}, |
| 1527 | + "EventStreamName":{"shape":"name"}, |
| 1528 | + "EventStreamArn":{"shape":"string1To255"}, |
| 1529 | + "State":{"shape":"EventStreamState"}, |
| 1530 | + "StoppedSince":{"shape":"timestamp"}, |
| 1531 | + "DestinationSummary":{"shape":"DestinationSummary"}, |
| 1532 | + "Tags":{"shape":"TagMap"} |
| 1533 | + } |
| 1534 | + }, |
| 1535 | + "EventStreamSummaryList":{ |
| 1536 | + "type":"list", |
| 1537 | + "member":{"shape":"EventStreamSummary"} |
| 1538 | + }, |
1359 | 1539 | "ExportingConfig":{
|
1360 | 1540 | "type":"structure",
|
1361 | 1541 | "members":{
|
|
1582 | 1762 | "Tags":{"shape":"TagMap"}
|
1583 | 1763 | }
|
1584 | 1764 | },
|
| 1765 | + "GetEventStreamRequest":{ |
| 1766 | + "type":"structure", |
| 1767 | + "required":[ |
| 1768 | + "DomainName", |
| 1769 | + "EventStreamName" |
| 1770 | + ], |
| 1771 | + "members":{ |
| 1772 | + "DomainName":{ |
| 1773 | + "shape":"name", |
| 1774 | + "location":"uri", |
| 1775 | + "locationName":"DomainName" |
| 1776 | + }, |
| 1777 | + "EventStreamName":{ |
| 1778 | + "shape":"name", |
| 1779 | + "location":"uri", |
| 1780 | + "locationName":"EventStreamName" |
| 1781 | + } |
| 1782 | + } |
| 1783 | + }, |
| 1784 | + "GetEventStreamResponse":{ |
| 1785 | + "type":"structure", |
| 1786 | + "required":[ |
| 1787 | + "DomainName", |
| 1788 | + "EventStreamArn", |
| 1789 | + "CreatedAt", |
| 1790 | + "State", |
| 1791 | + "DestinationDetails" |
| 1792 | + ], |
| 1793 | + "members":{ |
| 1794 | + "DomainName":{"shape":"name"}, |
| 1795 | + "EventStreamArn":{"shape":"string1To255"}, |
| 1796 | + "CreatedAt":{"shape":"timestamp"}, |
| 1797 | + "State":{"shape":"EventStreamState"}, |
| 1798 | + "StoppedSince":{"shape":"timestamp"}, |
| 1799 | + "DestinationDetails":{"shape":"EventStreamDestinationDetails"}, |
| 1800 | + "Tags":{"shape":"TagMap"} |
| 1801 | + } |
| 1802 | + }, |
1585 | 1803 | "GetIdentityResolutionJobRequest":{
|
1586 | 1804 | "type":"structure",
|
1587 | 1805 | "required":[
|
|
2066 | 2284 | "NextToken":{"shape":"token"}
|
2067 | 2285 | }
|
2068 | 2286 | },
|
| 2287 | + "ListEventStreamsRequest":{ |
| 2288 | + "type":"structure", |
| 2289 | + "required":["DomainName"], |
| 2290 | + "members":{ |
| 2291 | + "DomainName":{ |
| 2292 | + "shape":"name", |
| 2293 | + "location":"uri", |
| 2294 | + "locationName":"DomainName" |
| 2295 | + }, |
| 2296 | + "NextToken":{ |
| 2297 | + "shape":"token", |
| 2298 | + "location":"querystring", |
| 2299 | + "locationName":"next-token" |
| 2300 | + }, |
| 2301 | + "MaxResults":{ |
| 2302 | + "shape":"maxSize100", |
| 2303 | + "location":"querystring", |
| 2304 | + "locationName":"max-results" |
| 2305 | + } |
| 2306 | + } |
| 2307 | + }, |
| 2308 | + "ListEventStreamsResponse":{ |
| 2309 | + "type":"structure", |
| 2310 | + "members":{ |
| 2311 | + "Items":{"shape":"EventStreamSummaryList"}, |
| 2312 | + "NextToken":{"shape":"token"} |
| 2313 | + } |
| 2314 | + }, |
2069 | 2315 | "ListIdentityResolutionJobsRequest":{
|
2070 | 2316 | "type":"structure",
|
2071 | 2317 | "required":["DomainName"],
|
|
0 commit comments