@aws-sdk/client-location 3.686.0 → 3.691.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27,7 +27,7 @@ export interface ApiKeyFilter {
27
27
  * <p>Filter on <code>Active</code> or <code>Expired</code> API keys.</p>
28
28
  * @public
29
29
  */
30
- KeyStatus?: Status;
30
+ KeyStatus?: Status | undefined;
31
31
  }
32
32
  /**
33
33
  * <p>The request was unsuccessful because of a conflict.</p>
@@ -174,7 +174,7 @@ export interface ApiKeyRestrictions {
174
174
  * </ul>
175
175
  * @public
176
176
  */
177
- AllowReferers?: string[];
177
+ AllowReferers?: string[] | undefined;
178
178
  }
179
179
  /**
180
180
  * @public
@@ -207,20 +207,20 @@ export interface CreateKeyRequest {
207
207
  * <p>An optional description for the API key resource.</p>
208
208
  * @public
209
209
  */
210
- Description?: string;
210
+ Description?: string | undefined;
211
211
  /**
212
212
  * <p>The optional timestamp for when the API key resource will expire in <a href="https://www.iso.org/iso-8601-date-and-time-format.html"> ISO 8601</a>
213
213
  * format: <code>YYYY-MM-DDThh:mm:ss.sssZ</code>. One of <code>NoExpiry</code> or
214
214
  * <code>ExpireTime</code> must be set.</p>
215
215
  * @public
216
216
  */
217
- ExpireTime?: Date;
217
+ ExpireTime?: Date | undefined;
218
218
  /**
219
219
  * <p>Optionally set to <code>true</code> to set no expiration time for the API key. One of
220
220
  * <code>NoExpiry</code> or <code>ExpireTime</code> must be set.</p>
221
221
  * @public
222
222
  */
223
- NoExpiry?: boolean;
223
+ NoExpiry?: boolean | undefined;
224
224
  /**
225
225
  * <p>Applies one or more tags to the map resource. A tag is a key-value pair that helps
226
226
  * manage, identify, search, and filter your resources by labelling them.</p>
@@ -250,7 +250,7 @@ export interface CreateKeyRequest {
250
250
  * </ul>
251
251
  * @public
252
252
  */
253
- Tags?: Record<string, string>;
253
+ Tags?: Record<string, string> | undefined;
254
254
  }
255
255
  /**
256
256
  * @public
@@ -395,7 +395,7 @@ export interface DeleteKeyRequest {
395
395
  * </note>
396
396
  * @public
397
397
  */
398
- ForceDelete?: boolean;
398
+ ForceDelete?: boolean | undefined;
399
399
  }
400
400
  /**
401
401
  * @public
@@ -480,12 +480,12 @@ export interface DescribeKeyResponse {
480
480
  * <p>The optional description for the API key resource.</p>
481
481
  * @public
482
482
  */
483
- Description?: string;
483
+ Description?: string | undefined;
484
484
  /**
485
485
  * <p>Tags associated with the API key resource.</p>
486
486
  * @public
487
487
  */
488
- Tags?: Record<string, string>;
488
+ Tags?: Record<string, string> | undefined;
489
489
  }
490
490
  /**
491
491
  * @public
@@ -497,7 +497,7 @@ export interface ListKeysRequest {
497
497
  * </p>
498
498
  * @public
499
499
  */
500
- MaxResults?: number;
500
+ MaxResults?: number | undefined;
501
501
  /**
502
502
  * <p>The pagination token specifying which page of results to return in the response. If no
503
503
  * token is provided, the default page is the first page. </p>
@@ -505,13 +505,13 @@ export interface ListKeysRequest {
505
505
  * </p>
506
506
  * @public
507
507
  */
508
- NextToken?: string;
508
+ NextToken?: string | undefined;
509
509
  /**
510
510
  * <p>Optionally filter the list to only <code>Active</code> or <code>Expired</code> API
511
511
  * keys.</p>
512
512
  * @public
513
513
  */
514
- Filter?: ApiKeyFilter;
514
+ Filter?: ApiKeyFilter | undefined;
515
515
  }
516
516
  /**
517
517
  * <p>An API key resource listed in your Amazon Web Services account.</p>
@@ -533,7 +533,7 @@ export interface ListKeysResponseEntry {
533
533
  * <p>The optional description for the API key resource.</p>
534
534
  * @public
535
535
  */
536
- Description?: string;
536
+ Description?: string | undefined;
537
537
  /**
538
538
  * <p>API Restrictions on the allowed actions, resources, and referers for an API key
539
539
  * resource.</p>
@@ -568,7 +568,7 @@ export interface ListKeysResponse {
568
568
  * token in a following request to fetch the next set of results. </p>
569
569
  * @public
570
570
  */
571
- NextToken?: string;
571
+ NextToken?: string | undefined;
572
572
  }
573
573
  /**
574
574
  * @public
@@ -583,19 +583,19 @@ export interface UpdateKeyRequest {
583
583
  * <p>Updates the description for the API key resource.</p>
584
584
  * @public
585
585
  */
586
- Description?: string;
586
+ Description?: string | undefined;
587
587
  /**
588
588
  * <p>Updates the timestamp for when the API key resource will expire in <a href="https://www.iso.org/iso-8601-date-and-time-format.html"> ISO 8601</a>
589
589
  * format: <code>YYYY-MM-DDThh:mm:ss.sssZ</code>. </p>
590
590
  * @public
591
591
  */
592
- ExpireTime?: Date;
592
+ ExpireTime?: Date | undefined;
593
593
  /**
594
594
  * <p>Whether the API key should expire. Set to <code>true</code> to set the API key to have
595
595
  * no expiration time.</p>
596
596
  * @public
597
597
  */
598
- NoExpiry?: boolean;
598
+ NoExpiry?: boolean | undefined;
599
599
  /**
600
600
  * <p>The boolean flag to be included for updating <code>ExpireTime</code> or
601
601
  * <code>Restrictions</code> details.</p>
@@ -607,12 +607,12 @@ export interface UpdateKeyRequest {
607
607
  * </p>
608
608
  * @public
609
609
  */
610
- ForceUpdate?: boolean;
610
+ ForceUpdate?: boolean | undefined;
611
611
  /**
612
612
  * <p>Updates the API key restrictions for the API key resource.</p>
613
613
  * @public
614
614
  */
615
- Restrictions?: ApiKeyRestrictions;
615
+ Restrictions?: ApiKeyRestrictions | undefined;
616
616
  }
617
617
  /**
618
618
  * @public
@@ -706,12 +706,12 @@ export interface BatchItemError {
706
706
  * <p>The error code associated with the batch request error.</p>
707
707
  * @public
708
708
  */
709
- Code?: BatchItemErrorCode;
709
+ Code?: BatchItemErrorCode | undefined;
710
710
  /**
711
711
  * <p>A message with the reason for the batch request error.</p>
712
712
  * @public
713
713
  */
714
- Message?: string;
714
+ Message?: string | undefined;
715
715
  }
716
716
  /**
717
717
  * <p>Contains the tracker resource details.</p>
@@ -820,7 +820,7 @@ export interface DevicePositionUpdate {
820
820
  * <p>The accuracy of the device position.</p>
821
821
  * @public
822
822
  */
823
- Accuracy?: PositionalAccuracy;
823
+ Accuracy?: PositionalAccuracy | undefined;
824
824
  /**
825
825
  * <p>Associates one of more properties with the position update. A property is a key-value
826
826
  * pair stored with the position update and added to any geofence event the update may
@@ -829,7 +829,7 @@ export interface DevicePositionUpdate {
829
829
  * </p>
830
830
  * @public
831
831
  */
832
- PositionProperties?: Record<string, string>;
832
+ PositionProperties?: Record<string, string> | undefined;
833
833
  }
834
834
  /**
835
835
  * @public
@@ -914,7 +914,7 @@ export interface DevicePosition {
914
914
  * <p>The device whose position you retrieved.</p>
915
915
  * @public
916
916
  */
917
- DeviceId?: string;
917
+ DeviceId?: string | undefined;
918
918
  /**
919
919
  * <p>The timestamp at which the device's position was determined. Uses <a href="https://www.iso.org/iso-8601-date-and-time-format.html"> ISO 8601</a>
920
920
  * format: <code>YYYY-MM-DDThh:mm:ss.sssZ</code>. </p>
@@ -936,12 +936,12 @@ export interface DevicePosition {
936
936
  * <p>The accuracy of the device position.</p>
937
937
  * @public
938
938
  */
939
- Accuracy?: PositionalAccuracy;
939
+ Accuracy?: PositionalAccuracy | undefined;
940
940
  /**
941
941
  * <p>The properties associated with the position.</p>
942
942
  * @public
943
943
  */
944
- PositionProperties?: Record<string, string>;
944
+ PositionProperties?: Record<string, string> | undefined;
945
945
  }
946
946
  /**
947
947
  * <p>Contains error details for each device that didn't return a position.</p>
@@ -1021,18 +1021,18 @@ export interface GeofenceGeometry {
1021
1021
  * <p>A linear ring for use in geofences can consist of between 4 and 1,000 vertices.</p>
1022
1022
  * @public
1023
1023
  */
1024
- Polygon?: number[][][];
1024
+ Polygon?: number[][][] | undefined;
1025
1025
  /**
1026
1026
  * <p>A circle on the earth, as defined by a center point and a radius.</p>
1027
1027
  * @public
1028
1028
  */
1029
- Circle?: Circle;
1029
+ Circle?: Circle | undefined;
1030
1030
  /**
1031
1031
  * <p>Geobuf is a compact binary encoding for geographic data that provides lossless compression of GeoJSON polygons. The Geobuf must be Base64-encoded.</p>
1032
1032
  * <p>A polygon in Geobuf format can have up to 100,000 vertices.</p>
1033
1033
  * @public
1034
1034
  */
1035
- Geobuf?: Uint8Array;
1035
+ Geobuf?: Uint8Array | undefined;
1036
1036
  }
1037
1037
  /**
1038
1038
  * <p>Contains geofence geometry details. </p>
@@ -1062,7 +1062,7 @@ export interface BatchPutGeofenceRequestEntry {
1062
1062
  * </p>
1063
1063
  * @public
1064
1064
  */
1065
- GeofenceProperties?: Record<string, string>;
1065
+ GeofenceProperties?: Record<string, string> | undefined;
1066
1066
  }
1067
1067
  /**
1068
1068
  * @public
@@ -1200,7 +1200,7 @@ export interface CalculateRouteCarModeOptions {
1200
1200
  * </p>
1201
1201
  * @public
1202
1202
  */
1203
- AvoidFerries?: boolean;
1203
+ AvoidFerries?: boolean | undefined;
1204
1204
  /**
1205
1205
  * <p>Avoids tolls when calculating routes.</p>
1206
1206
  * <p>Default Value: <code>false</code>
@@ -1209,7 +1209,7 @@ export interface CalculateRouteCarModeOptions {
1209
1209
  * </p>
1210
1210
  * @public
1211
1211
  */
1212
- AvoidTolls?: boolean;
1212
+ AvoidTolls?: boolean | undefined;
1213
1213
  }
1214
1214
  /**
1215
1215
  * @public
@@ -1248,7 +1248,7 @@ export interface TruckDimensions {
1248
1248
  * </note>
1249
1249
  * @public
1250
1250
  */
1251
- Length?: number;
1251
+ Length?: number | undefined;
1252
1252
  /**
1253
1253
  * <p>The height of the truck.</p>
1254
1254
  * <ul>
@@ -1263,7 +1263,7 @@ export interface TruckDimensions {
1263
1263
  * </note>
1264
1264
  * @public
1265
1265
  */
1266
- Height?: number;
1266
+ Height?: number | undefined;
1267
1267
  /**
1268
1268
  * <p>The width of the truck.</p>
1269
1269
  * <ul>
@@ -1278,14 +1278,14 @@ export interface TruckDimensions {
1278
1278
  * </note>
1279
1279
  * @public
1280
1280
  */
1281
- Width?: number;
1281
+ Width?: number | undefined;
1282
1282
  /**
1283
1283
  * <p> Specifies the unit of measurement for the truck dimensions.</p>
1284
1284
  * <p>Default Value: <code>Meters</code>
1285
1285
  * </p>
1286
1286
  * @public
1287
1287
  */
1288
- Unit?: DimensionUnit;
1288
+ Unit?: DimensionUnit | undefined;
1289
1289
  }
1290
1290
  /**
1291
1291
  * @public
@@ -1307,14 +1307,14 @@ export interface TruckWeight {
1307
1307
  * </ul>
1308
1308
  * @public
1309
1309
  */
1310
- Total?: number;
1310
+ Total?: number | undefined;
1311
1311
  /**
1312
1312
  * <p>The unit of measurement to use for the truck weight.</p>
1313
1313
  * <p>Default Value: <code>Kilograms</code>
1314
1314
  * </p>
1315
1315
  * @public
1316
1316
  */
