|
64 | 64 | {"shape":"ValidationException"}
|
65 | 65 | ]
|
66 | 66 | },
|
| 67 | + "GetInternetEvent":{ |
| 68 | + "name":"GetInternetEvent", |
| 69 | + "http":{ |
| 70 | + "method":"GET", |
| 71 | + "requestUri":"/v20210603/InternetEvents/{EventId}", |
| 72 | + "responseCode":200 |
| 73 | + }, |
| 74 | + "input":{"shape":"GetInternetEventInput"}, |
| 75 | + "output":{"shape":"GetInternetEventOutput"}, |
| 76 | + "errors":[ |
| 77 | + {"shape":"InternalServerException"}, |
| 78 | + {"shape":"AccessDeniedException"}, |
| 79 | + {"shape":"ThrottlingException"}, |
| 80 | + {"shape":"ValidationException"} |
| 81 | + ] |
| 82 | + }, |
67 | 83 | "GetMonitor":{
|
68 | 84 | "name":"GetMonitor",
|
69 | 85 | "http":{
|
|
130 | 146 | {"shape":"ValidationException"}
|
131 | 147 | ]
|
132 | 148 | },
|
| 149 | + "ListInternetEvents":{ |
| 150 | + "name":"ListInternetEvents", |
| 151 | + "http":{ |
| 152 | + "method":"GET", |
| 153 | + "requestUri":"/v20210603/InternetEvents", |
| 154 | + "responseCode":200 |
| 155 | + }, |
| 156 | + "input":{"shape":"ListInternetEventsInput"}, |
| 157 | + "output":{"shape":"ListInternetEventsOutput"}, |
| 158 | + "errors":[ |
| 159 | + {"shape":"InternalServerException"}, |
| 160 | + {"shape":"AccessDeniedException"}, |
| 161 | + {"shape":"ThrottlingException"}, |
| 162 | + {"shape":"ValidationException"} |
| 163 | + ] |
| 164 | + }, |
133 | 165 | "ListMonitors":{
|
134 | 166 | "name":"ListMonitors",
|
135 | 167 | "http":{
|
|
299 | 331 | "type":"boolean",
|
300 | 332 | "box":true
|
301 | 333 | },
|
| 334 | + "ClientLocation":{ |
| 335 | + "type":"structure", |
| 336 | + "required":[ |
| 337 | + "ASName", |
| 338 | + "ASNumber", |
| 339 | + "Country", |
| 340 | + "City", |
| 341 | + "Latitude", |
| 342 | + "Longitude" |
| 343 | + ], |
| 344 | + "members":{ |
| 345 | + "ASName":{"shape":"String"}, |
| 346 | + "ASNumber":{"shape":"Long"}, |
| 347 | + "Country":{"shape":"String"}, |
| 348 | + "Subdivision":{"shape":"String"}, |
| 349 | + "Metro":{"shape":"String"}, |
| 350 | + "City":{"shape":"String"}, |
| 351 | + "Latitude":{"shape":"Double"}, |
| 352 | + "Longitude":{"shape":"Double"} |
| 353 | + } |
| 354 | + }, |
302 | 355 | "ConflictException":{
|
303 | 356 | "type":"structure",
|
304 | 357 | "members":{
|
|
423 | 476 | "HealthScoreThreshold":{"shape":"Percentage"}
|
424 | 477 | }
|
425 | 478 | },
|
| 479 | + "GetInternetEventInput":{ |
| 480 | + "type":"structure", |
| 481 | + "required":["EventId"], |
| 482 | + "members":{ |
| 483 | + "EventId":{ |
| 484 | + "shape":"InternetEventId", |
| 485 | + "location":"uri", |
| 486 | + "locationName":"EventId" |
| 487 | + } |
| 488 | + } |
| 489 | + }, |
| 490 | + "GetInternetEventOutput":{ |
| 491 | + "type":"structure", |
| 492 | + "required":[ |
| 493 | + "EventId", |
| 494 | + "EventArn", |
| 495 | + "StartedAt", |
| 496 | + "ClientLocation", |
| 497 | + "EventType", |
| 498 | + "EventStatus" |
| 499 | + ], |
| 500 | + "members":{ |
| 501 | + "EventId":{"shape":"InternetEventId"}, |
| 502 | + "EventArn":{"shape":"Arn"}, |
| 503 | + "StartedAt":{"shape":"SyntheticTimestamp_date_time"}, |
| 504 | + "EndedAt":{"shape":"SyntheticTimestamp_date_time"}, |
| 505 | + "ClientLocation":{"shape":"ClientLocation"}, |
| 506 | + "EventType":{"shape":"InternetEventType"}, |
| 507 | + "EventStatus":{"shape":"InternetEventStatus"} |
| 508 | + } |
| 509 | + }, |
426 | 510 | "GetMonitorInput":{
|
427 | 511 | "type":"structure",
|
428 | 512 | "required":["MonitorName"],
|
|
642 | 726 | "fault":true,
|
643 | 727 | "retryable":{"throttling":false}
|
644 | 728 | },
|
| 729 | + "InternetEventId":{ |
| 730 | + "type":"string", |
| 731 | + "max":255, |
| 732 | + "min":1, |
| 733 | + "pattern":"[a-zA-Z0-9-]+" |
| 734 | + }, |
| 735 | + "InternetEventMaxResults":{ |
| 736 | + "type":"integer", |
| 737 | + "box":true, |
| 738 | + "max":100, |
| 739 | + "min":1 |
| 740 | + }, |
| 741 | + "InternetEventStatus":{ |
| 742 | + "type":"string", |
| 743 | + "enum":[ |
| 744 | + "ACTIVE", |
| 745 | + "RESOLVED" |
| 746 | + ] |
| 747 | + }, |
| 748 | + "InternetEventSummary":{ |
| 749 | + "type":"structure", |
| 750 | + "required":[ |
| 751 | + "EventId", |
| 752 | + "EventArn", |
| 753 | + "StartedAt", |
| 754 | + "ClientLocation", |
| 755 | + "EventType", |
| 756 | + "EventStatus" |
| 757 | + ], |
| 758 | + "members":{ |
| 759 | + "EventId":{"shape":"InternetEventId"}, |
| 760 | + "EventArn":{"shape":"Arn"}, |
| 761 | + "StartedAt":{"shape":"SyntheticTimestamp_date_time"}, |
| 762 | + "EndedAt":{"shape":"SyntheticTimestamp_date_time"}, |
| 763 | + "ClientLocation":{"shape":"ClientLocation"}, |
| 764 | + "EventType":{"shape":"InternetEventType"}, |
| 765 | + "EventStatus":{"shape":"InternetEventStatus"} |
| 766 | + } |
| 767 | + }, |
| 768 | + "InternetEventType":{ |
| 769 | + "type":"string", |
| 770 | + "enum":[ |
| 771 | + "AVAILABILITY", |
| 772 | + "PERFORMANCE" |
| 773 | + ] |
| 774 | + }, |
| 775 | + "InternetEventsList":{ |
| 776 | + "type":"list", |
| 777 | + "member":{"shape":"InternetEventSummary"} |
| 778 | + }, |
645 | 779 | "InternetHealth":{
|
646 | 780 | "type":"structure",
|
647 | 781 | "members":{
|
|
719 | 853 | "NextToken":{"shape":"String"}
|
720 | 854 | }
|
721 | 855 | },
|
| 856 | + "ListInternetEventsInput":{ |
| 857 | + "type":"structure", |
| 858 | + "members":{ |
| 859 | + "NextToken":{ |
| 860 | + "shape":"String", |
| 861 | + "location":"querystring", |
| 862 | + "locationName":"NextToken" |
| 863 | + }, |
| 864 | + "MaxResults":{ |
| 865 | + "shape":"InternetEventMaxResults", |
| 866 | + "location":"querystring", |
| 867 | + "locationName":"InternetEventMaxResults" |
| 868 | + }, |
| 869 | + "StartTime":{ |
| 870 | + "shape":"SyntheticTimestamp_date_time", |
| 871 | + "location":"querystring", |
| 872 | + "locationName":"StartTime" |
| 873 | + }, |
| 874 | + "EndTime":{ |
| 875 | + "shape":"SyntheticTimestamp_date_time", |
| 876 | + "location":"querystring", |
| 877 | + "locationName":"EndTime" |
| 878 | + }, |
| 879 | + "EventStatus":{ |
| 880 | + "shape":"String", |
| 881 | + "location":"querystring", |
| 882 | + "locationName":"EventStatus" |
| 883 | + }, |
| 884 | + "EventType":{ |
| 885 | + "shape":"String", |
| 886 | + "location":"querystring", |
| 887 | + "locationName":"EventType" |
| 888 | + } |
| 889 | + } |
| 890 | + }, |
| 891 | + "ListInternetEventsOutput":{ |
| 892 | + "type":"structure", |
| 893 | + "required":["InternetEvents"], |
| 894 | + "members":{ |
| 895 | + "InternetEvents":{"shape":"InternetEventsList"}, |
| 896 | + "NextToken":{"shape":"String"} |
| 897 | + } |
| 898 | + }, |
722 | 899 | "ListMonitorsInput":{
|
723 | 900 | "type":"structure",
|
724 | 901 | "members":{
|
|
0 commit comments