@aws-sdk/client-location 3.278.0 → 3.281.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.
Files changed (60) hide show
  1. package/README.md +467 -0
  2. package/dist-types/commands/AssociateTrackerConsumerCommand.d.ts +6 -0
  3. package/dist-types/commands/BatchDeleteDevicePositionHistoryCommand.d.ts +6 -0
  4. package/dist-types/commands/BatchDeleteGeofenceCommand.d.ts +6 -0
  5. package/dist-types/commands/BatchEvaluateGeofencesCommand.d.ts +6 -0
  6. package/dist-types/commands/BatchGetDevicePositionCommand.d.ts +6 -0
  7. package/dist-types/commands/BatchPutGeofenceCommand.d.ts +6 -0
  8. package/dist-types/commands/BatchUpdateDevicePositionCommand.d.ts +6 -0
  9. package/dist-types/commands/CalculateRouteCommand.d.ts +6 -0
  10. package/dist-types/commands/CalculateRouteMatrixCommand.d.ts +6 -0
  11. package/dist-types/commands/CreateGeofenceCollectionCommand.d.ts +6 -0
  12. package/dist-types/commands/CreateKeyCommand.d.ts +6 -0
  13. package/dist-types/commands/CreateMapCommand.d.ts +6 -0
  14. package/dist-types/commands/CreatePlaceIndexCommand.d.ts +6 -0
  15. package/dist-types/commands/CreateRouteCalculatorCommand.d.ts +6 -0
  16. package/dist-types/commands/CreateTrackerCommand.d.ts +6 -0
  17. package/dist-types/commands/DeleteGeofenceCollectionCommand.d.ts +6 -0
  18. package/dist-types/commands/DeleteKeyCommand.d.ts +6 -0
  19. package/dist-types/commands/DeleteMapCommand.d.ts +6 -0
  20. package/dist-types/commands/DeletePlaceIndexCommand.d.ts +6 -0
  21. package/dist-types/commands/DeleteRouteCalculatorCommand.d.ts +6 -0
  22. package/dist-types/commands/DeleteTrackerCommand.d.ts +6 -0
  23. package/dist-types/commands/DescribeGeofenceCollectionCommand.d.ts +6 -0
  24. package/dist-types/commands/DescribeKeyCommand.d.ts +6 -0
  25. package/dist-types/commands/DescribeMapCommand.d.ts +6 -0
  26. package/dist-types/commands/DescribePlaceIndexCommand.d.ts +6 -0
  27. package/dist-types/commands/DescribeRouteCalculatorCommand.d.ts +6 -0
  28. package/dist-types/commands/DescribeTrackerCommand.d.ts +6 -0
  29. package/dist-types/commands/DisassociateTrackerConsumerCommand.d.ts +6 -0
  30. package/dist-types/commands/GetDevicePositionCommand.d.ts +6 -0
  31. package/dist-types/commands/GetDevicePositionHistoryCommand.d.ts +6 -0
  32. package/dist-types/commands/GetGeofenceCommand.d.ts +6 -0
  33. package/dist-types/commands/GetMapGlyphsCommand.d.ts +6 -0
  34. package/dist-types/commands/GetMapSpritesCommand.d.ts +6 -0
  35. package/dist-types/commands/GetMapStyleDescriptorCommand.d.ts +6 -0
  36. package/dist-types/commands/GetMapTileCommand.d.ts +6 -0
  37. package/dist-types/commands/GetPlaceCommand.d.ts +6 -0
  38. package/dist-types/commands/ListDevicePositionsCommand.d.ts +6 -0
  39. package/dist-types/commands/ListGeofenceCollectionsCommand.d.ts +6 -0
  40. package/dist-types/commands/ListGeofencesCommand.d.ts +6 -0
  41. package/dist-types/commands/ListKeysCommand.d.ts +6 -0
  42. package/dist-types/commands/ListMapsCommand.d.ts +6 -0
  43. package/dist-types/commands/ListPlaceIndexesCommand.d.ts +6 -0
  44. package/dist-types/commands/ListRouteCalculatorsCommand.d.ts +6 -0
  45. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
  46. package/dist-types/commands/ListTrackerConsumersCommand.d.ts +6 -0
  47. package/dist-types/commands/ListTrackersCommand.d.ts +6 -0
  48. package/dist-types/commands/PutGeofenceCommand.d.ts +6 -0
  49. package/dist-types/commands/SearchPlaceIndexForPositionCommand.d.ts +6 -0
  50. package/dist-types/commands/SearchPlaceIndexForSuggestionsCommand.d.ts +6 -0
  51. package/dist-types/commands/SearchPlaceIndexForTextCommand.d.ts +6 -0
  52. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  53. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  54. package/dist-types/commands/UpdateGeofenceCollectionCommand.d.ts +6 -0
  55. package/dist-types/commands/UpdateKeyCommand.d.ts +6 -0
  56. package/dist-types/commands/UpdateMapCommand.d.ts +6 -0
  57. package/dist-types/commands/UpdatePlaceIndexCommand.d.ts +6 -0
  58. package/dist-types/commands/UpdateRouteCalculatorCommand.d.ts +6 -0
  59. package/dist-types/commands/UpdateTrackerCommand.d.ts +6 -0
  60. package/package.json +6 -6
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { CreateKeyRequest, CreateKeyResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreateKeyCommand}.
8
+ */
6
9
  export interface CreateKeyCommandInput extends CreateKeyRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link CreateKeyCommand}.
