|
775 | 775 | ],
|
776 | 776 | "endpoint":{"hostPrefix":"places."}
|
777 | 777 | },
|
| 778 | + "SearchPlaceIndexForSuggestions":{ |
| 779 | + "name":"SearchPlaceIndexForSuggestions", |
| 780 | + "http":{ |
| 781 | + "method":"POST", |
| 782 | + "requestUri":"/places/v0/indexes/{IndexName}/search/suggestions", |
| 783 | + "responseCode":200 |
| 784 | + }, |
| 785 | + "input":{"shape":"SearchPlaceIndexForSuggestionsRequest"}, |
| 786 | + "output":{"shape":"SearchPlaceIndexForSuggestionsResponse"}, |
| 787 | + "errors":[ |
| 788 | + {"shape":"InternalServerException"}, |
| 789 | + {"shape":"ResourceNotFoundException"}, |
| 790 | + {"shape":"AccessDeniedException"}, |
| 791 | + {"shape":"ValidationException"}, |
| 792 | + {"shape":"ThrottlingException"} |
| 793 | + ], |
| 794 | + "endpoint":{"hostPrefix":"places."} |
| 795 | + }, |
778 | 796 | "SearchPlaceIndexForText":{
|
779 | 797 | "name":"SearchPlaceIndexForText",
|
780 | 798 | "http":{
|
|
1821 | 1839 | "SampleTime"
|
1822 | 1840 | ],
|
1823 | 1841 | "members":{
|
| 1842 | + "Accuracy":{"shape":"PositionalAccuracy"}, |
1824 | 1843 | "DeviceId":{"shape":"Id"},
|
1825 | 1844 | "Position":{"shape":"Position"},
|
| 1845 | + "PositionProperties":{"shape":"PropertyMap"}, |
1826 | 1846 | "ReceivedTime":{"shape":"Timestamp"},
|
1827 | 1847 | "SampleTime":{"shape":"Timestamp"}
|
1828 | 1848 | }
|
|
1839 | 1859 | "SampleTime"
|
1840 | 1860 | ],
|
1841 | 1861 | "members":{
|
| 1862 | + "Accuracy":{"shape":"PositionalAccuracy"}, |
1842 | 1863 | "DeviceId":{"shape":"Id"},
|
1843 | 1864 | "Position":{"shape":"Position"},
|
| 1865 | + "PositionProperties":{"shape":"PropertyMap"}, |
1844 | 1866 | "SampleTime":{"shape":"Timestamp"}
|
1845 | 1867 | }
|
1846 | 1868 | },
|
|
1949 | 1971 | "SampleTime"
|
1950 | 1972 | ],
|
1951 | 1973 | "members":{
|
| 1974 | + "Accuracy":{"shape":"PositionalAccuracy"}, |
1952 | 1975 | "DeviceId":{"shape":"Id"},
|
1953 | 1976 | "Position":{"shape":"Position"},
|
| 1977 | + "PositionProperties":{"shape":"PropertyMap"}, |
1954 | 1978 | "ReceivedTime":{"shape":"Timestamp"},
|
1955 | 1979 | "SampleTime":{"shape":"Timestamp"}
|
1956 | 1980 | }
|
|
2274 | 2298 | "SampleTime"
|
2275 | 2299 | ],
|
2276 | 2300 | "members":{
|
| 2301 | + "Accuracy":{"shape":"PositionalAccuracy"}, |
2277 | 2302 | "DeviceId":{"shape":"Id"},
|
2278 | 2303 | "Position":{"shape":"Position"},
|
| 2304 | + "PositionProperties":{"shape":"PropertyMap"}, |
2279 | 2305 | "SampleTime":{"shape":"Timestamp"}
|
2280 | 2306 | }
|
2281 | 2307 | },
|
|
2643 | 2669 | "AccuracyBased"
|
2644 | 2670 | ]
|
2645 | 2671 | },
|
| 2672 | + "PositionalAccuracy":{ |
| 2673 | + "type":"structure", |
| 2674 | + "required":["Horizontal"], |
| 2675 | + "members":{ |
| 2676 | + "Horizontal":{"shape":"PositionalAccuracyHorizontalDouble"} |
| 2677 | + } |
| 2678 | + }, |
| 2679 | + "PositionalAccuracyHorizontalDouble":{ |
| 2680 | + "type":"double", |
| 2681 | + "box":true, |
| 2682 | + "max":10000, |
| 2683 | + "min":0 |
| 2684 | + }, |
2646 | 2685 | "PricingPlan":{
|
2647 | 2686 | "type":"string",
|
2648 | 2687 | "enum":[
|
|
2651 | 2690 | "MobileAssetManagement"
|
2652 | 2691 | ]
|
2653 | 2692 | },
|
| 2693 | + "PropertyMap":{ |
| 2694 | + "type":"map", |
| 2695 | + "key":{"shape":"PropertyMapKeyString"}, |
| 2696 | + "value":{"shape":"PropertyMapValueString"}, |
| 2697 | + "max":3, |
| 2698 | + "min":0, |
| 2699 | + "sensitive":true |
| 2700 | + }, |
| 2701 | + "PropertyMapKeyString":{ |
| 2702 | + "type":"string", |
| 2703 | + "max":20, |
| 2704 | + "min":1 |
| 2705 | + }, |
| 2706 | + "PropertyMapValueString":{ |
| 2707 | + "type":"string", |
| 2708 | + "max":40, |
| 2709 | + "min":1 |
| 2710 | + }, |
2654 | 2711 | "PutGeofenceRequest":{
|
2655 | 2712 | "type":"structure",
|
2656 | 2713 | "required":[
|
|
2731 | 2788 | "type":"list",
|
2732 | 2789 | "member":{"shape":"SearchForPositionResult"}
|
2733 | 2790 | },
|
| 2791 | + "SearchForSuggestionsResult":{ |
| 2792 | + "type":"structure", |
| 2793 | + "required":["Text"], |
| 2794 | + "members":{ |
| 2795 | + "Text":{"shape":"String"} |
| 2796 | + } |
| 2797 | + }, |
| 2798 | + "SearchForSuggestionsResultList":{ |
| 2799 | + "type":"list", |
| 2800 | + "member":{"shape":"SearchForSuggestionsResult"} |
| 2801 | + }, |
2734 | 2802 | "SearchForTextResult":{
|
2735 | 2803 | "type":"structure",
|
2736 | 2804 | "required":["Place"],
|
|
2796 | 2864 | "Position":{"shape":"Position"}
|
2797 | 2865 | }
|
2798 | 2866 | },
|
| 2867 | + "SearchPlaceIndexForSuggestionsRequest":{ |
| 2868 | + "type":"structure", |
| 2869 | + "required":[ |
| 2870 | + "IndexName", |
| 2871 | + "Text" |
| 2872 | + ], |
| 2873 | + "members":{ |
| 2874 | + "BiasPosition":{"shape":"Position"}, |
| 2875 | + "FilterBBox":{"shape":"BoundingBox"}, |
| 2876 | + "FilterCountries":{"shape":"CountryCodeList"}, |
| 2877 | + "IndexName":{ |
| 2878 | + "shape":"ResourceName", |
| 2879 | + "location":"uri", |
| 2880 | + "locationName":"IndexName" |
| 2881 | + }, |
| 2882 | + "Language":{"shape":"LanguageTag"}, |
| 2883 | + "MaxResults":{"shape":"SearchPlaceIndexForSuggestionsRequestMaxResultsInteger"}, |
| 2884 | + "Text":{"shape":"SyntheticSearchPlaceIndexForSuggestionsRequestString"} |
| 2885 | + } |
| 2886 | + }, |
| 2887 | + "SearchPlaceIndexForSuggestionsRequestMaxResultsInteger":{ |
| 2888 | + "type":"integer", |
| 2889 | + "box":true, |
| 2890 | + "max":15, |
| 2891 | + "min":1 |
| 2892 | + }, |
| 2893 | + "SearchPlaceIndexForSuggestionsResponse":{ |
| 2894 | + "type":"structure", |
| 2895 | + "required":[ |
| 2896 | + "Results", |
| 2897 | + "Summary" |
| 2898 | + ], |
| 2899 | + "members":{ |
| 2900 | + "Results":{"shape":"SearchForSuggestionsResultList"}, |
| 2901 | + "Summary":{"shape":"SearchPlaceIndexForSuggestionsSummary"} |
| 2902 | + } |
| 2903 | + }, |
| 2904 | + "SearchPlaceIndexForSuggestionsSummary":{ |
| 2905 | + "type":"structure", |
| 2906 | + "required":[ |
| 2907 | + "DataSource", |
| 2908 | + "Text" |
| 2909 | + ], |
| 2910 | + "members":{ |
| 2911 | + "BiasPosition":{"shape":"Position"}, |
| 2912 | + "DataSource":{"shape":"String"}, |
| 2913 | + "FilterBBox":{"shape":"BoundingBox"}, |
| 2914 | + "FilterCountries":{"shape":"CountryCodeList"}, |
| 2915 | + "Language":{"shape":"LanguageTag"}, |
| 2916 | + "MaxResults":{"shape":"Integer"}, |
| 2917 | + "Text":{"shape":"SyntheticSearchPlaceIndexForSuggestionsSummaryString"} |
| 2918 | + } |
| 2919 | + }, |
2799 | 2920 | "SearchPlaceIndexForTextRequest":{
|
2800 | 2921 | "type":"structure",
|
2801 | 2922 | "required":[
|
|
2895 | 3016 | "member":{"shape":"Step"}
|
2896 | 3017 | },
|
2897 | 3018 | "String":{"type":"string"},
|
| 3019 | + "SyntheticSearchPlaceIndexForSuggestionsRequestString":{ |
| 3020 | + "type":"string", |
| 3021 | + "max":200, |
| 3022 | + "min":1, |
| 3023 | + "sensitive":true |
| 3024 | + }, |
| 3025 | + "SyntheticSearchPlaceIndexForSuggestionsSummaryString":{ |
| 3026 | + "type":"string", |
| 3027 | + "sensitive":true |
| 3028 | + }, |
2898 | 3029 | "SyntheticSearchPlaceIndexForTextRequestString":{
|
2899 | 3030 | "type":"string",
|
2900 | 3031 | "max":200,
|
|
0 commit comments