1317
- Unit?: VehicleWeightUnit;
1317
+ Unit?: VehicleWeightUnit | undefined;
1318
1318
  }
1319
1319
  /**
1320
1320
  * <p>Contains details about additional route preferences for requests that specify
@@ -1330,7 +1330,7 @@ export interface CalculateRouteTruckModeOptions {
1330
1330
  * </p>
1331
1331
  * @public
1332
1332
  */
1333
- AvoidFerries?: boolean;
1333
+ AvoidFerries?: boolean | undefined;
1334
1334
  /**
1335
1335
  * <p>Avoids tolls when calculating routes.</p>
1336
1336
  * <p>Default Value: <code>false</code>
@@ -1339,20 +1339,20 @@ export interface CalculateRouteTruckModeOptions {
1339
1339
  * </p>
1340
1340
  * @public
1341
1341
  */
1342
- AvoidTolls?: boolean;
1342
+ AvoidTolls?: boolean | undefined;
1343
1343
  /**
1344
1344
  * <p>Specifies the truck's dimension specifications including length, height, width, and
1345
1345
  * unit of measurement. Used to avoid roads that can't support the truck's
1346
1346
  * dimensions.</p>
1347
1347
  * @public
1348
1348
  */
1349
- Dimensions?: TruckDimensions;
1349
+ Dimensions?: TruckDimensions | undefined;
1350
1350
  /**
1351
1351
  * <p>Specifies the truck's weight specifications including total weight and unit of
1352
1352
  * measurement. Used to avoid roads that can't support the truck's weight.</p>
1353
1353
  * @public
1354
1354
  */
1355
- Weight?: TruckWeight;
1355
+ Weight?: TruckWeight | undefined;
1356
1356
  }
1357
1357
  /**
1358
1358
  * @public
@@ -1428,7 +1428,7 @@ export interface CalculateRouteRequest {
1428
1428
  * </p>
1429
1429
  * @public
1430
1430
  */
1431
- WaypointPositions?: number[][];
1431
+ WaypointPositions?: number[][] | undefined;
1432
1432
  /**
1433
1433
  * <p>Specifies the mode of transport when calculating a route. Used in estimating the speed
1434
1434
  * of travel and road compatibility. You can choose <code>Car</code>, <code>Truck</code>,
@@ -1459,7 +1459,7 @@ export interface CalculateRouteRequest {
1459
1459
  * </p>
1460
1460
  * @public
1461
1461
  */
1462
- TravelMode?: TravelMode;
1462
+ TravelMode?: TravelMode | undefined;
1463
1463
  /**
1464
1464
  * <p>Specifies the desired time of departure. Uses the given time to calculate the route.
1465
1465
  * Otherwise, the best time of day to travel with the best traffic conditions is used to
@@ -1474,7 +1474,7 @@ export interface CalculateRouteRequest {
1474
1474
  * </ul>
1475
1475
  * @public
1476
1476
  */
1477
- DepartureTime?: Date;
1477
+ DepartureTime?: Date | undefined;
1478
1478
  /**
1479
1479
  * <p>Sets the time of departure as the current time. Uses the current time to calculate a
1480
1480
  * route. Otherwise, the best time of day to travel with the best traffic conditions is
@@ -1485,14 +1485,14 @@ export interface CalculateRouteRequest {
1485
1485
  * </p>
1486
1486
  * @public
1487
1487
  */
1488
- DepartNow?: boolean;
1488
+ DepartNow?: boolean | undefined;
1489
1489
  /**
1490
1490
  * <p>Set the unit system to specify the distance.</p>
1491
1491
  * <p>Default Value: <code>Kilometers</code>
1492
1492
  * </p>
1493
1493
  * @public
1494
1494
  */
1495
- DistanceUnit?: DistanceUnit;
1495
+ DistanceUnit?: DistanceUnit | undefined;
1496
1496
  /**
1497
1497
  * <p>Set to include the geometry details in the result for each path between a pair of
1498
1498
  * positions.</p>
@@ -1502,14 +1502,14 @@ export interface CalculateRouteRequest {
1502
1502
  * </p>
1503
1503
  * @public
1504
1504
  */
1505
- IncludeLegGeometry?: boolean;
1505
+ IncludeLegGeometry?: boolean | undefined;
1506
1506
  /**
1507
1507
  * <p>Specifies route preferences when traveling by <code>Car</code>, such as avoiding
1508
1508
  * routes that use ferries or tolls.</p>
1509
1509
  * <p>Requirements: <code>TravelMode</code> must be specified as <code>Car</code>.</p>
1510
1510
  * @public
1511
1511
  */
1512
- CarModeOptions?: CalculateRouteCarModeOptions;
1512
+ CarModeOptions?: CalculateRouteCarModeOptions | undefined;
1513
1513
  /**
1514
1514
  * <p>Specifies route preferences when traveling by <code>Truck</code>, such as avoiding
1515
1515
  * routes that use ferries or tolls, and truck specifications to consider when choosing an
@@ -1517,7 +1517,7 @@ export interface CalculateRouteRequest {
1517
1517
  * <p>Requirements: <code>TravelMode</code> must be specified as <code>Truck</code>.</p>
1518
1518
  * @public
1519
1519
  */
1520
- TruckModeOptions?: CalculateRouteTruckModeOptions;
1520
+ TruckModeOptions?: CalculateRouteTruckModeOptions | undefined;
1521
1521
  /**
1522
1522
  * <p>Specifies the desired time of arrival. Uses the given time to calculate the route.
1523
1523
  * Otherwise, the best time of day to travel with the best traffic conditions is used to calculate the route.</p>
@@ -1526,18 +1526,18 @@ export interface CalculateRouteRequest {
1526
1526
  * </note>
1527
1527
  * @public
1528
1528
  */
1529
- ArrivalTime?: Date;
1529
+ ArrivalTime?: Date | undefined;
1530
1530
  /**
1531
1531
  * <p>Specifies the distance to optimize for when calculating a route.</p>
1532
1532
  * @public
1533
1533
  */
1534
- OptimizeFor?: OptimizationMode;
1534
+ OptimizeFor?: OptimizationMode | undefined;
1535
1535
  /**
1536
1536
  * <p>The optional <a href="https://docs.aws.amazon.com/location/latest/developerguide/using-apikeys.html">API key</a> to authorize
1537
1537
  * the request.</p>
1538
1538
  * @public
1539
1539
  */
1540
- Key?: string;
1540
+ Key?: string | undefined;
1541
1541
  }
1542
1542
  /**
1543
1543
  * <p>Contains the geometry details for each path between a pair of positions. Used in
@@ -1558,7 +1558,7 @@ export interface LegGeometry {
1558
1558
  * </ul>
1559
1559
  * @public
1560
1560
  */
1561
- LineString?: number[][];
1561
+ LineString?: number[][] | undefined;
1562
1562
  }
1563
1563
  /**
1564
1564
  * <p> Represents an element of a leg within a route. A step contains instructions for how
@@ -1599,7 +1599,7 @@ export interface Step {
1599
1599
  * <code>True</code>. </p>
1600
1600
  * @public
1601
1601
  */
1602
- GeometryOffset?: number;
1602
+ GeometryOffset?: number | undefined;
1603
1603
  }
1604
1604
  /**
1605
1605
  * <p>Contains the calculated route's details for each path between a pair of positions. The
@@ -1674,7 +1674,7 @@ export interface Leg {
1674
1674
  * <p>Contains the calculated route's path as a linestring geometry.</p>
1675
1675
  * @public
1676
1676
  */
1677
- Geometry?: LegGeometry;
1677
+ Geometry?: LegGeometry | undefined;
1678
1678
  /**
1679
1679
  * <p>Contains a list of steps, which represent subsections of a leg. Each step provides
1680
1680
  * instructions for how to move to the next step in the leg such as the step's start
@@ -1890,7 +1890,7 @@ export interface CalculateRouteMatrixRequest {
1890
1890
  * </p>
1891
1891
  * @public
1892
1892
  */
1893
- TravelMode?: TravelMode;
1893
+ TravelMode?: TravelMode | undefined;
1894
1894
  /**
1895
1895
  * <p>Specifies the desired time of departure. Uses the given time to calculate the route
1896
1896
  * matrix. You can't set both <code>DepartureTime</code> and <code>DepartNow</code>. If
@@ -1910,7 +1910,7 @@ export interface CalculateRouteMatrixRequest {
1910
1910
  * </ul>
1911
1911
  * @public
1912
1912
  */
1913
- DepartureTime?: Date;
1913
+ DepartureTime?: Date | undefined;
1914
1914
  /**
1915
1915
  * <p>Sets the time of departure as the current time. Uses the current time to calculate the
1916
1916
  * route matrix. You can't set both <code>DepartureTime</code> and <code>DepartNow</code>.
@@ -1922,21 +1922,21 @@ export interface CalculateRouteMatrixRequest {
1922
1922
  * </p>
1923
1923
  * @public
1924
1924
  */
1925
- DepartNow?: boolean;
1925
+ DepartNow?: boolean | undefined;
1926
1926
  /**
1927
1927
  * <p>Set the unit system to specify the distance.</p>
1928
1928
  * <p>Default Value: <code>Kilometers</code>
1929
1929
  * </p>
1930
1930
  * @public
1931
1931
  */
1932
- DistanceUnit?: DistanceUnit;
1932
+ DistanceUnit?: DistanceUnit | undefined;
1933
1933
  /**
1934
1934
  * <p>Specifies route preferences when traveling by <code>Car</code>, such as avoiding
1935
1935
  * routes that use ferries or tolls.</p>
1936
1936
  * <p>Requirements: <code>TravelMode</code> must be specified as <code>Car</code>.</p>
1937
1937
  * @public
1938
1938
  */
1939
- CarModeOptions?: CalculateRouteCarModeOptions;
1939
+ CarModeOptions?: CalculateRouteCarModeOptions | undefined;
1940
1940
  /**
1941
1941
  * <p>Specifies route preferences when traveling by <code>Truck</code>, such as avoiding
1942
1942
  * routes that use ferries or tolls, and truck specifications to consider when choosing an
@@ -1944,13 +1944,13 @@ export interface CalculateRouteMatrixRequest {
1944
1944
  * <p>Requirements: <code>TravelMode</code> must be specified as <code>Truck</code>.</p>
1945
1945
  * @public
1946
1946
  */
1947
- TruckModeOptions?: CalculateRouteTruckModeOptions;
1947
+ TruckModeOptions?: CalculateRouteTruckModeOptions | undefined;
1948
1948
  /**
1949
1949
  * <p>The optional <a href="https://docs.aws.amazon.com/location/latest/developerguide/using-apikeys.html">API key</a> to authorize
1950
1950
  * the request.</p>
1951
1951
  * @public
1952
1952
  */
1953
- Key?: string;
1953
+ Key?: string | undefined;
1954
1954
  }
1955
1955
  /**
1956
1956
  * @public
@@ -2016,7 +2016,7 @@ export interface RouteMatrixEntryError {
2016
2016
  * <p>A message about the error that occurred for the route calculation.</p>
2017
2017
  * @public
2018
2018
  */
2019
- Message?: string;
2019
+ Message?: string | undefined;
2020
2020
  }
2021
2021
  /**
2022
2022
  * <p>The result for the calculated route of one <code>DeparturePosition</code>
@@ -2028,18 +2028,18 @@ export interface RouteMatrixEntry {
2028
2028
  * <p>The total distance of travel for the route.</p>
2029
2029
  * @public
2030
2030
  */
2031
- Distance?: number;
2031
+ Distance?: number | undefined;
2032
2032
  /**
2033
2033
  * <p>The expected duration of travel for the route.</p>
2034
2034
  * @public
2035
2035
  */
2036
- DurationSeconds?: number;
2036
+ DurationSeconds?: number | undefined;
2037
2037
  /**
2038
2038
  * <p>An error corresponding to the calculation of a route between the
2039
2039
  * <code>DeparturePosition</code> and <code>DestinationPosition</code>.</p>
2040
2040
  * @public
2041
2041
  */
2042
- Error?: RouteMatrixEntryError;
2042
+ Error?: RouteMatrixEntryError | undefined;
2043
2043
  }
2044
2044
  /**
2045
2045
  * <p>A summary of the calculated route matrix.</p>
@@ -2111,13 +2111,13 @@ export interface CalculateRouteMatrixResponse {
2111
2111
  * <code>RouteMatrix</code>.</p>
2112
2112
  * @public
2113
2113
  */
2114
- SnappedDeparturePositions?: number[][];
2114
+ SnappedDeparturePositions?: number[][] | undefined;
2115
2115
  /**
2116
2116
  * <p>The list of destination positions for the route matrix used for calculation of the
2117
2117
  * <code>RouteMatrix</code>.</p>
2118
2118
  * @public
2119
2119
  */