13
+ */
8
14
  export interface CreateKeyCommandOutput extends CreateKeyResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { CreateMapRequest, CreateMapResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreateMapCommand}.
8
+ */
6
9
  export interface CreateMapCommandInput extends CreateMapRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link CreateMapCommand}.
13
+ */
8
14
  export interface CreateMapCommandOutput extends CreateMapResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { CreatePlaceIndexRequest, CreatePlaceIndexResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreatePlaceIndexCommand}.
8
+ */
6
9
  export interface CreatePlaceIndexCommandInput extends CreatePlaceIndexRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link CreatePlaceIndexCommand}.
13
+ */
8
14
  export interface CreatePlaceIndexCommandOutput extends CreatePlaceIndexResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { CreateRouteCalculatorRequest, CreateRouteCalculatorResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreateRouteCalculatorCommand}.
8
+ */
6
9
  export interface CreateRouteCalculatorCommandInput extends CreateRouteCalculatorRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link CreateRouteCalculatorCommand}.
13
+ */
8
14
  export interface CreateRouteCalculatorCommandOutput extends CreateRouteCalculatorResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { CreateTrackerRequest, CreateTrackerResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreateTrackerCommand}.
8
+ */
6
9
  export interface CreateTrackerCommandInput extends CreateTrackerRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link CreateTrackerCommand}.
13
+ */
8
14
  export interface CreateTrackerCommandOutput extends CreateTrackerResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { DeleteGeofenceCollectionRequest, DeleteGeofenceCollectionResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteGeofenceCollectionCommand}.
8
+ */
6
9
  export interface DeleteGeofenceCollectionCommandInput extends DeleteGeofenceCollectionRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteGeofenceCollectionCommand}.
13
+ */
8
14
  export interface DeleteGeofenceCollectionCommandOutput extends DeleteGeofenceCollectionResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { DeleteKeyRequest, DeleteKeyResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteKeyCommand}.
8
+ */
6
9
  export interface DeleteKeyCommandInput extends DeleteKeyRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteKeyCommand}.
13
+ */
8
14
  export interface DeleteKeyCommandOutput extends DeleteKeyResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { DeleteMapRequest, DeleteMapResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteMapCommand}.
8
+ */
6
9
  export interface DeleteMapCommandInput extends DeleteMapRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteMapCommand}.
13
+ */
8
14
  export interface DeleteMapCommandOutput extends DeleteMapResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { DeletePlaceIndexRequest, DeletePlaceIndexResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeletePlaceIndexCommand}.
8
+ */
6
9
  export interface DeletePlaceIndexCommandInput extends DeletePlaceIndexRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeletePlaceIndexCommand}.
13
+ */
8
14
  export interface DeletePlaceIndexCommandOutput extends DeletePlaceIndexResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { DeleteRouteCalculatorRequest, DeleteRouteCalculatorResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteRouteCalculatorCommand}.
8
+ */
6
9
  export interface DeleteRouteCalculatorCommandInput extends DeleteRouteCalculatorRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteRouteCalculatorCommand}.
13
+ */
8
14
  export interface DeleteRouteCalculatorCommandOutput extends DeleteRouteCalculatorResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { DeleteTrackerRequest, DeleteTrackerResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteTrackerCommand}.
8
+ */
6
9
  export interface DeleteTrackerCommandInput extends DeleteTrackerRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteTrackerCommand}.
13
+ */
8
14
  export interface DeleteTrackerCommandOutput extends DeleteTrackerResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { DescribeGeofenceCollectionRequest, DescribeGeofenceCollectionResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeGeofenceCollectionCommand}.
8
+ */
6
9
  export interface DescribeGeofenceCollectionCommandInput extends DescribeGeofenceCollectionRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeGeofenceCollectionCommand}.
13
+ */
8
14
  export interface DescribeGeofenceCollectionCommandOutput extends DescribeGeofenceCollectionResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { DescribeKeyRequest, DescribeKeyResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeKeyCommand}.
8
+ */
6
9
  export interface DescribeKeyCommandInput extends DescribeKeyRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeKeyCommand}.
13
+ */
8
14
  export interface DescribeKeyCommandOutput extends DescribeKeyResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { DescribeMapRequest, DescribeMapResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeMapCommand}.
8
+ */
6
9
  export interface DescribeMapCommandInput extends DescribeMapRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeMapCommand}.
13
+ */
8
14
  export interface DescribeMapCommandOutput extends DescribeMapResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { DescribePlaceIndexRequest, DescribePlaceIndexResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribePlaceIndexCommand}.
8
+ */
6
9
  export interface DescribePlaceIndexCommandInput extends DescribePlaceIndexRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribePlaceIndexCommand}.
13
+ */
8
14
  export interface DescribePlaceIndexCommandOutput extends DescribePlaceIndexResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { DescribeRouteCalculatorRequest, DescribeRouteCalculatorResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeRouteCalculatorCommand}.
8
+ */
6
9
  export interface DescribeRouteCalculatorCommandInput extends DescribeRouteCalculatorRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeRouteCalculatorCommand}.
13
+ */
8
14
  export interface DescribeRouteCalculatorCommandOutput extends DescribeRouteCalculatorResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { DescribeTrackerRequest, DescribeTrackerResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeTrackerCommand}.
8
+ */
6
9
  export interface DescribeTrackerCommandInput extends DescribeTrackerRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeTrackerCommand}.
13
+ */
8
14
  export interface DescribeTrackerCommandOutput extends DescribeTrackerResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { DisassociateTrackerConsumerRequest, DisassociateTrackerConsumerResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DisassociateTrackerConsumerCommand}.
8
+ */
6
9
  export interface DisassociateTrackerConsumerCommandInput extends DisassociateTrackerConsumerRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DisassociateTrackerConsumerCommand}.
13
+ */
8
14
  export interface DisassociateTrackerConsumerCommandOutput extends DisassociateTrackerConsumerResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { GetDevicePositionRequest, GetDevicePositionResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetDevicePositionCommand}.
8
+ */
6
9
  export interface GetDevicePositionCommandInput extends GetDevicePositionRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetDevicePositionCommand}.
13
+ */
8
14
  export interface GetDevicePositionCommandOutput extends GetDevicePositionResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { GetDevicePositionHistoryRequest, GetDevicePositionHistoryResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetDevicePositionHistoryCommand}.
8
+ */
6
9
  export interface GetDevicePositionHistoryCommandInput extends GetDevicePositionHistoryRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetDevicePositionHistoryCommand}.
13
+ */
8
14
  export interface GetDevicePositionHistoryCommandOutput extends GetDevicePositionHistoryResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { GetGeofenceRequest, GetGeofenceResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetGeofenceCommand}.
8
+ */
6
9
  export interface GetGeofenceCommandInput extends GetGeofenceRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetGeofenceCommand}.
13
+ */
8
14
  export interface GetGeofenceCommandOutput extends GetGeofenceResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { GetMapGlyphsRequest, GetMapGlyphsResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetMapGlyphsCommand}.
8
+ */
6
9
  export interface GetMapGlyphsCommandInput extends GetMapGlyphsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetMapGlyphsCommand}.
13
+ */
8
14
  export interface GetMapGlyphsCommandOutput extends GetMapGlyphsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { GetMapSpritesRequest, GetMapSpritesResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetMapSpritesCommand}.
8
+ */
6
9
  export interface GetMapSpritesCommandInput extends GetMapSpritesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetMapSpritesCommand}.
13
+ */
8
14
  export interface GetMapSpritesCommandOutput extends GetMapSpritesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { GetMapStyleDescriptorRequest, GetMapStyleDescriptorResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetMapStyleDescriptorCommand}.
8
+ */
6
9
  export interface GetMapStyleDescriptorCommandInput extends GetMapStyleDescriptorRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetMapStyleDescriptorCommand}.
13
+ */
8
14
  export interface GetMapStyleDescriptorCommandOutput extends GetMapStyleDescriptorResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { GetMapTileRequest, GetMapTileResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetMapTileCommand}.
8
+ */
6
9
  export interface GetMapTileCommandInput extends GetMapTileRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetMapTileCommand}.
13
+ */
8
14
  export interface GetMapTileCommandOutput extends GetMapTileResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { GetPlaceRequest, GetPlaceResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetPlaceCommand}.
