1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// Options for filtering API keys.
type ApiKeyFilter struct {
// Filter on Active or Expired API keys.
KeyStatus Status
noSmithyDocumentSerde
}
// API Restrictions on the allowed actions, resources, and referers for an API key
// resource.
type ApiKeyRestrictions struct {
// A list of allowed actions that an API key resource grants permissions to
// perform. You must have at least one action for each type of resource. For
// example, if you have a place resource, you must include at least one place
// action. The following are valid values for the actions.
// - Map actions
// - geo:GetMap* - Allows all actions needed for map rendering.
// - Place actions
// - geo:SearchPlaceIndexForText - Allows geocoding.
// - geo:SearchPlaceIndexForPosition - Allows reverse geocoding.
// - geo:SearchPlaceIndexForSuggestions - Allows generating suggestions from
// text.
// - GetPlace - Allows finding a place by place ID.
// - Route actions
// - geo:CalculateRoute - Allows point to point routing.
// - geo:CalculateRouteMatrix - Allows calculating a matrix of routes.
// You must use these strings exactly. For example, to provide access to map
// rendering, the only valid action is geo:GetMap* as an input to the list.
// ["geo:GetMap*"] is valid but ["geo:GetMapTile"] is not. Similarly, you cannot
// use ["geo:SearchPlaceIndexFor*"] - you must list each of the Place actions
// separately.
//
// This member is required.
AllowActions []string
// A list of allowed resource ARNs that a API key bearer can perform actions on.
// - The ARN must be the correct ARN for a map, place, or route ARN. You may
// include wildcards in the resource-id to match multiple resources of the same
// type.
// - The resources must be in the same partition , region , and account-id as the
// key that is being created.
// - Other than wildcards, you must include the full ARN, including the arn ,
// partition , service , region , account-id and resource-id delimited by colons
// (:).
// - No spaces allowed, even with wildcards. For example,
// arn:aws:geo:region:account-id:map/ExampleMap* .
// For more information about ARN format, see Amazon Resource Names (ARNs) (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// .
//
// This member is required.
AllowResources []string
// An optional list of allowed HTTP referers for which requests must originate
// from. Requests using this API key from other domains will not be allowed.
// Requirements:
// - Contain only alphanumeric characters (A–Z, a–z, 0–9) or any symbols in this
// list $\-._+!*`(),;/?:@=&
// - May contain a percent (%) if followed by 2 hexadecimal digits (A-F, a-f,
// 0-9); this is used for URL encoding purposes.
// - May contain wildcard characters question mark (?) and asterisk (*).
// Question mark (?) will replace any single character (including hexadecimal
// digits). Asterisk (*) will replace any multiple characters (including multiple
// hexadecimal digits).
// - No spaces allowed. For example, https://example.com .
AllowReferers []string
noSmithyDocumentSerde
}
// Contains the tracker resource details.
type BatchDeleteDevicePositionHistoryError struct {
// The ID of the device for this position.
//
// This member is required.
DeviceId *string
// Contains the batch request error details associated with the request.
//
// This member is required.
Error *BatchItemError
noSmithyDocumentSerde
}
// Contains error details for each geofence that failed to delete from the
// geofence collection.
type BatchDeleteGeofenceError struct {
// Contains details associated to the batch error.
//
// This member is required.
Error *BatchItemError
// The geofence associated with the error message.
//
// This member is required.
GeofenceId *string
noSmithyDocumentSerde
}
// Contains error details for each device that failed to evaluate its position
// against the geofences in a given geofence collection.
type BatchEvaluateGeofencesError struct {
// The device associated with the position evaluation error.
//
// This member is required.
DeviceId *string
// Contains details associated to the batch error.
//
// This member is required.
Error *BatchItemError
// Specifies a timestamp for when the error occurred in ISO 8601 (https://www.iso.org/iso-8601-date-and-time-format.html)
// format: YYYY-MM-DDThh:mm:ss.sssZ
//
// This member is required.
SampleTime *time.Time
noSmithyDocumentSerde
}
// Contains error details for each device that didn't return a position.
type BatchGetDevicePositionError struct {
// The ID of the device that didn't return a position.
//
// This member is required.
DeviceId *string
// Contains details related to the error code.
//
// This member is required.
Error *BatchItemError
noSmithyDocumentSerde
}
// Contains the batch request error details associated with the request.
type BatchItemError struct {
// The error code associated with the batch request error.
Code BatchItemErrorCode
// A message with the reason for the batch request error.
Message *string
noSmithyDocumentSerde
}
// Contains error details for each geofence that failed to be stored in a given
// geofence collection.
type BatchPutGeofenceError struct {
// Contains details associated to the batch error.
//
// This member is required.
Error *BatchItemError
// The geofence associated with the error message.
//
// This member is required.
GeofenceId *string
noSmithyDocumentSerde
}
// Contains geofence geometry details.
type BatchPutGeofenceRequestEntry struct {
// The identifier for the geofence to be stored in a given geofence collection.
//
// This member is required.
GeofenceId *string
// Contains the details of the position of the geofence. Can be either a polygon
// or a circle. Including both will return a validation error. Each geofence
// polygon (https://docs.aws.amazon.com/location-geofences/latest/APIReference/API_GeofenceGeometry.html)
// can have a maximum of 1,000 vertices.
//
// This member is required.
Geometry *GeofenceGeometry
// Associates one of more properties with the geofence. A property is a key-value
// pair stored with the geofence and added to any geofence event triggered with
// that geofence. Format: "key" : "value"
GeofenceProperties map[string]string
noSmithyDocumentSerde
}
// Contains a summary of each geofence that was successfully stored in a given
// geofence collection.
type BatchPutGeofenceSuccess struct {
// The timestamp for when the geofence was stored in a geofence collection in ISO
// 8601 (https://www.iso.org/iso-8601-date-and-time-format.html) format:
// YYYY-MM-DDThh:mm:ss.sssZ
//
// This member is required.
CreateTime *time.Time
// The geofence successfully stored in a geofence collection.
//
// This member is required.
GeofenceId *string
// The timestamp for when the geofence was last updated in ISO 8601 (https://www.iso.org/iso-8601-date-and-time-format.html)
// format: YYYY-MM-DDThh:mm:ss.sssZ
//
// This member is required.
UpdateTime *time.Time
noSmithyDocumentSerde
}
// Contains error details for each device that failed to update its position.
type BatchUpdateDevicePositionError struct {
// The device associated with the failed location update.
//
// This member is required.
DeviceId *string
// Contains details related to the error code such as the error code and error
// message.
//
// This member is required.
Error *BatchItemError
// The timestamp at which the device position was determined. Uses ISO 8601 (https://www.iso.org/iso-8601-date-and-time-format.html)
// format: YYYY-MM-DDThh:mm:ss.sssZ .
//
// This member is required.
SampleTime *time.Time
noSmithyDocumentSerde
}
// Contains details about additional route preferences for requests that specify
// TravelMode as Car .
type CalculateRouteCarModeOptions struct {
// Avoids ferries when calculating routes. Default Value: false Valid Values: false
// | true
AvoidFerries *bool
// Avoids tolls when calculating routes. Default Value: false Valid Values: false
// | true
AvoidTolls *bool
noSmithyDocumentSerde
}
// A summary of the calculated route matrix.
type CalculateRouteMatrixSummary struct {
// The data provider of traffic and road network data used to calculate the
// routes. Indicates one of the available providers:
// - Esri
// - Grab
// - Here
// For more information about data providers, see Amazon Location Service data
// providers (https://docs.aws.amazon.com/location/latest/developerguide/what-is-data-provider.html)
// .
//
// This member is required.
DataSource *string
// The unit of measurement for route distances.
//
// This member is required.
DistanceUnit DistanceUnit
// The count of error results in the route matrix. If this number is 0, all routes
// were calculated successfully.
//
// This member is required.
ErrorCount *int32
// The count of cells in the route matrix. Equal to the number of
// DeparturePositions multiplied by the number of DestinationPositions .
//
// This member is required.
RouteCount *int32
noSmithyDocumentSerde
}
// A summary of the calculated route.
type CalculateRouteSummary struct {
// The data provider of traffic and road network data used to calculate the route.
// Indicates one of the available providers:
// - Esri
// - Grab
// - Here
// For more information about data providers, see Amazon Location Service data
// providers (https://docs.aws.amazon.com/location/latest/developerguide/what-is-data-provider.html)
// .
//
// This member is required.
DataSource *string
// The total distance covered by the route. The sum of the distance travelled
// between every stop on the route. If Esri is the data source for the route
// calculator, the route distance can’t be greater than 400 km. If the route
// exceeds 400 km, the response is a 400 RoutesValidationException error.
//
// This member is required.
Distance *float64
// The unit of measurement for route distances.
//
// This member is required.
DistanceUnit DistanceUnit
// The total travel time for the route measured in seconds. The sum of the travel
// time between every stop on the route.
//
// This member is required.
DurationSeconds *float64
// Specifies a geographical box surrounding a route. Used to zoom into a route
// when displaying it in a map. For example, [min x, min y, max x, max y] . The
// first 2 bbox parameters describe the lower southwest corner:
// - The first bbox position is the X coordinate or longitude of the lower
// southwest corner.
// - The second bbox position is the Y coordinate or latitude of the lower
// southwest corner.
// The next 2 bbox parameters describe the upper northeast corner:
// - The third bbox position is the X coordinate, or longitude of the upper
// northeast corner.
// - The fourth bbox position is the Y coordinate, or latitude of the upper
// northeast corner.
//
// This member is required.
RouteBBox []float64
noSmithyDocumentSerde
}
// Contains details about additional route preferences for requests that specify
// TravelMode as Truck .
type CalculateRouteTruckModeOptions struct {
// Avoids ferries when calculating routes. Default Value: false Valid Values: false
// | true
AvoidFerries *bool
// Avoids tolls when calculating routes. Default Value: false Valid Values: false
// | true
AvoidTolls *bool
// Specifies the truck's dimension specifications including length, height, width,
// and unit of measurement. Used to avoid roads that can't support the truck's
// dimensions.
Dimensions *TruckDimensions
// Specifies the truck's weight specifications including total weight and unit of
// measurement. Used to avoid roads that can't support the truck's weight.
Weight *TruckWeight
noSmithyDocumentSerde
}
// A circle on the earth, as defined by a center point and a radius.
type Circle struct {
// A single point geometry, specifying the center of the circle, using WGS 84 (https://gisgeography.com/wgs84-world-geodetic-system/)
// coordinates, in the form [longitude, latitude] .
//
// This member is required.
Center []float64
// The radius of the circle in meters. Must be greater than zero and no larger
// than 100,000 (100 kilometers).
//
// This member is required.
Radius *float64
noSmithyDocumentSerde
}
// Specifies the data storage option chosen for requesting Places. When using
// Amazon Location Places:
// - If using HERE Technologies as a data provider, you can't store results for
// locations in Japan by setting IntendedUse to Storage . parameter.
// - Under the MobileAssetTracking or MobilAssetManagement pricing plan, you
// can't store results from your place index resources by setting IntendedUse to
// Storage . This returns a validation exception error.
//
// For more information, see the AWS Service Terms (https://aws.amazon.com/service-terms/)
// for Amazon Location Service.
type DataSourceConfiguration struct {
// Specifies how the results of an operation will be stored by the caller. Valid
// values include:
// - SingleUse specifies that the results won't be stored.
// - Storage specifies that the result can be cached or stored in a database.
// Default value: SingleUse
IntendedUse IntendedUse
noSmithyDocumentSerde
}
// Contains the device position details.
type DevicePosition struct {
// The last known device position.
//
// This member is required.
Position []float64
// The timestamp for when the tracker resource received the device position in
// ISO 8601 (https://www.iso.org/iso-8601-date-and-time-format.html) format:
// YYYY-MM-DDThh:mm:ss.sssZ .
//
// This member is required.
ReceivedTime *time.Time
// The timestamp at which the device's position was determined. Uses ISO 8601 (https://www.iso.org/iso-8601-date-and-time-format.html)
// format: YYYY-MM-DDThh:mm:ss.sssZ .
//
// This member is required.
SampleTime *time.Time
// The accuracy of the device position.
Accuracy *PositionalAccuracy
// The device whose position you retrieved.
DeviceId *string
// The properties associated with the position.
PositionProperties map[string]string
noSmithyDocumentSerde
}
// Contains the position update details for a device.
type DevicePositionUpdate struct {
// The device associated to the position update.
//
// This member is required.
DeviceId *string
// The latest device position defined in WGS 84 (https://earth-info.nga.mil/index.php?dir=wgs84&action=wgs84)
// format: [X or longitude, Y or latitude] .
//
// This member is required.
Position []float64
// The timestamp at which the device's position was determined. Uses ISO 8601 (https://www.iso.org/iso-8601-date-and-time-format.html)
// format: YYYY-MM-DDThh:mm:ss.sssZ
//
// This member is required.
SampleTime *time.Time
// The accuracy of the device position.
Accuracy *PositionalAccuracy
// Associates one of more properties with the position update. A property is a
// key-value pair stored with the position update and added to any geofence event
// the update may trigger. Format: "key" : "value"
PositionProperties map[string]string
noSmithyDocumentSerde
}
// Contains the geofence geometry details. A geofence geometry is made up of
// either a polygon or a circle. Can be either a polygon or a circle. Including
// both will return a validation error. Amazon Location doesn't currently support
// polygons with holes, multipolygons, polygons that are wound clockwise, or that
// cross the antimeridian.
type GeofenceGeometry struct {
// A circle on the earth, as defined by a center point and a radius.
Circle *Circle
// A polygon is a list of linear rings which are each made up of a list of
// vertices. Each vertex is a 2-dimensional point of the form: [longitude,
// latitude] . This is represented as an array of doubles of length 2 (so [double,
// double] ). An array of 4 or more vertices, where the first and last vertex are
// the same (to form a closed boundary), is called a linear ring. The linear ring
// vertices must be listed in counter-clockwise order around the ring’s interior.
// The linear ring is represented as an array of vertices, or an array of arrays of
// doubles ( [[double, double], ...] ). A geofence consists of a single linear
// ring. To allow for future expansion, the Polygon parameter takes an array of
// linear rings, which is represented as an array of arrays of arrays of doubles (
// [[[double, double], ...], ...] ). A linear ring for use in geofences can consist
// of between 4 and 1,000 vertices.
Polygon [][][]float64
noSmithyDocumentSerde
}
// Contains the calculated route's details for each path between a pair of
// positions. The number of legs returned corresponds to one fewer than the total
// number of positions in the request. For example, a route with a departure
// position and destination position returns one leg with the positions snapped to
// a nearby road (https://docs.aws.amazon.com/location/latest/developerguide/snap-to-nearby-road.html)
// :
// - The StartPosition is the departure position.
// - The EndPosition is the destination position.
//
// A route with a waypoint between the departure and destination position returns
// two legs with the positions snapped to a nearby road:
// - Leg 1: The StartPosition is the departure position . The EndPosition is the
// waypoint positon.
// - Leg 2: The StartPosition is the waypoint position. The EndPosition is the
// destination position.
type Leg struct {
// The distance between the leg's StartPosition and EndPosition along a calculated
// route.
// - The default measurement is Kilometers unless the request specifies a
// DistanceUnit of Miles .
//
// This member is required.
Distance *float64
// The estimated travel time between the leg's StartPosition and EndPosition . The
// travel mode and departure time that you specify in the request determines the
// calculated time.
//
// This member is required.
DurationSeconds *float64
// The terminating position of the leg. Follows the format [longitude,latitude] .
// If the EndPosition isn't located on a road, it's snapped to a nearby road (https://docs.aws.amazon.com/location/latest/developerguide/nap-to-nearby-road.html)
// .
//
// This member is required.
EndPosition []float64
// The starting position of the leg. Follows the format [longitude,latitude] . If
// the StartPosition isn't located on a road, it's snapped to a nearby road (https://docs.aws.amazon.com/location/latest/developerguide/snap-to-nearby-road.html)
// .
//
// This member is required.
StartPosition []float64
// Contains a list of steps, which represent subsections of a leg. Each step
// provides instructions for how to move to the next step in the leg such as the
// step's start position, end position, travel distance, travel duration, and
// geometry offset.
//
// This member is required.
Steps []Step
// Contains the calculated route's path as a linestring geometry.
Geometry *LegGeometry
noSmithyDocumentSerde
}
// Contains the geometry details for each path between a pair of positions. Used
// in plotting a route leg on a map.
type LegGeometry struct {
// An ordered list of positions used to plot a route on a map. The first position
// is closest to the start position for the leg, and the last position is the
// closest to the end position for the leg.
// - For example, [[-123.117, 49.284],[-123.115, 49.285],[-123.115, 49.285]]
LineString [][]float64
noSmithyDocumentSerde
}
// Contains the tracker resource details.
type ListDevicePositionsResponseEntry struct {
// The ID of the device for this position.
//
// This member is required.
DeviceId *string
// The last known device position. Empty if no positions currently stored.
//
// This member is required.
Position []float64
// The timestamp at which the device position was determined. Uses ISO 8601 (https://www.iso.org/iso-8601-date-and-time-format.html)
// format: YYYY-MM-DDThh:mm:ss.sssZ .
//
// This member is required.
SampleTime *time.Time
// The accuracy of the device position.
Accuracy *PositionalAccuracy
// The properties associated with the position.
PositionProperties map[string]string
noSmithyDocumentSerde
}
// Contains the geofence collection details.
type ListGeofenceCollectionsResponseEntry struct {
// The name of the geofence collection.
//
// This member is required.
CollectionName *string
// The timestamp for when the geofence collection was created in ISO 8601 (https://www.iso.org/iso-8601-date-and-time-format.html)
// format: YYYY-MM-DDThh:mm:ss.sssZ
//
// This member is required.
CreateTime *time.Time
// The description for the geofence collection
//
// This member is required.
Description *string
// Specifies a timestamp for when the resource was last updated in ISO 8601 (https://www.iso.org/iso-8601-date-and-time-format.html)
// format: YYYY-MM-DDThh:mm:ss.sssZ
//
// This member is required.
UpdateTime *time.Time
// No longer used. Always returns RequestBasedUsage .
//
// Deprecated: Deprecated. Always returns RequestBasedUsage.
PricingPlan PricingPlan
// No longer used. Always returns an empty string.
//
// Deprecated: Deprecated. Unused.
PricingPlanDataSource *string
noSmithyDocumentSerde
}
// Contains a list of geofences stored in a given geofence collection.
type ListGeofenceResponseEntry struct {
// The timestamp for when the geofence was stored in a geofence collection in ISO
// 8601 (https://www.iso.org/iso-8601-date-and-time-format.html) format:
// YYYY-MM-DDThh:mm:ss.sssZ
//
// This member is required.
CreateTime *time.Time
// The geofence identifier.
//
// This member is required.
GeofenceId *string
// Contains the geofence geometry details describing a polygon or a circle.
//
// This member is required.
Geometry *GeofenceGeometry
// Identifies the state of the geofence. A geofence will hold one of the following
// states:
// - ACTIVE — The geofence has been indexed by the system.
// - PENDING — The geofence is being processed by the system.
// - FAILED — The geofence failed to be indexed by the system.
// - DELETED — The geofence has been deleted from the system index.
// - DELETING — The geofence is being deleted from the system index.
//
// This member is required.
Status *string
// The timestamp for when the geofence was last updated in ISO 8601 (https://www.iso.org/iso-8601-date-and-time-format.html)
// format: YYYY-MM-DDThh:mm:ss.sssZ
//
// This member is required.
UpdateTime *time.Time
// User defined properties of the geofence. A property is a key-value pair stored
// with the geofence and added to any geofence event triggered with that geofence.
// Format: "key" : "value"
GeofenceProperties map[string]string
noSmithyDocumentSerde
}
// An API key resource listed in your Amazon Web Services account.
type ListKeysResponseEntry struct {
// The timestamp of when the API key was created, in ISO 8601 (https://www.iso.org/iso-8601-date-and-time-format.html)
// format: YYYY-MM-DDThh:mm:ss.sssZ .
//
// This member is required.
CreateTime *time.Time
// The timestamp for when the API key resource will expire, in ISO 8601 (https://www.iso.org/iso-8601-date-and-time-format.html)
// format: YYYY-MM-DDThh:mm:ss.sssZ .
//
// This member is required.
ExpireTime *time.Time
// The name of the API key resource.
//
// This member is required.
KeyName *string
// API Restrictions on the allowed actions, resources, and referers for an API key
// resource.
//
// This member is required.
Restrictions *ApiKeyRestrictions
// The timestamp of when the API key was last updated, in ISO 8601 (https://www.iso.org/iso-8601-date-and-time-format.html)
// format: YYYY-MM-DDThh:mm:ss.sssZ .
//
// This member is required.
UpdateTime *time.Time
// The optional description for the API key resource.
Description *string
noSmithyDocumentSerde
}
// Contains details of an existing map resource in your Amazon Web Services
// account.
type ListMapsResponseEntry struct {
// The timestamp for when the map resource was created in ISO 8601 (https://www.iso.org/iso-8601-date-and-time-format.html)
// format: YYYY-MM-DDThh:mm:ss.sssZ .
//
// This member is required.
CreateTime *time.Time
// Specifies the data provider for the associated map tiles.
//
// This member is required.
DataSource *string
// The description for the map resource.
//
// This member is required.
Description *string
// The name of the associated map resource.
//
// This member is required.
MapName *string
// The timestamp for when the map resource was last updated in ISO 8601 (https://www.iso.org/iso-8601-date-and-time-format.html)
// format: YYYY-MM-DDThh:mm:ss.sssZ .
//
// This member is required.
UpdateTime *time.Time
// No longer used. Always returns RequestBasedUsage .
//
// Deprecated: Deprecated. Always returns RequestBasedUsage.
PricingPlan PricingPlan
noSmithyDocumentSerde
}
// A place index resource listed in your Amazon Web Services account.
type ListPlaceIndexesResponseEntry struct {
// The timestamp for when the place index resource was created in ISO 8601 (https://www.iso.org/iso-8601-date-and-time-format.html)
// format: YYYY-MM-DDThh:mm:ss.sssZ .
//
// This member is required.
CreateTime *time.Time
// The data provider of geospatial data. Values can be one of the following:
// - Esri
// - Grab
// - Here
// For more information about data providers, see Amazon Location Service data
// providers (https://docs.aws.amazon.com/location/latest/developerguide/what-is-data-provider.html)
// .
//
// This member is required.
DataSource *string
// The optional description for the place index resource.
//
// This member is required.
Description *string
// The name of the place index resource.
//
// This member is required.
IndexName *string
// The timestamp for when the place index resource was last updated in ISO 8601 (https://www.iso.org/iso-8601-date-and-time-format.html)
// format: YYYY-MM-DDThh:mm:ss.sssZ .
//
// This member is required.
UpdateTime *time.Time
// No longer used. Always returns RequestBasedUsage .
//
// Deprecated: Deprecated. Always returns RequestBasedUsage.
PricingPlan PricingPlan
noSmithyDocumentSerde
}
// A route calculator resource listed in your Amazon Web Services account.
type ListRouteCalculatorsResponseEntry struct {
// The name of the route calculator resource.
//
// This member is required.
CalculatorName *string
// The timestamp when the route calculator resource was created in ISO 8601 (https://www.iso.org/iso-8601-date-and-time-format.html)
// format: YYYY-MM-DDThh:mm:ss.sssZ .
// - For example, 2020–07-2T12:15:20.000Z+01:00
//
// This member is required.
CreateTime *time.Time
// The data provider of traffic and road network data. Indicates one of the
// available providers:
// - Esri
// - Grab
// - Here
// For more information about data providers, see Amazon Location Service data
// providers (https://docs.aws.amazon.com/location/latest/developerguide/what-is-data-provider.html)
// .
//
// This member is required.
DataSource *string
// The optional description of the route calculator resource.
//
// This member is required.
Description *string
// The timestamp when the route calculator resource was last updated in ISO 8601 (https://www.iso.org/iso-8601-date-and-time-format.html)
// format: YYYY-MM-DDThh:mm:ss.sssZ .
// - For example, 2020–07-2T12:15:20.000Z+01:00
//
// This member is required.
UpdateTime *time.Time
// Always returns RequestBasedUsage .
//
// Deprecated: Deprecated. Always returns RequestBasedUsage.
PricingPlan PricingPlan
noSmithyDocumentSerde
}
// Contains the tracker resource details.
type ListTrackersResponseEntry struct {
// The timestamp for when the tracker resource was created in ISO 8601 (https://www.iso.org/iso-8601-date-and-time-format.html)
// format: YYYY-MM-DDThh:mm:ss.sssZ .
//
// This member is required.
CreateTime *time.Time
// The description for the tracker resource.
//
// This member is required.
Description *string
// The name of the tracker resource.
//
// This member is required.
TrackerName *string
// The timestamp at which the device's position was determined. Uses ISO 8601 (https://www.iso.org/iso-8601-date-and-time-format.html)
// format: YYYY-MM-DDThh:mm:ss.sssZ .
//
// This member is required.
UpdateTime *time.Time
// Always returns RequestBasedUsage .
//
// Deprecated: Deprecated. Always returns RequestBasedUsage.
PricingPlan PricingPlan
// No longer used. Always returns an empty string.
//
// Deprecated: Deprecated. Unused.
PricingPlanDataSource *string
noSmithyDocumentSerde
}
// Specifies the map tile style selected from an available provider.
type MapConfiguration struct {
// Specifies the map style selected from an available data provider. Valid Esri
// map styles (https://docs.aws.amazon.com/location/latest/developerguide/esri.html)
// :
// - VectorEsriDarkGrayCanvas – The Esri Dark Gray Canvas map style. A vector
// basemap with a dark gray, neutral background with minimal colors, labels, and
// features that's designed to draw attention to your thematic content.
// - RasterEsriImagery – The Esri Imagery map style. A raster basemap that
// provides one meter or better satellite and aerial imagery in many parts of the
// world and lower resolution satellite imagery worldwide.
// - VectorEsriLightGrayCanvas – The Esri Light Gray Canvas map style, which
// provides a detailed vector basemap with a light gray, neutral background style
// with minimal colors, labels, and features that's designed to draw attention to
// your thematic content.
// - VectorEsriTopographic – The Esri Light map style, which provides a detailed
// vector basemap with a classic Esri map style.
// - VectorEsriStreets – The Esri Street Map style, which provides a detailed
// vector basemap for the world symbolized with a classic Esri street map style.
// The vector tile layer is similar in content and style to the World Street Map
// raster map.
// - VectorEsriNavigation – The Esri Navigation map style, which provides a
// detailed basemap for the world symbolized with a custom navigation map style
// that's designed for use during the day in mobile devices.
// Valid HERE Technologies map styles (https://docs.aws.amazon.com/location/latest/developerguide/HERE.html)
// :
// - VectorHereContrast – The HERE Contrast (Berlin) map style is a high contrast
// detailed base map of the world that blends 3D and 2D rendering. The
// VectorHereContrast style has been renamed from VectorHereBerlin .
// VectorHereBerlin has been deprecated, but will continue to work in
// applications that use it.
// - VectorHereExplore – A default HERE map style containing a neutral, global
// map and its features including roads, buildings, landmarks, and water features.
// It also now includes a fully designed map of Japan.
// - VectorHereExploreTruck – A global map containing truck restrictions and
// attributes (e.g. width / height / HAZMAT) symbolized with highlighted segments
// and icons on top of HERE Explore to support use cases within transport and
// logistics.
// - RasterHereExploreSatellite – A global map containing high resolution
// satellite imagery.
// - HybridHereExploreSatellite – A global map displaying the road network,
// street names, and city labels over satellite imagery. This style will
// automatically retrieve both raster and vector tiles, and your charges will be
// based on total tiles retrieved. Hybrid styles use both vector and raster tiles
// when rendering the map that you see. This means that more tiles are retrieved
// than when using either vector or raster tiles alone. Your charges will include
// all tiles retrieved.
// Valid GrabMaps map styles (https://docs.aws.amazon.com/location/latest/developerguide/grab.html)
// :
// - VectorGrabStandardLight – The Grab Standard Light map style provides a
// basemap with detailed land use coloring, area names, roads, landmarks, and
// points of interest covering Southeast Asia.
// - VectorGrabStandardDark – The Grab Standard Dark map style provides a dark
// variation of the standard basemap covering Southeast Asia.
// Grab provides maps only for countries in Southeast Asia, and is only available
// in the Asia Pacific (Singapore) Region ( ap-southeast-1 ). For more information,
// see GrabMaps countries and area covered (https://docs.aws.amazon.com/location/latest/developerguide/grab.html#grab-coverage-area)
// . Valid Open Data map styles (https://docs.aws.amazon.com/location/latest/developerguide/open-data.html)
// :
// - VectorOpenDataStandardLight – The Open Data Standard Light map style
// provides a detailed basemap for the world suitable for website and mobile
// application use. The map includes highways major roads, minor roads, railways,
// water features, cities, parks, landmarks, building footprints, and
// administrative boundaries.
// - VectorOpenDataStandardDark – Open Data Standard Dark is a dark-themed map
// style that provides a detailed basemap for the world suitable for website and
// mobile application use. The map includes highways major roads, minor roads,
// railways, water features, cities, parks, landmarks, building footprints, and
// administrative boundaries.
// - VectorOpenDataVisualizationLight – The Open Data Visualization Light map
// style is a light-themed style with muted colors and fewer features that aids in
// understanding overlaid data.
// - VectorOpenDataVisualizationDark – The Open Data Visualization Dark map style
// is a dark-themed style with muted colors and fewer features that aids in
// understanding overlaid data.
//
// This member is required.
Style *string
// Specifies the political view for the style. Leave unset to not use a political
// view, or, for styles that support specific political views, you can choose a
// view, such as IND for the Indian view. Default is unset. Not all map resources
// or styles support political view styles. See Political views (https://docs.aws.amazon.com/location/latest/developerguide/map-concepts.html#political-views)
// for more information.
PoliticalView *string
noSmithyDocumentSerde
}
// Specifies the political view for the style.
type MapConfigurationUpdate struct {
// Specifies the political view for the style. Set to an empty string to not use a
// political view, or, for styles that support specific political views, you can
// choose a view, such as IND for the Indian view. Not all map resources or styles
// support political view styles. See Political views (https://docs.aws.amazon.com/location/latest/developerguide/map-concepts.html#political-views)
// for more information.
PoliticalView *string
noSmithyDocumentSerde
}
// Contains details about addresses or points of interest that match the search
// criteria. Not all details are included with all responses. Some details may only
// be returned by specific data partners.
type Place struct {
// Places uses a point geometry to specify a location or a Place.
//
// This member is required.
Geometry *PlaceGeometry
// The numerical portion of an address, such as a building number.
AddressNumber *string
// The Amazon Location categories that describe this Place. For more information
// about using categories, including a list of Amazon Location categories, see
// Categories and filtering (https://docs.aws.amazon.com/location/latest/developerguide/category-filtering.html)
// , in the Amazon Location Service Developer Guide.
Categories []string
// A country/region specified using ISO 3166 (https://www.iso.org/iso-3166-country-codes.html)
// 3-digit country/region code. For example, CAN .
Country *string
// True if the result is interpolated from other known places. False if the Place
// is a known place. Not returned when the partner does not provide the
// information. For example, returns False for an address location that is found
// in the partner data, but returns True if an address does not exist in the
// partner data and its location is calculated by interpolating between other known
// addresses.
Interpolated *bool
// The full name and address of the point of interest such as a city, region, or
// country. For example, 123 Any Street, Any Town, USA .
Label *string
// A name for a local area, such as a city or town name. For example, Toronto .
Municipality *string
// The name of a community district. For example, Downtown .
Neighborhood *string
// A group of numbers and letters in a country-specific format, which accompanies
// the address for the purpose of identifying a location.
PostalCode *string
// A name for an area or geographical division, such as a province or state name.
// For example, British Columbia .
Region *string
// The name for a street or a road to identify a location. For example, Main Street
// .
Street *string
// An area that's part of a larger municipality. For example, Blissville is a
// submunicipality in the Queen County in New York. This property supported by Esri
// and OpenData. The Esri property is district , and the OpenData property is
// borough .
SubMunicipality *string
// A county, or an area that's part of a larger region. For example, Metro
// Vancouver .
SubRegion *string
// Categories from the data provider that describe the Place that are not mapped
// to any Amazon Location categories.
SupplementalCategories []string
// The time zone in which the Place is located. Returned only when using HERE or
// Grab as the selected partner.
TimeZone *TimeZone
// For addresses with multiple units, the unit identifier. Can include numbers and
// letters, for example 3B or Unit 123 . Returned only for a place index that uses
// Esri or Grab as a data provider. Is not returned for SearchPlaceIndexForPosition
// .
UnitNumber *string
// For addresses with a UnitNumber , the type of unit. For example, Apartment .
// Returned only for a place index that uses Esri as a data provider.
UnitType *string
noSmithyDocumentSerde
}
// Places uses a point geometry to specify a location or a Place.
type PlaceGeometry struct {
// A single point geometry specifies a location for a Place using WGS 84 (https://gisgeography.com/wgs84-world-geodetic-system/)
// coordinates:
// - x — Specifies the x coordinate or longitude.
// - y — Specifies the y coordinate or latitude.
Point []float64
noSmithyDocumentSerde
}
// Defines the level of certainty of the position.
type PositionalAccuracy struct {
// Estimated maximum distance, in meters, between the measured position and the
// true position of a device, along the Earth's surface.
//
// This member is required.
Horizontal *float64
noSmithyDocumentSerde
}
// The result for the calculated route of one DeparturePosition DestinationPosition
// pair.
type RouteMatrixEntry struct {
// The total distance of travel for the route.
Distance *float64
// The expected duration of travel for the route.
DurationSeconds *float64
// An error corresponding to the calculation of a route between the
// DeparturePosition and DestinationPosition .
Error *RouteMatrixEntryError
noSmithyDocumentSerde
}
// An error corresponding to the calculation of a route between the
// DeparturePosition and DestinationPosition . The error code can be one of the
// following:
//
// - RouteNotFound - Unable to find a valid route with the given parameters.
//
// - RouteTooLong - Route calculation went beyond the maximum size of a route and
// was terminated before completion.
//
// - PositionsNotFound - One or more of the input positions were not found on the
// route network.
//
// - DestinationPositionNotFound - The destination position was not found on the
// route network.
//
// - DeparturePositionNotFound - The departure position was not found on the
// route network.
//
// - OtherValidationError - The given inputs were not valid or a route was not
// found. More information is given in the error Message
type RouteMatrixEntryError struct {
// The type of error which occurred for the route calculation.
//
// This member is required.
Code RouteMatrixErrorCode
// A message about the error that occurred for the route calculation.
Message *string
noSmithyDocumentSerde
}
// Contains a search result from a position search query that is run on a place
// index resource.
type SearchForPositionResult struct {
// The distance in meters of a great-circle arc between the query position and the
// result. A great-circle arc is the shortest path on a sphere, in this case the
// Earth. This returns the shortest distance between two locations.
//
// This member is required.
Distance *float64
// Details about the search result, such as its address and position.
//
// This member is required.
Place *Place
// The unique identifier of the place. You can use this with the GetPlace
// operation to find the place again later. For SearchPlaceIndexForPosition
// operations, the PlaceId is returned only by place indexes that use HERE or Grab
// as a data provider.
PlaceId *string
noSmithyDocumentSerde
}
// Contains a place suggestion resulting from a place suggestion query that is run
// on a place index resource.
type SearchForSuggestionsResult struct {
// The text of the place suggestion, typically formatted as an address string.
//
// This member is required.
Text *string
// The Amazon Location categories that describe the Place. For more information
// about using categories, including a list of Amazon Location categories, see
// Categories and filtering (https://docs.aws.amazon.com/location/latest/developerguide/category-filtering.html)
// , in the Amazon Location Service Developer Guide.
Categories []string
// The unique identifier of the Place. You can use this with the GetPlace
// operation to find the place again later, or to get full information for the
// Place. The GetPlace request must use the same PlaceIndex resource as the
// SearchPlaceIndexForSuggestions that generated the Place ID. For
// SearchPlaceIndexForSuggestions operations, the PlaceId is returned by place
// indexes that use Esri, Grab, or HERE as data providers.
PlaceId *string
// Categories from the data provider that describe the Place that are not mapped
// to any Amazon Location categories.
SupplementalCategories []string
noSmithyDocumentSerde
}
// Contains a search result from a text search query that is run on a place index
// resource.
type SearchForTextResult struct {
// Details about the search result, such as its address and position.
//
// This member is required.
Place *Place
// The distance in meters of a great-circle arc between the bias position
// specified and the result. Distance will be returned only if a bias position was
// specified in the query. A great-circle arc is the shortest path on a sphere, in
// this case the Earth. This returns the shortest distance between two locations.
Distance *float64
// The unique identifier of the place. You can use this with the GetPlace
// operation to find the place again later. For SearchPlaceIndexForText
// operations, the PlaceId is returned only by place indexes that use HERE or Grab
// as a data provider.
PlaceId *string
// The relative confidence in the match for a result among the results returned.
// For example, if more fields for an address match (including house number,
// street, city, country/region, and postal code), the relevance score is closer to
// 1. Returned only when the partner selected is Esri or Grab.
Relevance *float64
noSmithyDocumentSerde
}
// A summary of the request sent by using SearchPlaceIndexForPosition .
type SearchPlaceIndexForPositionSummary struct {
// The geospatial data provider attached to the place index resource specified in
// the request. Values can be one of the following:
// - Esri
// - Grab
// - Here
// For more information about data providers, see Amazon Location Service data
// providers (https://docs.aws.amazon.com/location/latest/developerguide/what-is-data-provider.html)
// .
//
// This member is required.
DataSource *string
// The position specified in the request.
//
// This member is required.
Position []float64
// The preferred language used to return results. Matches the language in the
// request. The value is a valid BCP 47 (https://tools.ietf.org/search/bcp47)
// language tag, for example, en for English.
Language *string
// Contains the optional result count limit that is specified in the request.
// Default value: 50
MaxResults *int32
noSmithyDocumentSerde
}
// A summary of the request sent by using SearchPlaceIndexForSuggestions .
type SearchPlaceIndexForSuggestionsSummary struct {
// The geospatial data provider attached to the place index resource specified in
// the request. Values can be one of the following:
// - Esri
// - Grab
// - Here
// For more information about data providers, see Amazon Location Service data
// providers (https://docs.aws.amazon.com/location/latest/developerguide/what-is-data-provider.html)
// .
//
// This member is required.
DataSource *string
// The free-form partial text input specified in the request.
//
// This member is required.
Text *string
// Contains the coordinates for the optional bias position specified in the
// request. This parameter contains a pair of numbers. The first number represents
// the X coordinate, or longitude; the second number represents the Y coordinate,
// or latitude. For example, [-123.1174, 49.2847] represents the position with
// longitude -123.1174 and latitude 49.2847 .
BiasPosition []float64
// Contains the coordinates for the optional bounding box specified in the request.
FilterBBox []float64
// The optional category filter specified in the request.
FilterCategories []string
// Contains the optional country filter specified in the request.
FilterCountries []string
// The preferred language used to return results. Matches the language in the
// request. The value is a valid BCP 47 (https://tools.ietf.org/search/bcp47)
// language tag, for example, en for English.
Language *string
// Contains the optional result count limit specified in the request.
MaxResults *int32
noSmithyDocumentSerde
}
// A summary of the request sent by using SearchPlaceIndexForText .
type SearchPlaceIndexForTextSummary struct {
// The geospatial data provider attached to the place index resource specified in
// the request. Values can be one of the following:
// - Esri
// - Grab
// - Here
// For more information about data providers, see Amazon Location Service data
// providers (https://docs.aws.amazon.com/location/latest/developerguide/what-is-data-provider.html)
// .
//
// This member is required.
DataSource *string
// The search text specified in the request.
//
// This member is required.
Text *string
// Contains the coordinates for the optional bias position specified in the
// request. This parameter contains a pair of numbers. The first number represents
// the X coordinate, or longitude; the second number represents the Y coordinate,
// or latitude. For example, [-123.1174, 49.2847] represents the position with
// longitude -123.1174 and latitude 49.2847 .
BiasPosition []float64
// Contains the coordinates for the optional bounding box specified in the request.
FilterBBox []float64
// The optional category filter specified in the request.
FilterCategories []string
// Contains the optional country filter specified in the request.
FilterCountries []string
// The preferred language used to return results. Matches the language in the
// request. The value is a valid BCP 47 (https://tools.ietf.org/search/bcp47)
// language tag, for example, en for English.
Language *string
// Contains the optional result count limit specified in the request.
MaxResults *int32
// The bounding box that fully contains all search results. If you specified the
// optional FilterBBox parameter in the request, ResultBBox is contained within
// FilterBBox .
ResultBBox []float64
noSmithyDocumentSerde
}
// Represents an element of a leg within a route. A step contains instructions for
// how to move to the next step in the leg.
type Step struct {
// The travel distance between the step's StartPosition and EndPosition .
//
// This member is required.
Distance *float64
// The estimated travel time, in seconds, from the step's StartPosition to the
// EndPosition . . The travel mode and departure time that you specify in the
// request determines the calculated time.
//
// This member is required.
DurationSeconds *float64
// The end position of a step. If the position the last step in the leg, this
// position is the same as the end position of the leg.
//
// This member is required.
EndPosition []float64
// The starting position of a step. If the position is the first step in the leg,
// this position is the same as the start position of the leg.
//
// This member is required.
StartPosition []float64
// Represents the start position, or index, in a sequence of steps within the
// leg's line string geometry. For example, the index of the first step in a leg
// geometry is 0 . Included in the response for queries that set IncludeLegGeometry
// to True .
GeometryOffset *int32
noSmithyDocumentSerde
}
// Information about a time zone. Includes the name of the time zone and the
// offset from UTC in seconds.
type TimeZone struct {
// The name of the time zone, following the IANA time zone standard (https://www.iana.org/time-zones)
// . For example, America/Los_Angeles .
//
// This member is required.
Name *string
// The time zone's offset, in seconds, from UTC.
Offset *int32
noSmithyDocumentSerde
}
// The geomerty used to filter device positions.
type TrackingFilterGeometry struct {
// The set of arrays which define the polygon. A polygon can have between 4 and
// 1000 vertices.
Polygon [][][]float64
noSmithyDocumentSerde
}
// Contains details about the truck dimensions in the unit of measurement that you
// specify. Used to filter out roads that can't support or allow the specified
// dimensions for requests that specify TravelMode as Truck .
type TruckDimensions struct {
// The height of the truck.
// - For example, 4.5 .
// For routes calculated with a HERE resource, this value must be between 0 and 50
// meters.
Height *float64
// The length of the truck.
// - For example, 15.5 .
// For routes calculated with a HERE resource, this value must be between 0 and
// 300 meters.
Length *float64
// Specifies the unit of measurement for the truck dimensions. Default Value:
// Meters
Unit DimensionUnit
// The width of the truck.
// - For example, 4.5 .
// For routes calculated with a HERE resource, this value must be between 0 and 50
// meters.
Width *float64
noSmithyDocumentSerde
}
// Contains details about the truck's weight specifications. Used to avoid roads
// that can't support or allow the total weight for requests that specify
// TravelMode as Truck .
type TruckWeight struct {
// The total weight of the truck.
// - For example, 3500 .
Total *float64
// The unit of measurement to use for the truck weight. Default Value: Kilograms
Unit VehicleWeightUnit
noSmithyDocumentSerde
}
// The input failed to meet the constraints specified by the AWS service in a
// specified field.
type ValidationExceptionField struct {
// A message with the reason for the validation exception error.
//
// This member is required.
Message *string
// The field name where the invalid entry was detected.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|