2120
- SnappedDestinationPositions?: number[][];
2120
+ SnappedDestinationPositions?: number[][] | undefined;
2121
2121
  /**
2122
2122
  * <p>Contains information about the route matrix, <code>DataSource</code>,
2123
2123
  * <code>DistanceUnit</code>, <code>RouteCount</code> and
@@ -2166,12 +2166,12 @@ export interface LteNetworkMeasurements {
2166
2166
  * <p>Signal power of the reference signal received, measured in dBm (decibel-milliwatts).</p>
2167
2167
  * @public
2168
2168
  */
2169
- Rsrp?: number;
2169
+ Rsrp?: number | undefined;
2170
2170
  /**
2171
2171
  * <p>Signal quality of the reference Signal received, measured in decibels (dB).</p>
2172
2172
  * @public
2173
2173
  */
2174
- Rsrq?: number;
2174
+ Rsrq?: number | undefined;
2175
2175
  }
2176
2176
  /**
2177
2177
  * <p>Details about the Long-Term Evolution (LTE) network.</p>
@@ -2197,37 +2197,37 @@ export interface LteCellDetails {
2197
2197
  * <p>The LTE local identification information (local ID).</p>
2198
2198
  * @public
2199
2199
  */
2200
- LocalId?: LteLocalId;
2200
+ LocalId?: LteLocalId | undefined;
2201
2201
  /**
2202
2202
  * <p>The network measurements.</p>
2203
2203
  * @public
2204
2204
  */
2205
- NetworkMeasurements?: LteNetworkMeasurements[];
2205
+ NetworkMeasurements?: LteNetworkMeasurements[] | undefined;
2206
2206
  /**
2207
2207
  * <p>Timing Advance (TA).</p>
2208
2208
  * @public
2209
2209
  */
2210
- TimingAdvance?: number;
2210
+ TimingAdvance?: number | undefined;
2211
2211
  /**
2212
2212
  * <p>Indicates whether the LTE object is capable of supporting NR (new radio).</p>
2213
2213
  * @public
2214
2214
  */
2215
- NrCapable?: boolean;
2215
+ NrCapable?: boolean | undefined;
2216
2216
  /**
2217
2217
  * <p>Signal power of the reference signal received, measured in decibel-milliwatts (dBm).</p>
2218
2218
  * @public
2219
2219
  */
2220
- Rsrp?: number;
2220
+ Rsrp?: number | undefined;
2221
2221
  /**
2222
2222
  * <p>Signal quality of the reference Signal received, measured in decibels (dB).</p>
2223
2223
  * @public
2224
2224
  */
2225
- Rsrq?: number;
2225
+ Rsrq?: number | undefined;
2226
2226
  /**
2227
2227
  * <p>LTE Tracking Area Code (TAC).</p>
2228
2228
  * @public
2229
2229
  */
2230
- Tac?: number;
2230
+ Tac?: number | undefined;
2231
2231
  }
2232
2232
  /**
2233
2233
  * <p>The cellular network communication infrastructure that the device uses.</p>
@@ -2273,19 +2273,19 @@ export interface CreateGeofenceCollectionRequest {
2273
2273
  * <code>RequestBasedUsage</code>.</p>
2274
2274
  * @public
2275
2275
  */
2276
- PricingPlan?: PricingPlan;
2276
+ PricingPlan?: PricingPlan | undefined;
2277
2277
  /**
2278
2278
  * @deprecated
2279
2279
  *
2280
2280
  * <p>This parameter is no longer used.</p>
2281
2281
  * @public
2282
2282
  */
2283
- PricingPlanDataSource?: string;
2283
+ PricingPlanDataSource?: string | undefined;
2284
2284
  /**
2285
2285
  * <p>An optional description for the geofence collection.</p>
2286
2286
  * @public
2287
2287
  */
2288
- Description?: string;
2288
+ Description?: string | undefined;
2289
2289
  /**
2290
2290
  * <p>Applies one or more tags to the geofence collection. A tag is a key-value pair helps
2291
2291
  * manage, identify, search, and filter your resources by labelling them.</p>
@@ -2315,7 +2315,7 @@ export interface CreateGeofenceCollectionRequest {
2315
2315
  * </ul>
2316
2316
  * @public
2317
2317
  */
2318
- Tags?: Record<string, string>;
2318
+ Tags?: Record<string, string> | undefined;
2319
2319
  /**
2320
2320
  * <p>A key identifier for an
2321
2321
  * <a href="https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html">Amazon Web Services
@@ -2323,7 +2323,7 @@ export interface CreateGeofenceCollectionRequest {
2323
2323
  * </p>
2324
2324
  * @public
2325
2325
  */
2326
- KmsKeyId?: string;
2326
+ KmsKeyId?: string | undefined;
2327
2327
  }
2328
2328
  /**
2329
2329
  * @public
@@ -2517,7 +2517,7 @@ export interface MapConfiguration {
2517
2517
  * </note>
2518
2518
  * @public
2519
2519
  */
2520
- PoliticalView?: string;
2520
+ PoliticalView?: string | undefined;
2521
2521
  /**
2522
2522
  * <p>Specifies the custom layers for the style. Leave unset to not enable any custom layer, or, for styles that support custom layers, you can enable layer(s), such as POI layer for the VectorEsriNavigation style.
2523
2523
  * Default is <code>unset</code>.</p>
@@ -2526,7 +2526,7 @@ export interface MapConfiguration {
2526
2526
  * </note>
2527
2527
  * @public
2528
2528
  */
2529
- CustomLayers?: string[];
2529
+ CustomLayers?: string[] | undefined;
2530
2530
  }
2531
2531
  /**
2532
2532
  * @public
@@ -2563,12 +2563,12 @@ export interface CreateMapRequest {
2563
2563
  * <code>RequestBasedUsage</code>.</p>
2564
2564
  * @public
2565
2565
  */
2566
- PricingPlan?: PricingPlan;
2566
+ PricingPlan?: PricingPlan | undefined;
2567
2567
  /**
2568
2568
  * <p>An optional description for the map resource.</p>
2569
2569
  * @public
2570
2570
  */
2571
- Description?: string;
2571
+ Description?: string | undefined;
2572
2572
  /**
2573
2573
  * <p>Applies one or more tags to the map resource. A tag is a key-value pair helps manage,
2574
2574
  * identify, search, and filter your resources by labelling them.</p>
@@ -2598,7 +2598,7 @@ export interface CreateMapRequest {
2598
2598
  * </ul>
2599
2599
  * @public
2600
2600
  */
2601
- Tags?: Record<string, string>;
2601
+ Tags?: Record<string, string> | undefined;
2602
2602
  }
2603
2603
  /**
2604
2604
  * @public
@@ -2673,7 +2673,7 @@ export interface DataSourceConfiguration {
2673
2673
  * </p>
2674
2674
  * @public
2675
2675
  */
2676
- IntendedUse?: IntendedUse;
2676
+ IntendedUse?: IntendedUse | undefined;
2677
2677
  }
2678
2678
  /**
2679
2679
  * @public
@@ -2738,17 +2738,17 @@ export interface CreatePlaceIndexRequest {
2738
2738
  * <code>RequestBasedUsage</code>.</p>
2739
2739
  * @public
2740
2740
  */
2741
- PricingPlan?: PricingPlan;
2741
+ PricingPlan?: PricingPlan | undefined;
2742
2742
  /**
2743
2743
  * <p>The optional description for the place index resource.</p>
2744
2744
  * @public
2745
2745
  */
2746
- Description?: string;
2746
+ Description?: string | undefined;
2747
2747
  /**
2748
2748
  * <p>Specifies the data storage option requesting Places.</p>
2749
2749
  * @public
2750
2750
  */
2751
- DataSourceConfiguration?: DataSourceConfiguration;
2751
+ DataSourceConfiguration?: DataSourceConfiguration | undefined;
2752
2752
  /**
2753
2753
  * <p>Applies one or more tags to the place index resource. A tag is a key-value pair that
2754
2754
  * helps you manage, identify, search, and filter your resources.</p>
@@ -2778,7 +2778,7 @@ export interface CreatePlaceIndexRequest {
2778
2778
  * </ul>
2779
2779
  * @public
2780
2780
  */
2781
- Tags?: Record<string, string>;
2781
+ Tags?: Record<string, string> | undefined;
2782
2782
  }
2783
2783
  /**
2784
2784
  * @public
@@ -2870,12 +2870,12 @@ export interface CreateRouteCalculatorRequest {
2870
2870
  * <code>RequestBasedUsage</code>.</p>
2871
2871
  * @public
2872
2872
  */
2873
- PricingPlan?: PricingPlan;
2873
+ PricingPlan?: PricingPlan | undefined;
2874
2874
  /**
2875
2875
  * <p>The optional description for the route calculator resource.</p>
2876
2876
  * @public
2877
2877
  */
2878
- Description?: string;
2878
+ Description?: string | undefined;
2879
2879
  /**
2880
2880
  * <p>Applies one or more tags to the route calculator resource. A tag is a key-value pair
2881
2881
  * helps manage, identify, search, and filter your resources by labelling them.</p>
@@ -2911,7 +2911,7 @@ export interface CreateRouteCalculatorRequest {
2911
2911
  * </ul>
2912
2912
  * @public
2913
2913
  */
2914
- Tags?: Record<string, string>;
2914
+ Tags?: Record<string, string> | undefined;
2915
2915
  }
2916
2916
  /**
2917
2917
  * @public
@@ -2985,26 +2985,26 @@ export interface CreateTrackerRequest {
2985
2985
  * <code>RequestBasedUsage</code>.</p>
2986
2986
  * @public
2987
2987
  */
2988
- PricingPlan?: PricingPlan;
2988
+ PricingPlan?: PricingPlan | undefined;
2989
2989
  /**
2990
2990
  * <p>A key identifier for an
2991
2991
  * <a href="https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html">Amazon Web Services
2992
2992
  * KMS customer managed key</a>. Enter a key ID, key ARN, alias name, or alias ARN.</p>
2993
2993
  * @public
2994
2994
  */
2995
- KmsKeyId?: string;
2995
+ KmsKeyId?: string | undefined;
2996
2996
  /**
2997
2997
  * @deprecated
2998
2998
  *
2999
2999
  * <p>This parameter is no longer used.</p>
3000
3000
  * @public
3001
3001
  */
3002
- PricingPlanDataSource?: string;
3002
+ PricingPlanDataSource?: string | undefined;
3003
3003
  /**
3004
3004
  * <p>An optional description for the tracker resource.</p>
3005
3005
  * @public
3006
3006
  */
3007
- Description?: string;
3007
+ Description?: string | undefined;
3008
3008
  /**
3009
3009
  * <p>Applies one or more tags to the tracker resource. A tag is a key-value pair helps
3010
3010
  * manage, identify, search, and filter your resources by labelling them.</p>
@@ -3034,7 +3034,7 @@ export interface CreateTrackerRequest {
3034
3034
  * </ul>
3035
3035
  * @public
3036
3036
  */
3037
- Tags?: Record<string, string>;
3037
+ Tags?: Record<string, string> | undefined;
3038
3038
  /**
3039
3039
  * <p>Specifies the position filtering for the tracker resource.</p>
3040
3040
  * <p>Valid values:</p>
@@ -3069,7 +3069,7 @@ export interface CreateTrackerRequest {
3069
3069
  * <p>This field is optional. If not specified, the default value is <code>TimeBased</code>.</p>
3070
3070
  * @public
3071
3071
  */
3072
- PositionFiltering?: PositionFiltering;
3072
+ PositionFiltering?: PositionFiltering | undefined;
3073
3073
  /**
3074
3074
  * <p>Whether to enable position <code>UPDATE</code> events from this tracker to be sent to
3075
3075
  * EventBridge.</p>
@@ -3080,7 +3080,7 @@ export interface CreateTrackerRequest {
3080
3080
  * </note>
3081
3081
  * @public
3082
3082
  */
3083
- EventBridgeEnabled?: boolean;
3083
+ EventBridgeEnabled?: boolean | undefined;
3084
3084
  /**
3085
3085
  * <p>Enables <code>GeospatialQueries</code> for a tracker that uses a <a href="https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html">Amazon Web Services
3086
3086
  * KMS customer managed key</a>.</p>
@@ -3093,7 +3093,7 @@ export interface CreateTrackerRequest {
3093
3093
  * </note>
3094
3094
  * @public
3095
3095
  */
3096
- KmsKeyEnableGeospatialQueries?: boolean;
3096
+ KmsKeyEnableGeospatialQueries?: boolean | undefined;
3097
3097
  }
3098
3098
  /**
3099
3099
  * @public
@@ -3242,26 +3242,26 @@ export interface DescribeGeofenceCollectionResponse {
3242
3242
  * <p>No longer used. Always returns <code>RequestBasedUsage</code>.</p>
3243
3243
  * @public
3244
3244
  */
3245
- PricingPlan?: PricingPlan;
3245
+ PricingPlan?: PricingPlan | undefined;
3246
3246
  /**
3247
3247
  * @deprecated
3248
3248
  *
3249
3249
  * <p>No longer used. Always returns an empty string.</p>
3250
3250
  * @public
3251
3251
  */
