aws-sdk 2.871.0 → 2.875.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.
- package/CHANGELOG.md +26 -1
- package/README.md +1 -1
- package/apis/alexaforbusiness-2017-11-09.min.json +9 -0
- package/apis/customer-profiles-2020-08-15.min.json +164 -6
- package/apis/docdb-2014-10-31.min.json +298 -114
- package/apis/docdb-2014-10-31.paginators.json +6 -0
- package/apis/eventbridge-2015-10-07.min.json +22 -3
- package/apis/events-2015-10-07.min.json +22 -3
- package/apis/glue-2017-03-31.min.json +20 -10
- package/apis/iotwireless-2020-11-22.min.json +3 -0
- package/apis/location-2020-11-19.min.json +23 -1
- package/apis/lookoutmetrics-2017-07-25.examples.json +5 -0
- package/apis/lookoutmetrics-2017-07-25.min.json +1179 -0
- package/apis/lookoutmetrics-2017-07-25.paginators.json +39 -0
- package/apis/medialive-2017-10-14.min.json +189 -176
- package/apis/metadata.json +3 -0
- package/apis/rekognition-2016-06-27.min.json +181 -109
- package/apis/sagemaker-2017-07-24.min.json +213 -199
- package/apis/wafv2-2019-07-29.min.json +172 -81
- package/clients/alexaforbusiness.d.ts +12 -0
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/cloudwatchevents.d.ts +25 -2
- package/clients/customerprofiles.d.ts +102 -1
- package/clients/docdb.d.ts +213 -0
- package/clients/eventbridge.d.ts +25 -2
- package/clients/glue.d.ts +21 -6
- package/clients/iotwireless.d.ts +13 -9
- package/clients/location.d.ts +100 -44
- package/clients/lookoutmetrics.d.ts +1497 -0
- package/clients/lookoutmetrics.js +19 -0
- package/clients/medialive.d.ts +8 -1
- package/clients/rekognition.d.ts +80 -3
- package/clients/sagemaker.d.ts +26 -11
- package/clients/sqs.d.ts +2 -2
- package/clients/transcribeservice.d.ts +2 -2
- package/clients/wafv2.d.ts +94 -3
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +83 -17
- package/dist/aws-sdk.js +209 -115
- package/dist/aws-sdk.min.js +47 -47
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/lib/services/lookoutmetrics.js +22 -0
- package/package.json +1 -1
package/clients/location.d.ts
CHANGED
|
@@ -12,11 +12,11 @@ declare class Location extends Service {
|
|
|
12
12
|
constructor(options?: Location.Types.ClientConfiguration)
|
|
13
13
|
config: Config & Location.Types.ClientConfiguration;
|
|
14
14
|
/**
|
|
15
|
-
* Creates an association between a geofence collection and a tracker resource. This allows the tracker resource to communicate location data to the linked geofence collection.
|
|
15
|
+
* Creates an association between a geofence collection and a tracker resource. This allows the tracker resource to communicate location data to the linked geofence collection. Currently not supported — Cross-account configurations, such as creating associations between a tracker resource in one account and a geofence collection in another account.
|
|
16
16
|
*/
|
|
17
17
|
associateTrackerConsumer(params: Location.Types.AssociateTrackerConsumerRequest, callback?: (err: AWSError, data: Location.Types.AssociateTrackerConsumerResponse) => void): Request<Location.Types.AssociateTrackerConsumerResponse, AWSError>;
|
|
18
18
|
/**
|
|
19
|
-
* Creates an association between a geofence collection and a tracker resource. This allows the tracker resource to communicate location data to the linked geofence collection.
|
|
19
|
+
* Creates an association between a geofence collection and a tracker resource. This allows the tracker resource to communicate location data to the linked geofence collection. Currently not supported — Cross-account configurations, such as creating associations between a tracker resource in one account and a geofence collection in another account.
|
|
20
20
|
*/
|
|
21
21
|
associateTrackerConsumer(callback?: (err: AWSError, data: Location.Types.AssociateTrackerConsumerResponse) => void): Request<Location.Types.AssociateTrackerConsumerResponse, AWSError>;
|
|
22
22
|
/**
|
|
@@ -28,35 +28,35 @@ declare class Location extends Service {
|
|
|
28
28
|
*/
|
|
29
29
|
batchDeleteGeofence(callback?: (err: AWSError, data: Location.Types.BatchDeleteGeofenceResponse) => void): Request<Location.Types.BatchDeleteGeofenceResponse, AWSError>;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* Evaluates device positions against the geofence geometries from a given geofence collection. The evaluation determines if the device has entered or exited a geofenced area, which publishes ENTER or EXIT geofence events to Amazon EventBridge. The last geofence that a device was observed within, if any, is tracked for 30 days after the most recent device position update
|
|
32
32
|
*/
|
|
33
33
|
batchEvaluateGeofences(params: Location.Types.BatchEvaluateGeofencesRequest, callback?: (err: AWSError, data: Location.Types.BatchEvaluateGeofencesResponse) => void): Request<Location.Types.BatchEvaluateGeofencesResponse, AWSError>;
|
|
34
34
|
/**
|
|
35
|
-
*
|
|
35
|
+
* Evaluates device positions against the geofence geometries from a given geofence collection. The evaluation determines if the device has entered or exited a geofenced area, which publishes ENTER or EXIT geofence events to Amazon EventBridge. The last geofence that a device was observed within, if any, is tracked for 30 days after the most recent device position update
|
|
36
36
|
*/
|
|
37
37
|
batchEvaluateGeofences(callback?: (err: AWSError, data: Location.Types.BatchEvaluateGeofencesResponse) => void): Request<Location.Types.BatchEvaluateGeofencesResponse, AWSError>;
|
|
38
38
|
/**
|
|
39
|
-
* A batch request to retrieve
|
|
39
|
+
* A batch request to retrieve all device positions.
|
|
40
40
|
*/
|
|
41
41
|
batchGetDevicePosition(params: Location.Types.BatchGetDevicePositionRequest, callback?: (err: AWSError, data: Location.Types.BatchGetDevicePositionResponse) => void): Request<Location.Types.BatchGetDevicePositionResponse, AWSError>;
|
|
42
42
|
/**
|
|
43
|
-
* A batch request to retrieve
|
|
43
|
+
* A batch request to retrieve all device positions.
|
|
44
44
|
*/
|
|
45
45
|
batchGetDevicePosition(callback?: (err: AWSError, data: Location.Types.BatchGetDevicePositionResponse) => void): Request<Location.Types.BatchGetDevicePositionResponse, AWSError>;
|
|
46
46
|
/**
|
|
47
|
-
* A batch request for storing
|
|
47
|
+
* A batch request for storing geofence geometries into a given geofence collection.
|
|
48
48
|
*/
|
|
49
49
|
batchPutGeofence(params: Location.Types.BatchPutGeofenceRequest, callback?: (err: AWSError, data: Location.Types.BatchPutGeofenceResponse) => void): Request<Location.Types.BatchPutGeofenceResponse, AWSError>;
|
|
50
50
|
/**
|
|
51
|
-
* A batch request for storing
|
|
51
|
+
* A batch request for storing geofence geometries into a given geofence collection.
|
|
52
52
|
*/
|
|
53
53
|
batchPutGeofence(callback?: (err: AWSError, data: Location.Types.BatchPutGeofenceResponse) => void): Request<Location.Types.BatchPutGeofenceResponse, AWSError>;
|
|
54
54
|
/**
|
|
55
|
-
* Uploads
|
|
55
|
+
* Uploads position update data for one or more devices to a tracker resource. Amazon Location uses the data when reporting the last known device position and position history. Only one position update is stored per sample time. Location data is sampled at a fixed rate of one position per 30-second interval, and retained for one year before it is deleted.
|
|
56
56
|
*/
|
|
57
57
|
batchUpdateDevicePosition(params: Location.Types.BatchUpdateDevicePositionRequest, callback?: (err: AWSError, data: Location.Types.BatchUpdateDevicePositionResponse) => void): Request<Location.Types.BatchUpdateDevicePositionResponse, AWSError>;
|
|
58
58
|
/**
|
|
59
|
-
* Uploads
|
|
59
|
+
* Uploads position update data for one or more devices to a tracker resource. Amazon Location uses the data when reporting the last known device position and position history. Only one position update is stored per sample time. Location data is sampled at a fixed rate of one position per 30-second interval, and retained for one year before it is deleted.
|
|
60
60
|
*/
|
|
61
61
|
batchUpdateDevicePosition(callback?: (err: AWSError, data: Location.Types.BatchUpdateDevicePositionResponse) => void): Request<Location.Types.BatchUpdateDevicePositionResponse, AWSError>;
|
|
62
62
|
/**
|
|
@@ -156,27 +156,27 @@ declare class Location extends Service {
|
|
|
156
156
|
*/
|
|
157
157
|
describeTracker(callback?: (err: AWSError, data: Location.Types.DescribeTrackerResponse) => void): Request<Location.Types.DescribeTrackerResponse, AWSError>;
|
|
158
158
|
/**
|
|
159
|
-
* Removes the association
|
|
159
|
+
* Removes the association between a tracker resource and a geofence collection. Once you unlink a tracker resource from a geofence collection, the tracker positions will no longer be automatically evaluated against geofences.
|
|
160
160
|
*/
|
|
161
161
|
disassociateTrackerConsumer(params: Location.Types.DisassociateTrackerConsumerRequest, callback?: (err: AWSError, data: Location.Types.DisassociateTrackerConsumerResponse) => void): Request<Location.Types.DisassociateTrackerConsumerResponse, AWSError>;
|
|
162
162
|
/**
|
|
163
|
-
* Removes the association
|
|
163
|
+
* Removes the association between a tracker resource and a geofence collection. Once you unlink a tracker resource from a geofence collection, the tracker positions will no longer be automatically evaluated against geofences.
|
|
164
164
|
*/
|
|
165
165
|
disassociateTrackerConsumer(callback?: (err: AWSError, data: Location.Types.DisassociateTrackerConsumerResponse) => void): Request<Location.Types.DisassociateTrackerConsumerResponse, AWSError>;
|
|
166
166
|
/**
|
|
167
|
-
* Retrieves
|
|
167
|
+
* Retrieves a device's most recent position according to its sample time. Device positions are deleted after one year.
|
|
168
168
|
*/
|
|
169
169
|
getDevicePosition(params: Location.Types.GetDevicePositionRequest, callback?: (err: AWSError, data: Location.Types.GetDevicePositionResponse) => void): Request<Location.Types.GetDevicePositionResponse, AWSError>;
|
|
170
170
|
/**
|
|
171
|
-
* Retrieves
|
|
171
|
+
* Retrieves a device's most recent position according to its sample time. Device positions are deleted after one year.
|
|
172
172
|
*/
|
|
173
173
|
getDevicePosition(callback?: (err: AWSError, data: Location.Types.GetDevicePositionResponse) => void): Request<Location.Types.GetDevicePositionResponse, AWSError>;
|
|
174
174
|
/**
|
|
175
|
-
* Retrieves the device position history from a tracker resource within a specified range of time.
|
|
175
|
+
* Retrieves the device position history from a tracker resource within a specified range of time. Device positions are deleted after 1 year.
|
|
176
176
|
*/
|
|
177
177
|
getDevicePositionHistory(params: Location.Types.GetDevicePositionHistoryRequest, callback?: (err: AWSError, data: Location.Types.GetDevicePositionHistoryResponse) => void): Request<Location.Types.GetDevicePositionHistoryResponse, AWSError>;
|
|
178
178
|
/**
|
|
179
|
-
* Retrieves the device position history from a tracker resource within a specified range of time.
|
|
179
|
+
* Retrieves the device position history from a tracker resource within a specified range of time. Device positions are deleted after 1 year.
|
|
180
180
|
*/
|
|
181
181
|
getDevicePositionHistory(callback?: (err: AWSError, data: Location.Types.GetDevicePositionHistoryResponse) => void): Request<Location.Types.GetDevicePositionHistoryResponse, AWSError>;
|
|
182
182
|
/**
|
|
@@ -268,11 +268,11 @@ declare class Location extends Service {
|
|
|
268
268
|
*/
|
|
269
269
|
listTrackers(callback?: (err: AWSError, data: Location.Types.ListTrackersResponse) => void): Request<Location.Types.ListTrackersResponse, AWSError>;
|
|
270
270
|
/**
|
|
271
|
-
* Stores a geofence
|
|
271
|
+
* Stores a geofence geometry in a given geofence collection, or updates the geometry of an existing geofence if a geofence ID is included in the request.
|
|
272
272
|
*/
|
|
273
273
|
putGeofence(params: Location.Types.PutGeofenceRequest, callback?: (err: AWSError, data: Location.Types.PutGeofenceResponse) => void): Request<Location.Types.PutGeofenceResponse, AWSError>;
|
|
274
274
|
/**
|
|
275
|
-
* Stores a geofence
|
|
275
|
+
* Stores a geofence geometry in a given geofence collection, or updates the geometry of an existing geofence if a geofence ID is included in the request.
|
|
276
276
|
*/
|
|
277
277
|
putGeofence(callback?: (err: AWSError, data: Location.Types.PutGeofenceResponse) => void): Request<Location.Types.PutGeofenceResponse, AWSError>;
|
|
278
278
|
/**
|
|
@@ -439,7 +439,7 @@ declare namespace Location {
|
|
|
439
439
|
*/
|
|
440
440
|
GeofenceId: Id;
|
|
441
441
|
/**
|
|
442
|
-
*
|
|
442
|
+
* Contains the polygon details to specify the position of the geofence. Each geofence polygon can have a maximum of 1,000 vertices.
|
|
443
443
|
*/
|
|
444
444
|
Geometry: GeofenceGeometry;
|
|
445
445
|
}
|
|
@@ -478,7 +478,7 @@ declare namespace Location {
|
|
|
478
478
|
*/
|
|
479
479
|
Error: BatchItemError;
|
|
480
480
|
/**
|
|
481
|
-
* The timestamp
|
|
481
|
+
* The timestamp at which the device position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.
|
|
482
482
|
*/
|
|
483
483
|
SampleTime: Timestamp;
|
|
484
484
|
}
|
|
@@ -506,7 +506,7 @@ declare namespace Location {
|
|
|
506
506
|
export type CountryCodeList = CountryCode[];
|
|
507
507
|
export interface CreateGeofenceCollectionRequest {
|
|
508
508
|
/**
|
|
509
|
-
* A custom name for the geofence collection. Requirements: Contain only alphanumeric characters (A–Z, a–z, 0-9), hyphens (-), and underscores (_). Must be a unique geofence collection name. No spaces allowed. For example, ExampleGeofenceCollection.
|
|
509
|
+
* A custom name for the geofence collection. Requirements: Contain only alphanumeric characters (A–Z, a–z, 0-9), hyphens (-), periods (.), and underscores (_). Must be a unique geofence collection name. No spaces allowed. For example, ExampleGeofenceCollection.
|
|
510
510
|
*/
|
|
511
511
|
CollectionName: ResourceName;
|
|
512
512
|
/**
|
|
@@ -514,9 +514,13 @@ declare namespace Location {
|
|
|
514
514
|
*/
|
|
515
515
|
Description?: ResourceDescription;
|
|
516
516
|
/**
|
|
517
|
-
* Specifies the pricing plan for your geofence collection.
|
|
517
|
+
* Specifies the pricing plan for your geofence collection. For additional details and restrictions on each pricing plan option, see the Amazon Location Service pricing page.
|
|
518
518
|
*/
|
|
519
519
|
PricingPlan: PricingPlan;
|
|
520
|
+
/**
|
|
521
|
+
* Specifies the plan data source. Required if the Mobile Asset Tracking (MAT) or the Mobile Asset Management (MAM) pricing plan is selected. Billing is determined by the resource usage, the associated pricing plan, and the data source that was specified. For more information about each pricing plan option and restrictions, see the Amazon Location Service pricing page. Valid Values: Esri | Here
|
|
522
|
+
*/
|
|
523
|
+
PricingPlanDataSource?: String;
|
|
520
524
|
}
|
|
521
525
|
export interface CreateGeofenceCollectionResponse {
|
|
522
526
|
/**
|
|
@@ -542,11 +546,11 @@ declare namespace Location {
|
|
|
542
546
|
*/
|
|
543
547
|
Description?: ResourceDescription;
|
|
544
548
|
/**
|
|
545
|
-
* The name for the map resource. Requirements: Must contain only alphanumeric characters (A–Z, a–z, 0–9), hyphens (-), and underscores (_). Must be a unique map resource name. No spaces allowed. For example, ExampleMap.
|
|
549
|
+
* The name for the map resource. Requirements: Must contain only alphanumeric characters (A–Z, a–z, 0–9), hyphens (-), periods (.), and underscores (_). Must be a unique map resource name. No spaces allowed. For example, ExampleMap.
|
|
546
550
|
*/
|
|
547
551
|
MapName: ResourceName;
|
|
548
552
|
/**
|
|
549
|
-
* Specifies the pricing plan for your map resource.
|
|
553
|
+
* Specifies the pricing plan for your map resource. For additional details and restrictions on each pricing plan option, see the Amazon Location Service pricing page.
|
|
550
554
|
*/
|
|
551
555
|
PricingPlan: PricingPlan;
|
|
552
556
|
}
|
|
@@ -566,7 +570,7 @@ declare namespace Location {
|
|
|
566
570
|
}
|
|
567
571
|
export interface CreatePlaceIndexRequest {
|
|
568
572
|
/**
|
|
569
|
-
* Specifies the data provider of geospatial data.
|
|
573
|
+
* Specifies the data provider of geospatial data. This field is case-sensitive. Enter the valid values as shown. For example, entering HERE will return an error. Valid values include: Esri Here For additional details on data providers, see the Amazon Location Service data providers page.
|
|
570
574
|
*/
|
|
571
575
|
DataSource: String;
|
|
572
576
|
/**
|
|
@@ -578,11 +582,11 @@ declare namespace Location {
|
|
|
578
582
|
*/
|
|
579
583
|
Description?: ResourceDescription;
|
|
580
584
|
/**
|
|
581
|
-
* The name of the Place index resource. Requirements: Contain only alphanumeric characters (A-Z, a-z, 0-9) , hyphens (-) and underscores (_)
|
|
585
|
+
* The name of the Place index resource. Requirements: Contain only alphanumeric characters (A-Z, a-z, 0-9) , hyphens (-), periods (.), and underscores (_). Must be a unique Place index resource name. No spaces allowed. For example, ExamplePlaceIndex.
|
|
582
586
|
*/
|
|
583
587
|
IndexName: ResourceName;
|
|
584
588
|
/**
|
|
585
|
-
* Specifies the pricing plan for your Place index resource.
|
|
589
|
+
* Specifies the pricing plan for your Place index resource. For additional details and restrictions on each pricing plan option, see the Amazon Location Service pricing page.
|
|
586
590
|
*/
|
|
587
591
|
PricingPlan: PricingPlan;
|
|
588
592
|
}
|
|
@@ -606,11 +610,15 @@ declare namespace Location {
|
|
|
606
610
|
*/
|
|
607
611
|
Description?: ResourceDescription;
|
|
608
612
|
/**
|
|
609
|
-
* Specifies the pricing plan for your tracker resource.
|
|
613
|
+
* Specifies the pricing plan for your tracker resource. For additional details and restrictions on each pricing plan option, see the Amazon Location Service pricing page.
|
|
610
614
|
*/
|
|
611
615
|
PricingPlan: PricingPlan;
|
|
612
616
|
/**
|
|
613
|
-
*
|
|
617
|
+
* Specifies the plan data source. Required if the Mobile Asset Tracking (MAT) or the Mobile Asset Management (MAM) pricing plan is selected. Billing is determined by the resource usage, the associated pricing plan, and data source that was specified. For more information about each pricing plan option and restrictions, see the Amazon Location Service pricing page. Valid Values: Esri | Here
|
|
618
|
+
*/
|
|
619
|
+
PricingPlanDataSource?: String;
|
|
620
|
+
/**
|
|
621
|
+
* The name for the tracker resource. Requirements: Contain only alphanumeric characters (A-Z, a-z, 0-9) , hyphens (-), periods (.), and underscores (_). Must be a unique tracker resource name. No spaces allowed. For example, ExampleTracker.
|
|
614
622
|
*/
|
|
615
623
|
TrackerName: ResourceName;
|
|
616
624
|
}
|
|
@@ -689,6 +697,14 @@ declare namespace Location {
|
|
|
689
697
|
* The optional description for the geofence collection.
|
|
690
698
|
*/
|
|
691
699
|
Description: ResourceDescription;
|
|
700
|
+
/**
|
|
701
|
+
* The pricing plan selected for the specified geofence collection. For additional details and restrictions on each pricing plan option, see the Amazon Location Service pricing page.
|
|
702
|
+
*/
|
|
703
|
+
PricingPlan: PricingPlan;
|
|
704
|
+
/**
|
|
705
|
+
* The data source selected for the geofence collection and associated pricing plan.
|
|
706
|
+
*/
|
|
707
|
+
PricingPlanDataSource?: String;
|
|
692
708
|
/**
|
|
693
709
|
* The timestamp for when the geofence collection was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
|
|
694
710
|
*/
|
|
@@ -725,6 +741,10 @@ declare namespace Location {
|
|
|
725
741
|
* The map style selected from an available provider.
|
|
726
742
|
*/
|
|
727
743
|
MapName: ResourceName;
|
|
744
|
+
/**
|
|
745
|
+
* The pricing plan selected for the specified map resource. <p>For additional details and restrictions on each pricing plan option, see the <a href="https://aws.amazon.com/location/pricing/">Amazon Location Service pricing page</a>.</p>
|
|
746
|
+
*/
|
|
747
|
+
PricingPlan: PricingPlan;
|
|
728
748
|
/**
|
|
729
749
|
* The timestamp for when the map resource was last update in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.
|
|
730
750
|
*/
|
|
@@ -742,7 +762,7 @@ declare namespace Location {
|
|
|
742
762
|
*/
|
|
743
763
|
CreateTime: Timestamp;
|
|
744
764
|
/**
|
|
745
|
-
* The data provider of geospatial data.
|
|
765
|
+
* The data provider of geospatial data. Indicates one of the available providers: Esri Here For additional details on data providers, see the Amazon Location Service data providers page.
|
|
746
766
|
*/
|
|
747
767
|
DataSource: String;
|
|
748
768
|
/**
|
|
@@ -761,6 +781,10 @@ declare namespace Location {
|
|
|
761
781
|
* The name of the Place index resource being described.
|
|
762
782
|
*/
|
|
763
783
|
IndexName: ResourceName;
|
|
784
|
+
/**
|
|
785
|
+
* The pricing plan selected for the specified Place index resource. For additional details and restrictions on each pricing plan option, see the Amazon Location Service pricing page.
|
|
786
|
+
*/
|
|
787
|
+
PricingPlan: PricingPlan;
|
|
764
788
|
/**
|
|
765
789
|
* The timestamp for when the Place index resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.
|
|
766
790
|
*/
|
|
@@ -781,6 +805,14 @@ declare namespace Location {
|
|
|
781
805
|
* The optional description for the tracker resource.
|
|
782
806
|
*/
|
|
783
807
|
Description: ResourceDescription;
|
|
808
|
+
/**
|
|
809
|
+
* The pricing plan selected for the specified tracker resource. For additional details and restrictions on each pricing plan option, see the Amazon Location Service pricing page.
|
|
810
|
+
*/
|
|
811
|
+
PricingPlan: PricingPlan;
|
|
812
|
+
/**
|
|
813
|
+
* The data source selected for the tracker resource and associated pricing plan.
|
|
814
|
+
*/
|
|
815
|
+
PricingPlanDataSource?: String;
|
|
784
816
|
/**
|
|
785
817
|
* The Amazon Resource Name (ARN) for the tracker resource. Used when you need to specify a resource across all AWS.
|
|
786
818
|
*/
|
|
@@ -804,11 +836,11 @@ declare namespace Location {
|
|
|
804
836
|
*/
|
|
805
837
|
Position: Position;
|
|
806
838
|
/**
|
|
807
|
-
* The timestamp for when the tracker resource
|
|
839
|
+
* The timestamp for when the tracker resource received the device position in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.
|
|
808
840
|
*/
|
|
809
841
|
ReceivedTime: Timestamp;
|
|
810
842
|
/**
|
|
811
|
-
* The timestamp
|
|
843
|
+
* The timestamp at which the device's position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.
|
|
812
844
|
*/
|
|
813
845
|
SampleTime: Timestamp;
|
|
814
846
|
}
|
|
@@ -819,11 +851,11 @@ declare namespace Location {
|
|
|
819
851
|
*/
|
|
820
852
|
DeviceId: Id;
|
|
821
853
|
/**
|
|
822
|
-
* The latest device position defined in WGS 84 format: [
|
|
854
|
+
* The latest device position defined in WGS 84 format: [X or longitude, Y or latitude].
|
|
823
855
|
*/
|
|
824
856
|
Position: Position;
|
|
825
857
|
/**
|
|
826
|
-
* The timestamp
|
|
858
|
+
* The timestamp at which the device's position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
|
|
827
859
|
*/
|
|
828
860
|
SampleTime: Timestamp;
|
|
829
861
|
}
|
|
@@ -852,7 +884,7 @@ declare namespace Location {
|
|
|
852
884
|
*/
|
|
853
885
|
DeviceId: Id;
|
|
854
886
|
/**
|
|
855
|
-
* Specify the end time for the position history in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.
|
|
887
|
+
* Specify the end time for the position history in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ. By default, the value will be the time that the request is made. Requirement: The time specified for EndTimeExclusive must be after the time for StartTimeInclusive.
|
|
856
888
|
*/
|
|
857
889
|
EndTimeExclusive?: Timestamp;
|
|
858
890
|
/**
|
|
@@ -860,7 +892,7 @@ declare namespace Location {
|
|
|
860
892
|
*/
|
|
861
893
|
NextToken?: Token;
|
|
862
894
|
/**
|
|
863
|
-
* Specify the start time for the position history in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.
|
|
895
|
+
* Specify the start time for the position history in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ. By default, the value will be 24 hours prior to the time that the request is made. Requirement: The time specified for StartTimeInclusive must be before EndTimeExclusive.
|
|
864
896
|
*/
|
|
865
897
|
StartTimeInclusive?: Timestamp;
|
|
866
898
|
/**
|
|
@@ -880,7 +912,7 @@ declare namespace Location {
|
|
|
880
912
|
}
|
|
881
913
|
export interface GetDevicePositionRequest {
|
|
882
914
|
/**
|
|
883
|
-
* The device whose position you want to
|
|
915
|
+
* The device whose position you want to retrieve.
|
|
884
916
|
*/
|
|
885
917
|
DeviceId: Id;
|
|
886
918
|
/**
|
|
@@ -898,11 +930,11 @@ declare namespace Location {
|
|
|
898
930
|
*/
|
|
899
931
|
Position: Position;
|
|
900
932
|
/**
|
|
901
|
-
* The timestamp for when the tracker resource
|
|
933
|
+
* The timestamp for when the tracker resource received the device position in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.
|
|
902
934
|
*/
|
|
903
935
|
ReceivedTime: Timestamp;
|
|
904
936
|
/**
|
|
905
|
-
* The timestamp
|
|
937
|
+
* The timestamp at which the device's position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.
|
|
906
938
|
*/
|
|
907
939
|
SampleTime: Timestamp;
|
|
908
940
|
}
|
|
@@ -1069,6 +1101,14 @@ declare namespace Location {
|
|
|
1069
1101
|
* The description for the geofence collection
|
|
1070
1102
|
*/
|
|
1071
1103
|
Description: ResourceDescription;
|
|
1104
|
+
/**
|
|
1105
|
+
* The pricing plan for the specified geofence collection. For additional details and restrictions on each pricing plan option, see the Amazon Location Service pricing page.
|
|
1106
|
+
*/
|
|
1107
|
+
PricingPlan: PricingPlan;
|
|
1108
|
+
/**
|
|
1109
|
+
* The data source selected for the geofence collection and associated pricing plan.
|
|
1110
|
+
*/
|
|
1111
|
+
PricingPlanDataSource?: String;
|
|
1072
1112
|
/**
|
|
1073
1113
|
* Specifies a timestamp for when the resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
|
|
1074
1114
|
*/
|
|
@@ -1156,6 +1196,10 @@ declare namespace Location {
|
|
|
1156
1196
|
* The name of the associated map resource.
|
|
1157
1197
|
*/
|
|
1158
1198
|
MapName: ResourceName;
|
|
1199
|
+
/**
|
|
1200
|
+
* The pricing plan for the specified map resource. For additional details and restrictions on each pricing plan option, see the Amazon Location Service pricing page.
|
|
1201
|
+
*/
|
|
1202
|
+
PricingPlan: PricingPlan;
|
|
1159
1203
|
/**
|
|
1160
1204
|
* The timestamp for when the map resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.
|
|
1161
1205
|
*/
|
|
@@ -1189,7 +1233,7 @@ declare namespace Location {
|
|
|
1189
1233
|
*/
|
|
1190
1234
|
CreateTime: Timestamp;
|
|
1191
1235
|
/**
|
|
1192
|
-
* The data provider of geospatial data.
|
|
1236
|
+
* The data provider of geospatial data. Indicates one of the available providers: Esri HERE For additional details on data providers, see the Amazon Location Service data providers page.
|
|
1193
1237
|
*/
|
|
1194
1238
|
DataSource: String;
|
|
1195
1239
|
/**
|
|
@@ -1200,6 +1244,10 @@ declare namespace Location {
|
|
|
1200
1244
|
* The name of the Place index resource.
|
|
1201
1245
|
*/
|
|
1202
1246
|
IndexName: ResourceName;
|
|
1247
|
+
/**
|
|
1248
|
+
* The pricing plan for the specified Place index resource. For additional details and restrictions on each pricing plan option, see the Amazon Location Service pricing page.
|
|
1249
|
+
*/
|
|
1250
|
+
PricingPlan: PricingPlan;
|
|
1203
1251
|
/**
|
|
1204
1252
|
* The timestamp for when the Place index resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.
|
|
1205
1253
|
*/
|
|
@@ -1261,12 +1309,20 @@ declare namespace Location {
|
|
|
1261
1309
|
* The description for the tracker resource.
|
|
1262
1310
|
*/
|
|
1263
1311
|
Description: ResourceDescription;
|
|
1312
|
+
/**
|
|
1313
|
+
* The pricing plan for the specified tracker resource. For additional details and restrictions on each pricing plan option, see the Amazon Location Service pricing page.
|
|
1314
|
+
*/
|
|
1315
|
+
PricingPlan: PricingPlan;
|
|
1316
|
+
/**
|
|
1317
|
+
* The data source selected for the tracker resource and associated pricing plan.
|
|
1318
|
+
*/
|
|
1319
|
+
PricingPlanDataSource?: String;
|
|
1264
1320
|
/**
|
|
1265
1321
|
* The name of the tracker resource.
|
|
1266
1322
|
*/
|
|
1267
1323
|
TrackerName: ResourceName;
|
|
1268
1324
|
/**
|
|
1269
|
-
* The timestamp
|
|
1325
|
+
* The timestamp at which the device's position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.
|
|
1270
1326
|
*/
|
|
1271
1327
|
UpdateTime: Timestamp;
|
|
1272
1328
|
}
|
|
@@ -1336,7 +1392,7 @@ declare namespace Location {
|
|
|
1336
1392
|
*/
|
|
1337
1393
|
GeofenceId: Id;
|
|
1338
1394
|
/**
|
|
1339
|
-
* Contains the polygon details to specify the position of the geofence.
|
|
1395
|
+
* Contains the polygon details to specify the position of the geofence. Each geofence polygon can have a maximum of 1,000 vertices.
|
|
1340
1396
|
*/
|
|
1341
1397
|
Geometry: GeofenceGeometry;
|
|
1342
1398
|
}
|
|
@@ -1396,7 +1452,7 @@ declare namespace Location {
|
|
|
1396
1452
|
}
|
|
1397
1453
|
export interface SearchPlaceIndexForPositionSummary {
|
|
1398
1454
|
/**
|
|
1399
|
-
* The data provider of geospatial data
|
|
1455
|
+
* The data provider of geospatial data. Indicates one of the available providers: Esri HERE For additional details on data providers, see the Amazon Location Service data providers page.
|
|
1400
1456
|
*/
|
|
1401
1457
|
DataSource: String;
|
|
1402
1458
|
/**
|
|
@@ -1450,7 +1506,7 @@ declare namespace Location {
|
|
|
1450
1506
|
*/
|
|
1451
1507
|
BiasPosition?: Position;
|
|
1452
1508
|
/**
|
|
1453
|
-
* The data provider of geospatial data
|
|
1509
|
+
* The data provider of geospatial data. Indicates one of the available providers: Esri HERE For additional details on data providers, see the Amazon Location Service data providers page.
|
|
1454
1510
|
*/
|
|
1455
1511
|
DataSource: String;
|
|
1456
1512
|
/**
|