8
+ */
6
9
  export interface GetPlaceCommandInput extends GetPlaceRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetPlaceCommand}.
13
+ */
8
14
  export interface GetPlaceCommandOutput extends GetPlaceResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { ListDevicePositionsRequest, ListDevicePositionsResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListDevicePositionsCommand}.
8
+ */
6
9
  export interface ListDevicePositionsCommandInput extends ListDevicePositionsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListDevicePositionsCommand}.
13
+ */
8
14
  export interface ListDevicePositionsCommandOutput extends ListDevicePositionsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { ListGeofenceCollectionsRequest, ListGeofenceCollectionsResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListGeofenceCollectionsCommand}.
8
+ */
6
9
  export interface ListGeofenceCollectionsCommandInput extends ListGeofenceCollectionsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListGeofenceCollectionsCommand}.
13
+ */
8
14
  export interface ListGeofenceCollectionsCommandOutput extends ListGeofenceCollectionsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { ListGeofencesRequest, ListGeofencesResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListGeofencesCommand}.
8
+ */
6
9
  export interface ListGeofencesCommandInput extends ListGeofencesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListGeofencesCommand}.
13
+ */
8
14
  export interface ListGeofencesCommandOutput extends ListGeofencesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { ListKeysRequest, ListKeysResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListKeysCommand}.
8
+ */
6
9
  export interface ListKeysCommandInput extends ListKeysRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListKeysCommand}.
13
+ */
8
14
  export interface ListKeysCommandOutput extends ListKeysResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { ListMapsRequest, ListMapsResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListMapsCommand}.
8
+ */
6
9
  export interface ListMapsCommandInput extends ListMapsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListMapsCommand}.
13
+ */
8
14
  export interface ListMapsCommandOutput extends ListMapsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { ListPlaceIndexesRequest, ListPlaceIndexesResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListPlaceIndexesCommand}.
8
+ */
6
9
  export interface ListPlaceIndexesCommandInput extends ListPlaceIndexesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListPlaceIndexesCommand}.
13
+ */
8
14
  export interface ListPlaceIndexesCommandOutput extends ListPlaceIndexesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { ListRouteCalculatorsRequest, ListRouteCalculatorsResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListRouteCalculatorsCommand}.
8
+ */
6
9
  export interface ListRouteCalculatorsCommandInput extends ListRouteCalculatorsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListRouteCalculatorsCommand}.
13
+ */
8
14
  export interface ListRouteCalculatorsCommandOutput extends ListRouteCalculatorsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListTagsForResourceCommand}.
8
+ */
6
9
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListTagsForResourceCommand}.
13
+ */
8
14
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { ListTrackerConsumersRequest, ListTrackerConsumersResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListTrackerConsumersCommand}.
8
+ */
6
9
  export interface ListTrackerConsumersCommandInput extends ListTrackerConsumersRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListTrackerConsumersCommand}.
13
+ */
8
14
  export interface ListTrackerConsumersCommandOutput extends ListTrackerConsumersResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { ListTrackersRequest, ListTrackersResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListTrackersCommand}.
8
+ */
6
9
  export interface ListTrackersCommandInput extends ListTrackersRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListTrackersCommand}.
13
+ */
8
14
  export interface ListTrackersCommandOutput extends ListTrackersResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { PutGeofenceRequest, PutGeofenceResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link PutGeofenceCommand}.
8
+ */
6
9
  export interface PutGeofenceCommandInput extends PutGeofenceRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link PutGeofenceCommand}.
13
+ */
8
14
  export interface PutGeofenceCommandOutput extends PutGeofenceResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { SearchPlaceIndexForPositionRequest, SearchPlaceIndexForPositionResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link SearchPlaceIndexForPositionCommand}.
8
+ */
6
9
  export interface SearchPlaceIndexForPositionCommandInput extends SearchPlaceIndexForPositionRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link SearchPlaceIndexForPositionCommand}.
13
+ */
8
14
  export interface SearchPlaceIndexForPositionCommandOutput extends SearchPlaceIndexForPositionResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient";
5
5
  import { SearchPlaceIndexForSuggestionsRequest, SearchPlaceIndexForSuggestionsResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link SearchPlaceIndexForSuggestionsCommand}.
8
+ */
6
9
  export interface SearchPlaceIndexForSuggestionsCommandInput extends SearchPlaceIndexForSuggestionsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link SearchPlaceIndexForSuggestionsCommand}.
13
+ */
8
14
  export interface SearchPlaceIndexForSuggestionsCommandOutput extends SearchPlaceIndexForSuggestionsResponse, __MetadataBearer {
9
15
  }
10
16
  /**