3252
- PricingPlanDataSource?: string;
3252
+ PricingPlanDataSource?: string | undefined;
3253
3253
  /**
3254
3254
  * <p>A key identifier for an
3255
3255
  * <a href="https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html">Amazon Web Services
3256
3256
  * KMS customer managed key</a> assigned to the Amazon Location resource</p>
3257
3257
  * @public
3258
3258
  */
3259
- KmsKeyId?: string;
3259
+ KmsKeyId?: string | undefined;
3260
3260
  /**
3261
3261
  * <p>Displays the key, value pairs of tags associated with this resource.</p>
3262
3262
  * @public
3263
3263
  */
3264
- Tags?: Record<string, string>;
3264
+ Tags?: Record<string, string> | undefined;
3265
3265
  /**
3266
3266
  * <p>The timestamp for when the geofence resource was created in <a href="https://www.iso.org/iso-8601-date-and-time-format.html">ISO 8601</a>
3267
3267
  * format: <code>YYYY-MM-DDThh:mm:ss.sssZ</code>
@@ -3280,7 +3280,7 @@ export interface DescribeGeofenceCollectionResponse {
3280
3280
  * <p>The number of geofences in the geofence collection.</p>
3281
3281
  * @public
3282
3282
  */
3283
- GeofenceCount?: number;
3283
+ GeofenceCount?: number | undefined;
3284
3284
  }
3285
3285
  /**
3286
3286
  * @public
@@ -3320,7 +3320,7 @@ export interface DescribeMapResponse {
3320
3320
  * <p>No longer used. Always returns <code>RequestBasedUsage</code>.</p>
3321
3321
  * @public
3322
3322
  */
3323
- PricingPlan?: PricingPlan;
3323
+ PricingPlan?: PricingPlan | undefined;
3324
3324
  /**
3325
3325
  * <p>Specifies the data provider for the associated map tiles.</p>
3326
3326
  * @public
@@ -3340,7 +3340,7 @@ export interface DescribeMapResponse {
3340
3340
  * <p>Tags associated with the map resource.</p>
3341
3341
  * @public
3342
3342
  */
3343
- Tags?: Record<string, string>;
3343
+ Tags?: Record<string, string> | undefined;
3344
3344
  /**
3345
3345
  * <p>The timestamp for when the map resource was created in <a href="https://www.iso.org/iso-8601-date-and-time-format.html">ISO 8601</a>
3346
3346
  * format: <code>YYYY-MM-DDThh:mm:ss.sssZ</code>.</p>
@@ -3392,7 +3392,7 @@ export interface DescribePlaceIndexResponse {
3392
3392
  * <p>No longer used. Always returns <code>RequestBasedUsage</code>.</p>
3393
3393
  * @public
3394
3394
  */
3395
- PricingPlan?: PricingPlan;
3395
+ PricingPlan?: PricingPlan | undefined;
3396
3396
  /**
3397
3397
  * <p>The optional description for the place index resource.</p>
3398
3398
  * @public
@@ -3442,7 +3442,7 @@ export interface DescribePlaceIndexResponse {
3442
3442
  * <p>Tags associated with place index resource.</p>
3443
3443
  * @public
3444
3444
  */
3445
- Tags?: Record<string, string>;
3445
+ Tags?: Record<string, string> | undefined;
3446
3446
  }
3447
3447
  /**
3448
3448
  * @public
@@ -3482,7 +3482,7 @@ export interface DescribeRouteCalculatorResponse {
3482
3482
  * <p>Always returns <code>RequestBasedUsage</code>.</p>
3483
3483
  * @public
3484
3484
  */
3485
- PricingPlan?: PricingPlan;
3485
+ PricingPlan?: PricingPlan | undefined;
3486
3486
  /**
3487
3487
  * <p>The optional description of the route calculator resource.</p>
3488
3488
  * @public
@@ -3540,7 +3540,7 @@ export interface DescribeRouteCalculatorResponse {
3540
3540
  * <p>Tags associated with route calculator resource.</p>
3541
3541
  * @public
3542
3542
  */
3543
- Tags?: Record<string, string>;
3543
+ Tags?: Record<string, string> | undefined;
3544
3544
  }
3545
3545
  /**
3546
3546
  * @public
@@ -3585,19 +3585,19 @@ export interface DescribeTrackerResponse {
3585
3585
  * <p>Always returns <code>RequestBasedUsage</code>.</p>
3586
3586
  * @public
3587
3587
  */
3588
- PricingPlan?: PricingPlan;
3588
+ PricingPlan?: PricingPlan | undefined;
3589
3589
  /**
3590
3590
  * @deprecated
3591
3591
  *
3592
3592
  * <p>No longer used. Always returns an empty string.</p>
3593
3593
  * @public
3594
3594
  */
3595
- PricingPlanDataSource?: string;
3595
+ PricingPlanDataSource?: string | undefined;
3596
3596
  /**
3597
3597
  * <p>The tags associated with the tracker resource.</p>
3598
3598
  * @public
3599
3599
  */
3600
- Tags?: Record<string, string>;
3600
+ Tags?: Record<string, string> | undefined;
3601
3601
  /**
3602
3602
  * <p>The timestamp for when the tracker resource was created in <a href="https://www.iso.org/iso-8601-date-and-time-format.html"> ISO 8601</a>
3603
3603
  * format: <code>YYYY-MM-DDThh:mm:ss.sssZ</code>. </p>
@@ -3615,18 +3615,18 @@ export interface DescribeTrackerResponse {
3615
3615
  * KMS customer managed key</a> assigned to the Amazon Location resource.</p>
3616
3616
  * @public
3617
3617
  */
3618
- KmsKeyId?: string;
3618
+ KmsKeyId?: string | undefined;
3619
3619
  /**
3620
3620
  * <p>The position filtering method of the tracker resource.</p>
3621
3621
  * @public
3622
3622
  */
3623
- PositionFiltering?: PositionFiltering;
3623
+ PositionFiltering?: PositionFiltering | undefined;
3624
3624
  /**
3625
3625
  * <p>Whether <code>UPDATE</code> events from this tracker in EventBridge are
3626
3626
  * enabled. If set to <code>true</code> these events will be sent to EventBridge.</p>
3627
3627
  * @public
3628
3628
  */
3629
- EventBridgeEnabled?: boolean;
3629
+ EventBridgeEnabled?: boolean | undefined;
3630
3630
  /**
3631
3631
  * <p>Enables <code>GeospatialQueries</code> for a tracker that uses a <a href="https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html">Amazon Web Services
3632
3632
  * KMS customer managed key</a>.</p>
@@ -3639,7 +3639,7 @@ export interface DescribeTrackerResponse {
3639
3639
  * </note>
3640
3640
  * @public
3641
3641
  */
3642
- KmsKeyEnableGeospatialQueries?: boolean;
3642
+ KmsKeyEnableGeospatialQueries?: boolean | undefined;
3643
3643
  }
3644
3644
  /**
3645
3645
  * <p>Wi-Fi access point.</p>
@@ -3682,22 +3682,22 @@ export interface DeviceState {
3682
3682
  * <p>Defines the level of certainty of the position.</p>
3683
3683
  * @public
3684
3684
  */
3685
- Accuracy?: PositionalAccuracy;
3685
+ Accuracy?: PositionalAccuracy | undefined;
3686
3686
  /**
3687
3687
  * <p>The device's Ipv4 address.</p>
3688
3688
  * @public
3689
3689
  */
3690
- Ipv4Address?: string;
3690
+ Ipv4Address?: string | undefined;
3691
3691
  /**
3692
3692
  * <p>The Wi-Fi access points the device is using.</p>
3693
3693
  * @public
3694
3694
  */
3695
- WiFiAccessPoints?: WiFiAccessPoint[];
3695
+ WiFiAccessPoints?: WiFiAccessPoint[] | undefined;
3696
3696
  /**
3697
3697
  * <p>The cellular network infrastructure that the device is connected to.</p>
3698
3698
  * @public
3699
3699
  */
3700
- CellSignals?: CellSignals;
3700
+ CellSignals?: CellSignals | undefined;
3701
3701
  }
3702
3702
  /**
3703
3703
  * @public
@@ -3775,12 +3775,12 @@ export interface ForecastedEvent {
3775
3775
  * </p>
3776
3776
  * @public
3777
3777
  */
3778
- ForecastedBreachTime?: Date;
3778
+ ForecastedBreachTime?: Date | undefined;
3779
3779
  /**
3780
3780
  * <p>The geofence properties.</p>
3781
3781
  * @public
3782
3782
  */
3783
- GeofenceProperties?: Record<string, string>;
3783
+ GeofenceProperties?: Record<string, string> | undefined;
3784
3784
  }
3785
3785
  /**
3786
3786
  * <p>The device's position, IP address, and WiFi access points.</p>
@@ -3796,7 +3796,7 @@ export interface ForecastGeofenceEventsDeviceState {
3796
3796
  * <p>The device's speed.</p>
3797
3797
  * @public
3798
3798
  */
3799
- Speed?: number;
3799
+ Speed?: number | undefined;
3800
3800
  }
3801
3801
  /**
3802
3802
  * @public
@@ -3820,7 +3820,7 @@ export interface ForecastGeofenceEventsRequest {
3820
3820
  * <p>Specifies the time horizon in minutes for the forecasted events.</p>
3821
3821
  * @public
3822
3822
  */
3823
- TimeHorizonMinutes?: number;
3823
+ TimeHorizonMinutes?: number | undefined;
3824
3824
  /**
3825
3825
  * <p>The distance unit used for the <code>NearestDistance</code> property returned in a forecasted event.
3826
3826
  * The measurement system must match for <code>DistanceUnit</code> and <code>SpeedUnit</code>; if <code>Kilometers</code>
@@ -3830,14 +3830,14 @@ export interface ForecastGeofenceEventsRequest {
3830
3830
  * </p>
3831
3831
  * @public
3832
3832
  */
3833
- DistanceUnit?: DistanceUnit;
3833
+ DistanceUnit?: DistanceUnit | undefined;
3834
3834
  /**
3835
3835
  * <p>The speed unit for the device captured by the device state. The measurement system must match for <code>DistanceUnit</code> and <code>SpeedUnit</code>; if <code>Kilometers</code>
3836
3836
  * is specified for <code>DistanceUnit</code>, then <code>SpeedUnit</code> must be <code>KilometersPerHour</code>.</p>
3837
3837
  * <p>Default Value: <code>KilometersPerHour</code>.</p>
3838
3838
  * @public
3839
3839
  */
3840
- SpeedUnit?: SpeedUnit;
3840
+ SpeedUnit?: SpeedUnit | undefined;
3841
3841
  /**
3842
3842
  * <p>The pagination token specifying which page of results to return in the response. If no
3843
3843
  * token is provided, the default page is the first page.</p>
@@ -3845,14 +3845,14 @@ export interface ForecastGeofenceEventsRequest {
3845
3845
  * </p>
3846
3846
  * @public
3847
3847
  */
3848
- NextToken?: string;
3848
+ NextToken?: string | undefined;
3849
3849
  /**
3850
3850
  * <p>An optional limit for the number of resources returned in a single call.</p>
3851
3851
  * <p>Default value: <code>20</code>
3852
3852
  * </p>
3853
3853
  * @public
3854
3854
  */
3855
- MaxResults?: number;
3855
+ MaxResults?: number | undefined;
3856
3856
  }
3857
3857
  /**
3858
3858
  * @public
@@ -3868,7 +3868,7 @@ export interface ForecastGeofenceEventsResponse {
3868
3868
  * token is provided, the default page is the first page. </p>
3869
3869
  * @public
3870
3870
  */
3871
- NextToken?: string;
3871
+ NextToken?: string | undefined;
3872
3872
  /**
3873
3873
  * <p>The distance unit for the forecasted events.</p>
3874
3874
  * @public
@@ -3912,7 +3912,7 @@ export interface ListTagsForResourceResponse {
3912
3912
  * </ul>
3913
3913
  * @public
3914
3914
  */
3915
- Tags?: Record<string, string>;
3915
+ Tags?: Record<string, string> | undefined;
3916
3916
  }
3917
3917
  /**
3918
3918
  * @public
@@ -4075,7 +4075,7 @@ export interface GetGeofenceResponse {
4075
4075
  * </p>
4076
4076
  * @public
4077
4077
  */
4078
- GeofenceProperties?: Record<string, string>;
4078
+ GeofenceProperties?: Record<string, string> | undefined;
4079
4079
  }
4080
4080
  /**
4081
4081
  * @public
@@ -4087,7 +4087,7 @@ export interface ListGeofenceCollectionsRequest {
4087
4087
  * </p>
4088
4088
  * @public
4089
4089
  */
4090
- MaxResults?: number;
4090
+ MaxResults?: number | undefined;
4091
4091
  /**
4092
4092
  * <p>The pagination token specifying which page of results to return in the response. If no
4093
4093
  * token is provided, the default page is the first page. </p>
@@ -4095,7 +4095,7 @@ export interface ListGeofenceCollectionsRequest {
4095
4095
  * </p>
4096
4096
  * @public
4097
4097
  */
4098
- NextToken?: string;
4098
+ NextToken?: string | undefined;
4099
4099
  }
4100
4100
  /**
4101
4101
  * <p>Contains the geofence collection details.</p>
@@ -4121,14 +4121,14 @@ export interface ListGeofenceCollectionsResponseEntry {
4121
4121
  * <p>No longer used. Always returns <code>RequestBasedUsage</code>.</p>
4122
4122
  * @public
4123
4123
  */
4124
- PricingPlan?: PricingPlan;
4124
+ PricingPlan?: PricingPlan | undefined;
4125
4125
  /**
4126
4126
  * @deprecated
4127
4127
  *
4128
4128
  * <p>No longer used. Always returns an empty string.</p>
4129
4129
  * @public
4130
4130
  */
4131
- PricingPlanDataSource?: string;
4131
+ PricingPlanDataSource?: string | undefined;
4132
4132
  /**
4133
4133
  * <p>The timestamp for when the geofence collection was created in <a href="https://www.iso.org/iso-8601-date-and-time-format.html">ISO 8601</a>
4134
4134
  * format: <code>YYYY-MM-DDThh:mm:ss.sssZ</code>
@@ -4158,7 +4158,7 @@ export interface ListGeofenceCollectionsResponse {
4158
4158
  * token in a following request to fetch the next set of results. </p>
4159
4159
  * @public
4160
4160
  */
4161
- NextToken?: string;
4161
+ NextToken?: string | undefined;
4162
4162
  }
4163
4163
  /**
4164
4164
  * @public
@@ -4176,14 +4176,14 @@ export interface ListGeofencesRequest {
4176
4176
  * </p>
4177
4177
  * @public
4178
4178
  */
4179
- NextToken?: string;
4179
+ NextToken?: string | undefined;
4180
4180
  /**
4181
4181
  * <p>An optional limit for the number of geofences returned in a single call. </p>
4182
4182
  * <p>Default value: <code>100</code>
4183
4183
  * </p>
4184
4184
  * @public
4185
4185
  */
4186
- MaxResults?: number;
4186
+ MaxResults?: number | undefined;
4187
4187
  }
4188
4188
  /**
4189
4189
  * <p>Contains a list of geofences stored in a given geofence collection.</p>
@@ -4255,7 +4255,7 @@ export interface ListGeofenceResponseEntry {
4255
4255
  * </p>
4256
4256
  * @public
4257
4257
  */
4258
- GeofenceProperties?: Record<string, string>;
4258
+ GeofenceProperties?: Record<string, string> | undefined;
4259
4259
  }
4260
4260
  /**
4261
4261
  * @public
@@ -4271,7 +4271,7 @@ export interface ListGeofencesResponse {
4271
4271
  * token in a following request to fetch the next set of results. </p>
4272
4272
  * @public
4273
4273
  */
4274
- NextToken?: string;
4274
+ NextToken?: string | undefined;
4275
4275
  }
4276
4276
  /**
4277
4277
  * @public
@@ -4305,7 +4305,7 @@ export interface PutGeofenceRequest {
4305
4305
  * </p>
4306
4306
  * @public
4307
4307
  */
4308
- GeofenceProperties?: Record<string, string>;
4308
+ GeofenceProperties?: Record<string, string> | undefined;
4309
4309
  }
4310
4310
  /**
4311
4311
  * @public
@@ -4347,19 +4347,19 @@ export interface UpdateGeofenceCollectionRequest {
4347
4347
  * <code>RequestBasedUsage</code>.</p>
4348
4348
  * @public
4349
4349
  */
4350
- PricingPlan?: PricingPlan;
4350
+ PricingPlan?: PricingPlan | undefined;
4351
4351
  /**
4352
4352
  * @deprecated
4353
4353
  *
4354
4354
  * <p>This parameter is no longer used.</p>
4355
4355
  * @public
4356
4356
  */
4357
- PricingPlanDataSource?: string;
4357
+ PricingPlanDataSource?: string | undefined;
4358
4358
  /**
4359
4359
  * <p>Updates the description for the geofence collection.</p>
4360
4360
  * @public
4361
4361
  */
4362
- Description?: string;
4362
+ Description?: string | undefined;
4363
4363
  }
4364
4364
  /**
4365
4365
  * @public
@@ -4414,7 +4414,7 @@ export interface GetDevicePositionResponse {
4414
4414
  * <p>The device whose position you retrieved.</p>
4415
4415
  * @public
4416
4416
  */
4417
- DeviceId?: string;
4417
+ DeviceId?: string | undefined;
4418
4418
  /**
4419
4419
  * <p>The timestamp at which the device's position was determined. Uses <a href="https://www.iso.org/iso-8601-date-and-time-format.html"> ISO 8601 </a>
4420
4420
  * format: <code>YYYY-MM-DDThh:mm:ss.sssZ</code>. </p>
@@ -4436,12 +4436,12 @@ export interface GetDevicePositionResponse {
4436
4436
  * <p>The accuracy of the device position.</p>
4437
4437
  * @public
4438
4438
  */
4439
- Accuracy?: PositionalAccuracy;
4439
+ Accuracy?: PositionalAccuracy | undefined;
4440
4440
  /**
4441
4441
  * <p>The properties associated with the position.</p>
4442
4442
  * @public
4443
4443
  */
4444
- PositionProperties?: Record<string, string>;
4444
+ PositionProperties?: Record<string, string> | undefined;
4445
4445
  }
4446
4446
  /**
4447
4447
  * @public
@@ -4464,7 +4464,7 @@ export interface GetDevicePositionHistoryRequest {
4464
4464
  * </p>
4465
4465
  * @public
4466
4466
  */
4467
- NextToken?: string;
4467
+ NextToken?: string | undefined;
4468
4468
  /**
4469
4469
  * <p>Specify the start time for the position history in <a href="https://www.iso.org/iso-8601-date-and-time-format.html"> ISO 8601</a>
4470
4470
  * format: <code>YYYY-MM-DDThh:mm:ss.sssZ</code>. By default, the value will be 24 hours
@@ -4478,7 +4478,7 @@ export interface GetDevicePositionHistoryRequest {
4478
4478
  * </ul>
4479
4479
  * @public
4480
4480
  */
4481
- StartTimeInclusive?: Date;
4481
+ StartTimeInclusive?: Date | undefined;
4482
4482
  /**
4483
4483
  * <p>Specify the end time for the position history in <a href="https://www.iso.org/iso-8601-date-and-time-format.html"> ISO 8601</a>
4484
4484
  * format: <code>YYYY-MM-DDThh:mm:ss.sssZ</code>. By default, the value will be the time
@@ -4492,14 +4492,14 @@ export interface GetDevicePositionHistoryRequest {
4492
4492
  * </ul>
4493
4493
  * @public
4494
4494
  */
4495
- EndTimeExclusive?: Date;
4495
+ EndTimeExclusive?: Date | undefined;
4496
4496
  /**
4497
4497
  * <p>An optional limit for the number of device positions returned in a single call.</p>
4498
4498
  * <p>Default value: <code>100</code>
4499
4499
  * </p>
4500
4500
  * @public
4501
4501
  */
4502
- MaxResults?: number;
4502
+ MaxResults?: number | undefined;
4503
4503
  }
4504
4504
  /**
4505
4505
  * @public
@@ -4515,7 +4515,7 @@ export interface GetDevicePositionHistoryResponse {
4515
4515
  * token in a following request to fetch the next set of results.</p>
4516
4516
  * @public
4517
4517
  */
4518
- NextToken?: string;
4518
+ NextToken?: string | undefined;
4519
4519
  }
4520
4520
  /**
4521
4521
  * @public
@@ -4628,7 +4628,7 @@ export interface GetMapGlyphsRequest {
4628
4628
  * the request.</p>
4629
4629
  * @public
4630
4630
  */
4631
- Key?: string;
4631
+ Key?: string | undefined;
4632
4632
  }
4633
4633
  /**
4634
4634
  * @public
@@ -4638,17 +4638,17 @@ export interface GetMapGlyphsResponse {
4638
4638
  * <p>The glyph, as binary blob.</p>
4639
4639
  * @public
4640
4640
  */
4641
- Blob?: Uint8Array;
4641
+ Blob?: Uint8Array | undefined;
4642
4642
  /**
4643
4643
  * <p>The map glyph content type. For example, <code>application/octet-stream</code>.</p>
4644
4644
  * @public
4645
4645
  */
4646
- ContentType?: string;
4646
+ ContentType?: string | undefined;
4647
4647
  /**
4648
4648
  * <p>The HTTP Cache-Control directive for the value.</p>
4649
4649
  * @public
4650
4650
  */
4651
- CacheControl?: string;
4651
+ CacheControl?: string | undefined;
4652
4652
  }
4653
4653
  /**
4654
4654
  * @public
@@ -4692,7 +4692,7 @@ export interface GetMapSpritesRequest {
4692
4692
  * the request.</p>
4693
4693
  * @public
4694
4694
  */
4695
- Key?: string;
4695
+ Key?: string | undefined;
4696
4696
  }
4697
4697
  /**
4698
4698
  * @public
@@ -4702,19 +4702,19 @@ export interface GetMapSpritesResponse {
4702
4702
  * <p>Contains the body of the sprite sheet or JSON offset file.</p>
4703
4703
  * @public
4704
4704
  */
4705
- Blob?: Uint8Array;
4705
+ Blob?: Uint8Array | undefined;
4706
4706
  /**
4707
4707
  * <p>The content type of the sprite sheet and offsets. For example, the sprite sheet
4708
4708
  * content type is <code>image/png</code>, and the sprite offset JSON document is
4709
4709
  * <code>application/json</code>. </p>
4710
4710
  * @public
4711
4711
  */
4712
- ContentType?: string;
4712
+ ContentType?: string | undefined;
4713
4713
  /**
4714
4714
  * <p>The HTTP Cache-Control directive for the value.</p>
4715
4715
  * @public
4716
4716
  */
4717
- CacheControl?: string;
4717
+ CacheControl?: string | undefined;
4718
4718
  }
4719
4719
  /**
4720
4720
  * @public
@@ -4730,7 +4730,7 @@ export interface GetMapStyleDescriptorRequest {
4730
4730
  * the request.</p>
4731
4731
  * @public
4732
4732
  */
4733
- Key?: string;
4733
+ Key?: string | undefined;
4734
4734
  }
4735
4735
  /**
4736
4736
  * @public
@@ -4740,18 +4740,18 @@ export interface GetMapStyleDescriptorResponse {
4740
4740
  * <p>Contains the body of the style descriptor.</p>
4741
4741
  * @public
4742
4742
  */
4743
- Blob?: Uint8Array;
4743
+ Blob?: Uint8Array | undefined;
4744
4744
  /**
4745
4745
  * <p>The style descriptor's content type. For example,
4746
4746
  * <code>application/json</code>.</p>
4747
4747
  * @public
4748
4748
  */
4749
- ContentType?: string;
4749
+ ContentType?: string | undefined;
4750
4750
  /**
4751
4751
  * <p>The HTTP Cache-Control directive for the value.</p>
4752
4752
  * @public
4753
4753
  */
4754
- CacheControl?: string;
4754
+ CacheControl?: string | undefined;
4755
4755
  }
4756
4756
  /**
4757
4757
  * @public
@@ -4782,7 +4782,7 @@ export interface GetMapTileRequest {
4782
4782
  * the request.</p>
4783
4783
  * @public
4784
4784
  */
4785
- Key?: string;
4785
+ Key?: string | undefined;
4786
4786
  }
4787
4787
  /**
4788
4788
  * @public
@@ -4792,18 +4792,18 @@ export interface GetMapTileResponse {
4792
4792
  * <p>Contains Mapbox Vector Tile (MVT) data.</p>
4793
4793
  * @public
4794
4794
  */
4795
- Blob?: Uint8Array;
4795
+ Blob?: Uint8Array | undefined;
4796
4796
  /**
4797
4797
  * <p>The map tile's content type. For example,
4798
4798
  * <code>application/vnd.mapbox-vector-tile</code>.</p>
4799
4799
  * @public
4800
4800
  */
4801
- ContentType?: string;
4801
+ ContentType?: string | undefined;
4802
4802
  /**
4803
4803
  * <p>The HTTP Cache-Control directive for the value.</p>
4804
4804
  * @public
4805
4805
  */
4806
- CacheControl?: string;
4806
+ CacheControl?: string | undefined;
4807
4807
  }
4808
4808
  /**
4809
4809
  * @public
@@ -4836,13 +4836,13 @@ export interface GetPlaceRequest {
4836
4836
  * that the provider does support.</p>
4837
4837
  * @public
4838
4838
  */
4839
- Language?: string;
4839
+ Language?: string | undefined;
4840
4840
  /**
4841
4841
  * <p>The optional <a href="https://docs.aws.amazon.com/location/latest/developerguide/using-apikeys.html">API key</a> to authorize
4842
4842
  * the request.</p>
4843
4843
  * @public
4844
4844
  */
4845
- Key?: string;
4845
+ Key?: string | undefined;
4846
4846
  }
4847
4847
  /**
4848
4848
  * <p>Places uses a point geometry to specify a location or a Place.</p>
@@ -4864,7 +4864,7 @@ export interface PlaceGeometry {
4864
4864
  * </ul>
4865
4865
  * @public
4866
4866
  */
4867
- Point?: number[];
4867
+ Point?: number[] | undefined;
4868
4868
  }
4869
4869
  /**
4870
4870
  * <p>Information about a time zone. Includes the name of the time zone and the offset from
@@ -4883,7 +4883,7 @@ export interface TimeZone {
4883
4883
  * <p>The time zone's offset, in seconds, from UTC.</p>
4884
4884
  * @public
4885
4885
  */
4886
- Offset?: number;
4886
+ Offset?: number | undefined;
4887
4887
  }
4888
4888
  /**
4889
4889
  * <p>Contains details about addresses or points of interest that match the search
@@ -4898,7 +4898,7 @@ export interface Place {
4898
4898
  * For example, <code>123 Any Street, Any Town, USA</code>.</p>
4899
4899
  * @public
4900
4900
  */
4901
- Label?: string;
4901
+ Label?: string | undefined;
4902
4902
  /**
4903
4903
  * <p>Places uses a point geometry to specify a location or a Place.</p>
4904
4904
  * @public
@@ -4908,48 +4908,48 @@ export interface Place {
4908
4908
  * <p>The numerical portion of an address, such as a building number. </p>
4909
4909
  * @public
4910
4910
  */
4911
- AddressNumber?: string;
4911
+ AddressNumber?: string | undefined;
4912
4912
  /**
4913
4913
  * <p>The name for a street or a road to identify a location. For example, <code>Main
4914
4914
  * Street</code>.</p>
4915
4915
  * @public
4916
4916
  */
4917
- Street?: string;
4917
+ Street?: string | undefined;
4918
4918
  /**
4919
4919
  * <p>The name of a community district. For example, <code>Downtown</code>.</p>
4920
4920
  * @public
4921
4921
  */
4922
- Neighborhood?: string;
4922
+ Neighborhood?: string | undefined;
4923
4923
  /**
4924
4924
  * <p>A name for a local area, such as a city or town name. For example,
4925
4925
  * <code>Toronto</code>.</p>
4926
4926
  * @public
4927
4927
  */
4928
- Municipality?: string;
4928
+ Municipality?: string | undefined;
4929
4929
  /**
4930
4930
  * <p>A county, or an area that's part of a larger region. For example, <code>Metro
4931
4931
  * Vancouver</code>.</p>
4932
4932
  * @public
4933
4933
  */
4934
- SubRegion?: string;
4934
+ SubRegion?: string | undefined;
4935
4935
  /**
4936
4936
  * <p>A name for an area or geographical division, such as a province or state name. For
4937
4937
  * example, <code>British Columbia</code>.</p>
4938
4938
  * @public
4939
4939
  */
4940
- Region?: string;
4940
+ Region?: string | undefined;
4941
4941
  /**
4942
4942
  * <p>A country/region specified using <a href="https://www.iso.org/iso-3166-country-codes.html">ISO 3166</a> 3-digit
4943
4943
  * country/region code. For example, <code>CAN</code>.</p>
4944
4944
  * @public
4945
4945
  */
4946
- Country?: string;
4946
+ Country?: string | undefined;
4947
4947
  /**
4948
4948
  * <p>A group of numbers and letters in a country-specific format, which accompanies the
4949
4949
  * address for the purpose of identifying a location. </p>
4950
4950
  * @public
4951
4951
  */
4952
- PostalCode?: string;
4952
+ PostalCode?: string | undefined;
4953
4953
  /**
4954
4954
  * <p>
4955
4955
  * <code>True</code> if the result is interpolated from other known places.</p>
@@ -4962,13 +4962,13 @@ export interface Place {
4962
4962
  * </p>
4963
4963
  * @public
4964
4964
  */
4965
- Interpolated?: boolean;
4965
+ Interpolated?: boolean | undefined;
4966
4966
  /**
4967
4967
  * <p>The time zone in which the <code>Place</code> is located. Returned only when using
4968
4968
  * HERE or Grab as the selected partner.</p>
4969
4969
  * @public
4970
4970
  */
4971
- TimeZone?: TimeZone;
4971
+ TimeZone?: TimeZone | undefined;
4972
4972
  /**
4973
4973
  * <p>For addresses with a <code>UnitNumber</code>, the type of unit. For example,
4974
4974
  * <code>Apartment</code>.</p>
@@ -4977,7 +4977,7 @@ export interface Place {
4977
4977
  * </note>
4978
4978
  * @public
4979
4979
  */
4980
- UnitType?: string;
4980
+ UnitType?: string | undefined;
4981
4981
  /**
4982
4982
  * <p>For addresses with multiple units, the unit identifier. Can include numbers and
4983
4983
  * letters, for example <code>3B</code> or <code>Unit 123</code>.</p>
@@ -4987,7 +4987,7 @@ export interface Place {
4987
4987
  * </note>
4988
4988
  * @public
4989
4989
  */
4990
- UnitNumber?: string;
4990
+ UnitNumber?: string | undefined;
4991
4991
  /**
4992
4992
  * <p>The Amazon Location categories that describe this Place.</p>
4993
4993
  * <p>For more information about using categories, including a list of Amazon Location
@@ -4995,13 +4995,13 @@ export interface Place {
4995
4995
  * Guide</i>.</p>
4996
4996
  * @public
4997
4997
  */
4998
- Categories?: string[];
4998
+ Categories?: string[] | undefined;
4999
4999
  /**
5000
5000
  * <p>Categories from the data provider that describe the Place that are not mapped
5001
5001
  * to any Amazon Location categories.</p>
5002
5002
  * @public
5003
5003
  */
5004
- SupplementalCategories?: string[];
5004
+ SupplementalCategories?: string[] | undefined;
5005
5005
  /**
5006
5006
  * <p>An area that's part of a larger municipality. For example, <code>Blissville </code>
5007
5007
  * is a submunicipality in the Queen County in New York.</p>
@@ -5010,7 +5010,7 @@ export interface Place {
5010
5010
  * </note>
5011
5011
  * @public
5012
5012
  */
5013
- SubMunicipality?: string;
5013
+ SubMunicipality?: string | undefined;
5014
5014
  }
5015
5015
  /**
5016
5016
  * @public
@@ -5031,17 +5031,17 @@ export interface InferredState {
5031
5031
  * <p>The device position inferred by the provided position, IP address, cellular signals, and Wi-Fi- access points.</p>
5032
5032
  * @public
5033
5033
  */
5034
- Position?: number[];
5034
+ Position?: number[] | undefined;
5035
5035
  /**
5036
5036
  * <p>The level of certainty of the inferred position.</p>
5037
5037
  * @public
5038
5038
  */
5039
- Accuracy?: PositionalAccuracy;
5039
+ Accuracy?: PositionalAccuracy | undefined;
5040
5040
  /**
5041
5041
  * <p>The distance between the inferred position and the device's self-reported position.</p>
5042
5042
  * @public
5043
5043
  */
5044
- DeviationDistance?: number;
5044
+ DeviationDistance?: number | undefined;
5045
5045
  /**
5046
5046
  * <p>Indicates if a proxy was used.</p>
5047
5047
  * @public
@@ -5057,7 +5057,7 @@ export interface TrackingFilterGeometry {
5057
5057
  * <p>The set of arrays which define the polygon. A polygon can have between 4 and 1000 vertices.</p>
5058
5058
  * @public
5059
5059
  */
5060
- Polygon?: number[][][];
5060
+ Polygon?: number[][][] | undefined;
5061
5061
  }
5062
5062
  /**
5063
5063
  * @public
@@ -5074,7 +5074,7 @@ export interface ListDevicePositionsRequest {
5074
5074
  * </p>
5075
5075
  * @public
5076
5076
  */
5077
- MaxResults?: number;
5077
+ MaxResults?: number | undefined;
5078
5078
  /**
5079
5079
  * <p>The pagination token specifying which page of results to return in the response. If no
5080
5080
  * token is provided, the default page is the first page.</p>
@@ -5082,12 +5082,12 @@ export interface ListDevicePositionsRequest {
5082
5082
  * </p>
5083
5083
  * @public
5084
5084
  */
5085
- NextToken?: string;
5085
+ NextToken?: string | undefined;
5086
5086
  /**
5087
5087
  * <p>The geometry used to filter device positions.</p>
5088
5088
  * @public
5089
5089
  */
5090
- FilterGeometry?: TrackingFilterGeometry;
5090
+ FilterGeometry?: TrackingFilterGeometry | undefined;
5091
5091
  }
5092
5092
  /**
5093
5093
  * <p>Contains the tracker resource details.</p>
@@ -5114,12 +5114,12 @@ export interface ListDevicePositionsResponseEntry {
5114
5114
  * <p>The accuracy of the device position.</p>
5115
5115
  * @public
5116
5116
  */
5117
- Accuracy?: PositionalAccuracy;
5117
+ Accuracy?: PositionalAccuracy | undefined;
5118
5118
  /**
5119
5119
  * <p>The properties associated with the position.</p>
5120
5120
  * @public
5121
5121
  */
5122
- PositionProperties?: Record<string, string>;
5122
+ PositionProperties?: Record<string, string> | undefined;
5123
5123
  }
5124
5124
  /**
5125
5125
  * @public
@@ -5135,7 +5135,7 @@ export interface ListDevicePositionsResponse {
5135
5135
  * token in a following request to fetch the next set of results.</p>
5136
5136
  * @public
5137
5137
  */
5138
- NextToken?: string;
5138
+ NextToken?: string | undefined;
5139
5139
  }
5140
5140
  /**
5141
5141
  * @public
@@ -5147,7 +5147,7 @@ export interface ListMapsRequest {
5147
5147
  * </p>
5148
5148
  * @public
5149
5149
  */
5150
- MaxResults?: number;
5150
+ MaxResults?: number | undefined;
5151
5151
  /**
5152
5152
  * <p>The pagination token specifying which page of results to return in the response. If no
5153
5153
  * token is provided, the default page is the first page.</p>
@@ -5155,7 +5155,7 @@ export interface ListMapsRequest {
5155
5155
  * </p>
5156
5156
  * @public
5157
5157
  */
5158
- NextToken?: string;
5158
+ NextToken?: string | undefined;
5159
5159
  }
5160
5160
  /**
5161
5161
  * <p>Contains details of an existing map resource in your Amazon Web Services account.</p>
@@ -5183,7 +5183,7 @@ export interface ListMapsResponseEntry {
5183
5183
  * <p>No longer used. Always returns <code>RequestBasedUsage</code>.</p>
5184
5184
  * @public
5185
5185
  */
5186
- PricingPlan?: PricingPlan;
5186
+ PricingPlan?: PricingPlan | undefined;
5187
5187
  /**
5188
5188
  * <p>The timestamp for when the map resource was created in <a href="https://www.iso.org/iso-8601-date-and-time-format.html">ISO 8601</a>
5189
5189
  * format: <code>YYYY-MM-DDThh:mm:ss.sssZ</code>.</p>
@@ -5210,7 +5210,7 @@ export interface ListMapsResponse {
5210
5210
  * <p>A pagination token indicating there are additional pages available. You can use the token in a following request to fetch the next set of results. </p>
5211
5211
  * @public
5212
5212
  */
5213
- NextToken?: string;
5213
+ NextToken?: string | undefined;
5214
5214
  }
5215
5215
  /**
5216
5216
  * @public
@@ -5222,7 +5222,7 @@ export interface ListPlaceIndexesRequest {
5222
5222
  * </p>
5223
5223
  * @public
5224
5224
  */
5225
- MaxResults?: number;
5225
+ MaxResults?: number | undefined;
5226
5226
  /**
5227
5227
  * <p>The pagination token specifying which page of results to return in the response. If no
5228
5228
  * token is provided, the default page is the first page.</p>
@@ -5230,7 +5230,7 @@ export interface ListPlaceIndexesRequest {
5230
5230
  * </p>
5231
5231
  * @public
5232
5232
  */
5233
- NextToken?: string;
5233
+ NextToken?: string | undefined;
5234
5234
  }
5235
5235
  /**
5236
5236
  * <p>A place index resource listed in your Amazon Web Services account.</p>
@@ -5276,7 +5276,7 @@ export interface ListPlaceIndexesResponseEntry {
5276
5276
  * <p>No longer used. Always returns <code>RequestBasedUsage</code>.</p>
5277
5277
  * @public
5278
5278
  */
5279
- PricingPlan?: PricingPlan;
5279
+ PricingPlan?: PricingPlan | undefined;
5280
5280
  /**
5281
5281
  * <p>The timestamp for when the place index resource was created in <a href="https://www.iso.org/iso-8601-date-and-time-format.html">ISO 8601</a>
5282
5282
  * format: <code>YYYY-MM-DDThh:mm:ss.sssZ</code>. </p>
@@ -5304,7 +5304,7 @@ export interface ListPlaceIndexesResponse {
5304
5304
  * the token in a new request to fetch the next page of results.</p>
5305
5305
  * @public
5306
5306
  */
5307
- NextToken?: string;
5307
+ NextToken?: string | undefined;
5308
5308
  }
5309
5309
  /**
5310
5310
  * @public
@@ -5316,7 +5316,7 @@ export interface ListRouteCalculatorsRequest {
5316
5316
  * </p>
5317
5317
  * @public
5318
5318
  */
5319
- MaxResults?: number;
5319
+ MaxResults?: number | undefined;
5320
5320
  /**
5321
5321
  * <p>The pagination token specifying which page of results to return in the response. If no
5322
5322
  * token is provided, the default page is the first page.</p>
@@ -5324,7 +5324,7 @@ export interface ListRouteCalculatorsRequest {
5324
5324
  * </p>
5325
5325
  * @public
5326
5326
  */
5327
- NextToken?: string;
5327
+ NextToken?: string | undefined;
5328
5328
  }
5329
5329
  /**
5330
5330
  * <p>A route calculator resource listed in your Amazon Web Services account.</p>
@@ -5371,7 +5371,7 @@ export interface ListRouteCalculatorsResponseEntry {
5371
5371
  * <p>Always returns <code>RequestBasedUsage</code>.</p>
5372
5372
  * @public
5373
5373
  */
5374
- PricingPlan?: PricingPlan;
5374
+ PricingPlan?: PricingPlan | undefined;
5375
5375
  /**
5376
5376
  * <p>The timestamp when the route calculator resource was created in <a href="https://www.iso.org/iso-8601-date-and-time-format.html">ISO 8601</a>
5377
5377
  * format: <code>YYYY-MM-DDThh:mm:ss.sssZ</code>. </p>
@@ -5411,7 +5411,7 @@ export interface ListRouteCalculatorsResponse {
5411
5411
  * token in a subsequent request to fetch the next set of results.</p>
5412
5412
  * @public
5413
5413
  */
5414
- NextToken?: string;
5414
+ NextToken?: string | undefined;
5415
5415
  }
5416
5416
  /**
5417
5417
  * @public
@@ -5428,7 +5428,7 @@ export interface ListTrackerConsumersRequest {
5428
5428
  * </p>
5429
5429
  * @public
5430
5430
  */
5431
- MaxResults?: number;
5431
+ MaxResults?: number | undefined;
5432
5432
  /**
5433
5433
  * <p>The pagination token specifying which page of results to return in the response. If no
5434
5434
  * token is provided, the default page is the first page. </p>
@@ -5436,7 +5436,7 @@ export interface ListTrackerConsumersRequest {
5436
5436
  * </p>
5437
5437
  * @public
5438
5438
  */
5439
- NextToken?: string;
5439
+ NextToken?: string | undefined;
5440
5440
  }
5441
5441
  /**
5442
5442
  * @public
@@ -5452,7 +5452,7 @@ export interface ListTrackerConsumersResponse {
5452
5452
  * token in a following request to fetch the next set of results. </p>
5453
5453
  * @public
5454
5454
  */
5455
- NextToken?: string;
5455
+ NextToken?: string | undefined;
5456
5456
  }
5457
5457
  /**
5458
5458
  * @public
@@ -5464,7 +5464,7 @@ export interface ListTrackersRequest {
5464
5464
  * </p>
5465
5465
  * @public
5466
5466
  */
5467
- MaxResults?: number;
5467
+ MaxResults?: number | undefined;
5468
5468
  /**
5469
5469
  * <p>The pagination token specifying which page of results to return in the response. If no
5470
5470
  * token is provided, the default page is the first page. </p>
@@ -5472,7 +5472,7 @@ export interface ListTrackersRequest {
5472
5472
  * </p>
5473
5473
  * @public
5474
5474
  */
5475
- NextToken?: string;
5475
+ NextToken?: string | undefined;
5476
5476
  }
5477
5477
  /**
5478
5478
  * <p>Contains the tracker resource details.</p>
@@ -5495,14 +5495,14 @@ export interface ListTrackersResponseEntry {
5495
5495
  * <p>Always returns <code>RequestBasedUsage</code>.</p>
5496
5496
  * @public
5497
5497
  */
5498
- PricingPlan?: PricingPlan;
5498
+ PricingPlan?: PricingPlan | undefined;
5499
5499
  /**
5500
5500
  * @deprecated
5501
5501
  *
5502
5502
  * <p>No longer used. Always returns an empty string.</p>
5503
5503
  * @public
5504
5504
  */
5505
- PricingPlanDataSource?: string;
5505
+ PricingPlanDataSource?: string | undefined;
5506
5506
  /**
5507
5507
  * <p>The timestamp for when the tracker resource was created in <a href="https://www.iso.org/iso-8601-date-and-time-format.html"> ISO 8601</a>
5508
5508
  * format: <code>YYYY-MM-DDThh:mm:ss.sssZ</code>. </p>
@@ -5531,7 +5531,7 @@ export interface ListTrackersResponse {
5531
5531
  * token in a following request to fetch the next set of results. </p>
5532
5532
  * @public
5533
5533
  */
5534
- NextToken?: string;
5534
+ NextToken?: string | undefined;
5535
5535
  }
5536
5536
  /**
5537
5537
  * <p>Specifies the political view for the style.</p>
@@ -5550,7 +5550,7 @@ export interface MapConfigurationUpdate {
5550
5550
  * </note>
5551
5551
  * @public
5552
5552
  */
5553
- PoliticalView?: string;
5553
+ PoliticalView?: string | undefined;
5554
5554
  /**
5555
5555
  * <p>Specifies the custom layers for the style. Leave unset to not enable any custom layer, or, for styles that support custom layers, you can enable layer(s), such as POI layer for the VectorEsriNavigation style.
5556
5556
  * Default is <code>unset</code>.</p>
@@ -5559,7 +5559,7 @@ export interface MapConfigurationUpdate {
5559
5559
  * </note>
5560
5560
  * @public
5561
5561
  */
5562
- CustomLayers?: string[];
5562
+ CustomLayers?: string[] | undefined;
5563
5563
  }
5564
5564
  /**
5565
5565
  * @public
@@ -5577,18 +5577,18 @@ export interface UpdateMapRequest {
5577
5577
  * <code>RequestBasedUsage</code>.</p>
5578
5578
  * @public
5579
5579
  */
5580
- PricingPlan?: PricingPlan;
5580
+ PricingPlan?: PricingPlan | undefined;
5581
5581
  /**
5582
5582
  * <p>Updates the description for the map resource.</p>
5583
5583
  * @public
5584
5584
  */
5585
- Description?: string;
5585
+ Description?: string | undefined;
5586
5586
  /**
5587
5587
  * <p>Updates the parts of the map configuration that can be updated, including the
5588
5588
  * political view.</p>
5589
5589
  * @public
5590
5590
  */
5591
- ConfigurationUpdate?: MapConfigurationUpdate;
5591
+ ConfigurationUpdate?: MapConfigurationUpdate | undefined;
5592
5592
  }
5593
5593
  /**
5594
5594
  * @public
@@ -5643,7 +5643,7 @@ export interface SearchPlaceIndexForPositionRequest {
5643
5643
  * </p>
5644
5644
  * @public
5645
5645
  */
5646
- MaxResults?: number;
5646
+ MaxResults?: number | undefined;
5647
5647
  /**
5648
5648
  * <p>The preferred language used to return results. The value must be a valid <a href="https://tools.ietf.org/search/bcp47">BCP 47</a> language tag, for example,
5649
5649
  * <code>en</code> for English.</p>
@@ -5661,13 +5661,13 @@ export interface SearchPlaceIndexForPositionRequest {
5661
5661
  * that the provider does support.</p>
5662
5662
  * @public
5663
5663
  */
5664
- Language?: string;
5664
+ Language?: string | undefined;
5665
5665
  /**
5666
5666
  * <p>The optional <a href="https://docs.aws.amazon.com/location/latest/developerguide/using-apikeys.html">API key</a> to authorize
5667
5667
  * the request.</p>
5668
5668
  * @public
5669
5669
  */
5670
- Key?: string;
5670
+ Key?: string | undefined;
5671
5671
  }
5672
5672
  /**
5673
5673
  * <p>Contains a search result from a position search query that is run on a place index
@@ -5699,7 +5699,7 @@ export interface SearchForPositionResult {
5699
5699
  * </note>
5700
5700
  * @public
5701
5701
  */
5702
- PlaceId?: string;
5702
+ PlaceId?: string | undefined;
5703
5703
  }
5704
5704
  /**
5705
5705
  * <p>A summary of the request sent by using
@@ -5718,7 +5718,7 @@ export interface SearchPlaceIndexForPositionSummary {
5718
5718
  * </p>
5719
5719
  * @public
5720
5720
  */
5721
- MaxResults?: number;
5721
+ MaxResults?: number | undefined;
5722
5722
  /**
5723
5723
  * <p>The geospatial data provider attached to the place index resource specified in the
5724
5724
  * request. Values can be one of the following:</p>
@@ -5743,7 +5743,7 @@ export interface SearchPlaceIndexForPositionSummary {
5743
5743
  * language tag, for example, <code>en</code> for English.</p>
5744
5744
  * @public
5745
5745
  */
5746
- Language?: string;
5746
+ Language?: string | undefined;
5747
5747
  }
5748
5748
  /**
5749
5749
  * @public
@@ -5793,7 +5793,7 @@ export interface SearchPlaceIndexForSuggestionsRequest {
5793
5793
  * </note>
5794
5794
  * @public
5795
5795
  */
5796
- BiasPosition?: number[];
5796
+ BiasPosition?: number[] | undefined;
5797
5797
  /**
5798
5798
  * <p>An optional parameter that limits the search results by returning only suggestions
5799
5799
  * within a specified bounding box.</p>
@@ -5813,7 +5813,7 @@ export interface SearchPlaceIndexForSuggestionsRequest {
5813
5813
  * </note>
5814
5814
  * @public
5815
5815
  */
5816
- FilterBBox?: number[];
5816
+ FilterBBox?: number[] | undefined;
5817
5817
  /**
5818
5818
  * <p>An optional parameter that limits the search results by returning only suggestions
5819
5819
  * within the provided list of countries.</p>
@@ -5826,14 +5826,14 @@ export interface SearchPlaceIndexForSuggestionsRequest {
5826
5826
  * </ul>
5827
5827
  * @public
5828
5828
  */
5829
- FilterCountries?: string[];
5829
+ FilterCountries?: string[] | undefined;
5830
5830
  /**
5831
5831
  * <p>An optional parameter. The maximum number of results returned per request. </p>
5832
5832
  * <p>The default: <code>5</code>
5833
5833
  * </p>
5834
5834
  * @public
5835
5835
  */
5836
- MaxResults?: number;
5836
+ MaxResults?: number | undefined;
5837
5837
  /**
5838
5838
  * <p>The preferred language used to return results. The value must be a valid <a href="https://tools.ietf.org/search/bcp47">BCP 47</a> language tag, for example,
5839
5839
  * <code>en</code> for English.</p>
@@ -5849,7 +5849,7 @@ export interface SearchPlaceIndexForSuggestionsRequest {
5849
5849
  * that the provider does support.</p>
5850
5850
  * @public
5851
5851
  */
5852
- Language?: string;
5852
+ Language?: string | undefined;
5853
5853
  /**
5854
5854
  * <p>A list of one or more Amazon Location categories to filter the returned places. If you
5855
5855
  * include more than one category, the results will include results that match
@@ -5859,13 +5859,13 @@ export interface SearchPlaceIndexForSuggestionsRequest {
5859
5859
  * Guide</i>.</p>
5860
5860
  * @public
5861
5861
  */
5862
- FilterCategories?: string[];
5862
+ FilterCategories?: string[] | undefined;
5863
5863
  /**
5864
5864
  * <p>The optional <a href="https://docs.aws.amazon.com/location/latest/developerguide/using-apikeys.html">API key</a> to authorize
5865
5865
  * the request.</p>
5866
5866
  * @public
5867
5867
  */
5868
- Key?: string;
5868
+ Key?: string | undefined;
5869
5869
  }
5870
5870
  /**
5871
5871
  * <p>Contains a place suggestion resulting from a place suggestion query that is run on a
@@ -5891,7 +5891,7 @@ export interface SearchForSuggestionsResult {
5891
5891
  * </note>
5892
5892
  * @public
5893
5893
  */
5894
- PlaceId?: string;
5894
+ PlaceId?: string | undefined;
5895
5895
  /**
5896
5896
  * <p>The Amazon Location categories that describe the Place.</p>
5897
5897
  * <p>For more information about using categories, including a list of Amazon Location
@@ -5899,13 +5899,13 @@ export interface SearchForSuggestionsResult {
5899
5899
  * Guide</i>.</p>
5900
5900
  * @public
5901
5901
  */
5902
- Categories?: string[];
5902
+ Categories?: string[] | undefined;
5903
5903
  /**
5904
5904
  * <p>Categories from the data provider that describe the Place that are not mapped
5905
5905
  * to any Amazon Location categories.</p>
5906
5906
  * @public
5907
5907
  */
5908
- SupplementalCategories?: string[];
5908
+ SupplementalCategories?: string[] | undefined;
5909
5909
  }
5910
5910
  /**
5911
5911
  * <p>A summary of the request sent by using
@@ -5928,23 +5928,23 @@ export interface SearchPlaceIndexForSuggestionsSummary {
5928
5928
  * <code>-123.1174</code> and latitude <code>49.2847</code>.</p>
5929
5929
  * @public
5930
5930
  */
5931
- BiasPosition?: number[];
5931
+ BiasPosition?: number[] | undefined;
5932
5932
  /**
5933
5933
  * <p>Contains the coordinates for the optional bounding box specified in the
5934
5934
  * request.</p>
5935
5935
  * @public
5936
5936
  */
5937
- FilterBBox?: number[];
5937
+ FilterBBox?: number[] | undefined;
5938
5938
  /**
5939
5939
  * <p>Contains the optional country filter specified in the request.</p>
5940
5940
  * @public
5941
5941
  */
5942
- FilterCountries?: string[];
5942
+ FilterCountries?: string[] | undefined;
5943
5943
  /**
5944
5944
  * <p>Contains the optional result count limit specified in the request.</p>
5945
5945
  * @public
5946
5946
  */
5947
- MaxResults?: number;
5947
+ MaxResults?: number | undefined;
5948
5948
  /**
5949
5949
  * <p>The geospatial data provider attached to the place index resource specified in the
5950
5950
  * request. Values can be one of the following:</p>
@@ -5969,12 +5969,12 @@ export interface SearchPlaceIndexForSuggestionsSummary {
5969
5969
  * language tag, for example, <code>en</code> for English.</p>
5970
5970
  * @public
5971
5971
  */
5972
- Language?: string;
5972
+ Language?: string | undefined;
5973
5973
  /**
5974
5974
  * <p>The optional category filter specified in the request.</p>
5975
5975
  * @public
5976
5976
  */
5977
- FilterCategories?: string[];
5977
+ FilterCategories?: string[] | undefined;
5978
5978
  }
5979
5979
  /**
5980
5980
  * @public
@@ -6024,7 +6024,7 @@ export interface SearchPlaceIndexForTextRequest {
6024
6024
  * </note>
6025
6025
  * @public
6026
6026
  */
6027
- BiasPosition?: number[];
6027
+ BiasPosition?: number[] | undefined;
6028
6028
  /**
6029
6029
  * <p>An optional parameter that limits the search results by returning only places that are
6030
6030
  * within the provided bounding box.</p>
@@ -6044,7 +6044,7 @@ export interface SearchPlaceIndexForTextRequest {
6044
6044
  * </note>
6045
6045
  * @public
6046
6046
  */
6047
- FilterBBox?: number[];
6047
+ FilterBBox?: number[] | undefined;
6048
6048
  /**
6049
6049
  * <p>An optional parameter that limits the search results by returning only places that are
6050
6050
  * in a specified list of countries.</p>
@@ -6057,14 +6057,14 @@ export interface SearchPlaceIndexForTextRequest {
6057
6057
  * </ul>
6058
6058
  * @public
6059
6059
  */
6060
- FilterCountries?: string[];
6060
+ FilterCountries?: string[] | undefined;
6061
6061
  /**
6062
6062
  * <p>An optional parameter. The maximum number of results returned per request. </p>
6063
6063
  * <p>The default: <code>50</code>
6064
6064
  * </p>
6065
6065
  * @public
6066
6066
  */
6067
- MaxResults?: number;
6067
+ MaxResults?: number | undefined;
6068
6068
  /**
6069
6069
  * <p>The preferred language used to return results. The value must be a valid <a href="https://tools.ietf.org/search/bcp47">BCP 47</a> language tag, for example,
6070
6070
  * <code>en</code> for English.</p>
@@ -6080,7 +6080,7 @@ export interface SearchPlaceIndexForTextRequest {
6080
6080
  * that the provider does support.</p>
6081
6081
  * @public
6082
6082
  */
6083
- Language?: string;
6083
+ Language?: string | undefined;
6084
6084
  /**
6085
6085
  * <p>A list of one or more Amazon Location categories to filter the returned places. If you
6086
6086
  * include more than one category, the results will include results that match
@@ -6090,13 +6090,13 @@ export interface SearchPlaceIndexForTextRequest {
6090
6090
  * Guide</i>.</p>
6091
6091
  * @public
6092
6092
  */
6093
- FilterCategories?: string[];
6093
+ FilterCategories?: string[] | undefined;
6094
6094
  /**
6095
6095
  * <p>The optional <a href="https://docs.aws.amazon.com/location/latest/developerguide/using-apikeys.html">API key</a> to authorize
6096
6096
  * the request.</p>
6097
6097
  * @public
6098
6098
  */
6099
- Key?: string;
6099
+ Key?: string | undefined;
6100
6100
  }
6101
6101
  /**
6102
6102
  * <p>Contains a search result from a text search query that is run on a place index
@@ -6119,7 +6119,7 @@ export interface SearchForTextResult {
6119
6119
  * </note>
6120
6120
  * @public
6121
6121
  */
6122
- Distance?: number;
6122
+ Distance?: number | undefined;
6123
6123
  /**
6124
6124
  * <p>The relative confidence in the match for a result among the results returned. For
6125
6125
  * example, if more fields for an address match (including house number, street, city,
@@ -6127,7 +6127,7 @@ export interface SearchForTextResult {
6127
6127
  * <p>Returned only when the partner selected is Esri or Grab.</p>
6128
6128
  * @public
6129
6129
  */
6130
- Relevance?: number;
6130
+ Relevance?: number | undefined;
6131
6131
  /**
6132
6132
  * <p>The unique identifier of the place. You can use this with the <code>GetPlace</code>
6133
6133
  * operation to find the place again later.</p>
@@ -6137,7 +6137,7 @@ export interface SearchForTextResult {
6137
6137
  * </note>
6138
6138
  * @public
6139
6139
  */
6140
- PlaceId?: string;
6140
+ PlaceId?: string | undefined;
6141
6141
  }
6142
6142
  /**
6143
6143
  * <p>A summary of the request sent by using <code>SearchPlaceIndexForText</code>.</p>
@@ -6159,23 +6159,23 @@ export interface SearchPlaceIndexForTextSummary {
6159
6159
  * <code>-123.1174</code> and latitude <code>49.2847</code>.</p>
6160
6160
  * @public
6161
6161
  */
6162
- BiasPosition?: number[];
6162
+ BiasPosition?: number[] | undefined;
6163
6163
  /**
6164
6164
  * <p>Contains the coordinates for the optional bounding box specified in the
6165
6165
  * request.</p>
6166
6166
  * @public
6167
6167
  */
6168
- FilterBBox?: number[];
6168
+ FilterBBox?: number[] | undefined;
6169
6169
  /**
6170
6170
  * <p>Contains the optional country filter specified in the request.</p>
6171
6171
  * @public
6172
6172
  */
6173
- FilterCountries?: string[];
6173
+ FilterCountries?: string[] | undefined;
6174
6174
  /**
6175
6175
  * <p>Contains the optional result count limit specified in the request.</p>
6176
6176
  * @public
6177
6177
  */
6178
- MaxResults?: number;
6178
+ MaxResults?: number | undefined;
6179
6179
  /**
6180
6180
  * <p>The bounding box that fully contains all search results.</p>
6181
6181
  * <note>
@@ -6184,7 +6184,7 @@ export interface SearchPlaceIndexForTextSummary {
6184
6184
  * </note>
6185
6185
  * @public
6186
6186
  */
6187
- ResultBBox?: number[];
6187
+ ResultBBox?: number[] | undefined;
6188
6188
  /**
6189
6189
  * <p>The geospatial data provider attached to the place index resource specified in the
6190
6190
  * request. Values can be one of the following:</p>
@@ -6209,12 +6209,12 @@ export interface SearchPlaceIndexForTextSummary {
6209
6209
  * language tag, for example, <code>en</code> for English.</p>
6210
6210
  * @public
6211
6211
  */
6212
- Language?: string;
6212
+ Language?: string | undefined;
6213
6213
  /**
6214
6214
  * <p>The optional category filter specified in the request.</p>
6215
6215
  * @public
6216
6216
  */
6217
- FilterCategories?: string[];
6217
+ FilterCategories?: string[] | undefined;
6218
6218
  }
6219
6219
  /**
6220
6220
  * @public
@@ -6254,17 +6254,17 @@ export interface UpdatePlaceIndexRequest {
6254
6254
  * <code>RequestBasedUsage</code>.</p>
6255
6255
  * @public
6256
6256
  */
6257
- PricingPlan?: PricingPlan;
6257
+ PricingPlan?: PricingPlan | undefined;
6258
6258
  /**
6259
6259
  * <p>Updates the description for the place index resource.</p>
6260
6260
  * @public
6261
6261
  */
6262
- Description?: string;
6262
+ Description?: string | undefined;
6263
6263
  /**
6264
6264
  * <p>Updates the data storage option for the place index resource.</p>
6265
6265
  * @public
6266
6266
  */
6267
- DataSourceConfiguration?: DataSourceConfiguration;
6267
+ DataSourceConfiguration?: DataSourceConfiguration | undefined;
6268
6268
  }
6269
6269
  /**
6270
6270
  * @public
@@ -6311,12 +6311,12 @@ export interface UpdateRouteCalculatorRequest {
6311
6311
  * <code>RequestBasedUsage</code>.</p>
6312
6312
  * @public
6313
6313
  */
6314
- PricingPlan?: PricingPlan;
6314
+ PricingPlan?: PricingPlan | undefined;
6315
6315
  /**
6316
6316
  * <p>Updates the description for the route calculator resource.</p>
6317
6317
  * @public
6318
6318
  */
6319
- Description?: string;
6319
+ Description?: string | undefined;
6320
6320
  }
6321
6321
  /**
6322
6322
  * @public
@@ -6363,19 +6363,19 @@ export interface UpdateTrackerRequest {
6363
6363
  * <code>RequestBasedUsage</code>.</p>
6364
6364
  * @public
6365
6365
  */
6366
- PricingPlan?: PricingPlan;
6366
+ PricingPlan?: PricingPlan | undefined;
6367
6367
  /**
6368
6368
  * @deprecated
6369
6369
  *
6370
6370
  * <p>This parameter is no longer used.</p>
6371
6371
  * @public
6372
6372
  */
6373
- PricingPlanDataSource?: string;
6373
+ PricingPlanDataSource?: string | undefined;
6374
6374
  /**
6375
6375
  * <p>Updates the description for the tracker resource.</p>
6376
6376
  * @public
6377
6377
  */
6378
- Description?: string;
6378
+ Description?: string | undefined;
6379
6379
  /**
6380
6380
  * <p>Updates the position filtering for the tracker resource.</p>
6381
6381
  * <p>Valid values:</p>
@@ -6409,7 +6409,7 @@ export interface UpdateTrackerRequest {
6409
6409
  * </ul>
6410
6410
  * @public
6411
6411
  */
6412
- PositionFiltering?: PositionFiltering;
6412
+ PositionFiltering?: PositionFiltering | undefined;
6413
6413
  /**
6414
6414
  * <p>Whether to enable position <code>UPDATE</code> events from this tracker to be sent to
6415
6415
  * EventBridge.</p>
@@ -6420,14 +6420,14 @@ export interface UpdateTrackerRequest {
6420
6420
  * </note>
6421
6421
  * @public
6422
6422
  */
6423
- EventBridgeEnabled?: boolean;
6423
+ EventBridgeEnabled?: boolean | undefined;
6424
6424
  /**
6425
6425
  * <p>Enables <code>GeospatialQueries</code> for a tracker that uses a <a href="https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html">Amazon Web Services
6426
6426
  * KMS customer managed key</a>.</p>
6427
6427
  * <p>This parameter is only used if you are using a KMS customer managed key.</p>
6428
6428
  * @public
6429
6429
  */
6430
- KmsKeyEnableGeospatialQueries?: boolean;
6430
+ KmsKeyEnableGeospatialQueries?: boolean | undefined;
6431
6431
  }
6432
6432
  /**
6433
6433
  * @public
@@ -6477,7 +6477,7 @@ export interface VerifyDevicePositionRequest {
6477
6477
  * </p>
6478
6478
  * @public
6479
6479
  */
6480
- DistanceUnit?: DistanceUnit;
6480
+ DistanceUnit?: DistanceUnit | undefined;
6481
6481
  }
6482
6482
  /**
6483
6483
  * @public