aws-sdk 2.948.0 → 2.949.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 +8 -1
- package/README.md +1 -1
- package/apis/emr-containers-2020-10-01.min.json +25 -23
- package/apis/health-2016-08-04.min.json +29 -29
- package/apis/location-2020-11-19.min.json +205 -0
- package/apis/robomaker-2018-06-29.min.json +6 -3
- package/clients/directconnect.d.ts +11 -8
- package/clients/emrcontainers.d.ts +12 -2
- package/clients/health.d.ts +3 -2
- package/clients/imagebuilder.d.ts +27 -27
- package/clients/location.d.ts +227 -35
- package/clients/robomaker.d.ts +12 -0
- package/dist/aws-sdk-core-react-native.js +6 -1
- package/dist/aws-sdk-react-native.js +10 -5
- package/dist/aws-sdk.js +213 -3
- package/dist/aws-sdk.min.js +36 -36
- package/lib/core.d.ts +1 -0
- package/lib/core.js +1 -1
- package/lib/json/builder.js +3 -0
- package/lib/json/parser.js +1 -0
- package/lib/model/index.d.ts +4 -0
- package/lib/model/shape.js +1 -0
- package/package.json +1 -1
- package/scripts/lib/ts-generator.js +16 -0
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. Currently not supported — Cross-account configurations, such as creating associations between a tracker resource in one account and a geofence collection in another account.
|
|
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. You can associate up to five geofence collections to each tracker resource. 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. Currently not supported — Cross-account configurations, such as creating associations between a tracker resource in one account and a geofence collection in another account.
|
|
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. You can associate up to five geofence collections to each tracker resource. 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
|
/**
|
|
@@ -36,19 +36,19 @@ declare class Location extends Service {
|
|
|
36
36
|
*/
|
|
37
37
|
batchDeleteGeofence(callback?: (err: AWSError, data: Location.Types.BatchDeleteGeofenceResponse) => void): Request<Location.Types.BatchDeleteGeofenceResponse, AWSError>;
|
|
38
38
|
/**
|
|
39
|
-
* 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,
|
|
39
|
+
* Evaluates device positions against the geofence geometries from a given geofence collection. This operation always returns an empty response because geofences are asynchronously evaluated. The evaluation determines if the device has entered or exited a geofenced area, and then publishes one of the following events to Amazon EventBridge: ENTER if Amazon Location determines that the tracked device has entered a geofenced area. EXIT if Amazon Location determines that the tracked device has exited a geofenced area. The last geofence that a device was observed within is tracked for 30 days after the most recent device position update.
|
|
40
40
|
*/
|
|
41
41
|
batchEvaluateGeofences(params: Location.Types.BatchEvaluateGeofencesRequest, callback?: (err: AWSError, data: Location.Types.BatchEvaluateGeofencesResponse) => void): Request<Location.Types.BatchEvaluateGeofencesResponse, AWSError>;
|
|
42
42
|
/**
|
|
43
|
-
* 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,
|
|
43
|
+
* Evaluates device positions against the geofence geometries from a given geofence collection. This operation always returns an empty response because geofences are asynchronously evaluated. The evaluation determines if the device has entered or exited a geofenced area, and then publishes one of the following events to Amazon EventBridge: ENTER if Amazon Location determines that the tracked device has entered a geofenced area. EXIT if Amazon Location determines that the tracked device has exited a geofenced area. The last geofence that a device was observed within is tracked for 30 days after the most recent device position update.
|
|
44
44
|
*/
|
|
45
45
|
batchEvaluateGeofences(callback?: (err: AWSError, data: Location.Types.BatchEvaluateGeofencesResponse) => void): Request<Location.Types.BatchEvaluateGeofencesResponse, AWSError>;
|
|
46
46
|
/**
|
|
47
|
-
*
|
|
47
|
+
* Lists the latest device positions for requested devices.
|
|
48
48
|
*/
|
|
49
49
|
batchGetDevicePosition(params: Location.Types.BatchGetDevicePositionRequest, callback?: (err: AWSError, data: Location.Types.BatchGetDevicePositionResponse) => void): Request<Location.Types.BatchGetDevicePositionResponse, AWSError>;
|
|
50
50
|
/**
|
|
51
|
-
*
|
|
51
|
+
* Lists the latest device positions for requested devices.
|
|
52
52
|
*/
|
|
53
53
|
batchGetDevicePosition(callback?: (err: AWSError, data: Location.Types.BatchGetDevicePositionResponse) => void): Request<Location.Types.BatchGetDevicePositionResponse, AWSError>;
|
|
54
54
|
/**
|
|
@@ -68,11 +68,11 @@ declare class Location extends Service {
|
|
|
68
68
|
*/
|
|
69
69
|
batchUpdateDevicePosition(callback?: (err: AWSError, data: Location.Types.BatchUpdateDevicePositionResponse) => void): Request<Location.Types.BatchUpdateDevicePositionResponse, AWSError>;
|
|
70
70
|
/**
|
|
71
|
-
* Calculates a route given the following required parameters: DeparturePostiton and DestinationPosition. Requires that you first create
|
|
71
|
+
* Calculates a route given the following required parameters: DeparturePostiton and DestinationPosition. Requires that you first create a route calculator resource By default, a request that doesn't specify a departure time uses the best time of day to travel with the best traffic conditions when calculating the route. Additional options include: Specifying a departure time using either DepartureTime or DepartureNow. This calculates a route based on predictive traffic data at the given time. You can't specify both DepartureTime and DepartureNow in a single request. Specifying both parameters returns an error message. Specifying a travel mode using TravelMode. This lets you specify an additional route preference such as CarModeOptions if traveling by Car, or TruckModeOptions if traveling by Truck.
|
|
72
72
|
*/
|
|
73
73
|
calculateRoute(params: Location.Types.CalculateRouteRequest, callback?: (err: AWSError, data: Location.Types.CalculateRouteResponse) => void): Request<Location.Types.CalculateRouteResponse, AWSError>;
|
|
74
74
|
/**
|
|
75
|
-
* Calculates a route given the following required parameters: DeparturePostiton and DestinationPosition. Requires that you first create
|
|
75
|
+
* Calculates a route given the following required parameters: DeparturePostiton and DestinationPosition. Requires that you first create a route calculator resource By default, a request that doesn't specify a departure time uses the best time of day to travel with the best traffic conditions when calculating the route. Additional options include: Specifying a departure time using either DepartureTime or DepartureNow. This calculates a route based on predictive traffic data at the given time. You can't specify both DepartureTime and DepartureNow in a single request. Specifying both parameters returns an error message. Specifying a travel mode using TravelMode. This lets you specify an additional route preference such as CarModeOptions if traveling by Car, or TruckModeOptions if traveling by Truck.
|
|
76
76
|
*/
|
|
77
77
|
calculateRoute(callback?: (err: AWSError, data: Location.Types.CalculateRouteResponse) => void): Request<Location.Types.CalculateRouteResponse, AWSError>;
|
|
78
78
|
/**
|
|
@@ -260,11 +260,11 @@ declare class Location extends Service {
|
|
|
260
260
|
*/
|
|
261
261
|
getMapTile(callback?: (err: AWSError, data: Location.Types.GetMapTileResponse) => void): Request<Location.Types.GetMapTileResponse, AWSError>;
|
|
262
262
|
/**
|
|
263
|
-
*
|
|
263
|
+
* A batch request to retrieve all device positions.
|
|
264
264
|
*/
|
|
265
265
|
listDevicePositions(params: Location.Types.ListDevicePositionsRequest, callback?: (err: AWSError, data: Location.Types.ListDevicePositionsResponse) => void): Request<Location.Types.ListDevicePositionsResponse, AWSError>;
|
|
266
266
|
/**
|
|
267
|
-
*
|
|
267
|
+
* A batch request to retrieve all device positions.
|
|
268
268
|
*/
|
|
269
269
|
listDevicePositions(callback?: (err: AWSError, data: Location.Types.ListDevicePositionsResponse) => void): Request<Location.Types.ListDevicePositionsResponse, AWSError>;
|
|
270
270
|
/**
|
|
@@ -308,11 +308,11 @@ declare class Location extends Service {
|
|
|
308
308
|
*/
|
|
309
309
|
listRouteCalculators(callback?: (err: AWSError, data: Location.Types.ListRouteCalculatorsResponse) => void): Request<Location.Types.ListRouteCalculatorsResponse, AWSError>;
|
|
310
310
|
/**
|
|
311
|
-
* Returns
|
|
311
|
+
* Returns a list of tags that are applied to the specified Amazon Location resource.
|
|
312
312
|
*/
|
|
313
313
|
listTagsForResource(params: Location.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: Location.Types.ListTagsForResourceResponse) => void): Request<Location.Types.ListTagsForResourceResponse, AWSError>;
|
|
314
314
|
/**
|
|
315
|
-
* Returns
|
|
315
|
+
* Returns a list of tags that are applied to the specified Amazon Location resource.
|
|
316
316
|
*/
|
|
317
317
|
listTagsForResource(callback?: (err: AWSError, data: Location.Types.ListTagsForResourceResponse) => void): Request<Location.Types.ListTagsForResourceResponse, AWSError>;
|
|
318
318
|
/**
|
|
@@ -356,21 +356,61 @@ declare class Location extends Service {
|
|
|
356
356
|
*/
|
|
357
357
|
searchPlaceIndexForText(callback?: (err: AWSError, data: Location.Types.SearchPlaceIndexForTextResponse) => void): Request<Location.Types.SearchPlaceIndexForTextResponse, AWSError>;
|
|
358
358
|
/**
|
|
359
|
-
* Assigns one or more tags (key-value pairs) to the specified Amazon Location Service resource. <p>Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values.</p> <p>
|
|
359
|
+
* Assigns one or more tags (key-value pairs) to the specified Amazon Location Service resource. <p>Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values.</p> <p>You can use the <code>TagResource</code> operation with an Amazon Location Service resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the tags already associated with the resource. If you specify a tag key that's already associated with the resource, the new tag value that you specify replaces the previous value for that tag. </p> <p>You can associate up to 50 tags with a resource.</p>
|
|
360
360
|
*/
|
|
361
361
|
tagResource(params: Location.Types.TagResourceRequest, callback?: (err: AWSError, data: Location.Types.TagResourceResponse) => void): Request<Location.Types.TagResourceResponse, AWSError>;
|
|
362
362
|
/**
|
|
363
|
-
* Assigns one or more tags (key-value pairs) to the specified Amazon Location Service resource. <p>Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values.</p> <p>
|
|
363
|
+
* Assigns one or more tags (key-value pairs) to the specified Amazon Location Service resource. <p>Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values.</p> <p>You can use the <code>TagResource</code> operation with an Amazon Location Service resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the tags already associated with the resource. If you specify a tag key that's already associated with the resource, the new tag value that you specify replaces the previous value for that tag. </p> <p>You can associate up to 50 tags with a resource.</p>
|
|
364
364
|
*/
|
|
365
365
|
tagResource(callback?: (err: AWSError, data: Location.Types.TagResourceResponse) => void): Request<Location.Types.TagResourceResponse, AWSError>;
|
|
366
366
|
/**
|
|
367
|
-
* Removes one or more tags from the specified Amazon Location
|
|
367
|
+
* Removes one or more tags from the specified Amazon Location resource.
|
|
368
368
|
*/
|
|
369
369
|
untagResource(params: Location.Types.UntagResourceRequest, callback?: (err: AWSError, data: Location.Types.UntagResourceResponse) => void): Request<Location.Types.UntagResourceResponse, AWSError>;
|
|
370
370
|
/**
|
|
371
|
-
* Removes one or more tags from the specified Amazon Location
|
|
371
|
+
* Removes one or more tags from the specified Amazon Location resource.
|
|
372
372
|
*/
|
|
373
373
|
untagResource(callback?: (err: AWSError, data: Location.Types.UntagResourceResponse) => void): Request<Location.Types.UntagResourceResponse, AWSError>;
|
|
374
|
+
/**
|
|
375
|
+
* Updates the specified properties of a given geofence collection.
|
|
376
|
+
*/
|
|
377
|
+
updateGeofenceCollection(params: Location.Types.UpdateGeofenceCollectionRequest, callback?: (err: AWSError, data: Location.Types.UpdateGeofenceCollectionResponse) => void): Request<Location.Types.UpdateGeofenceCollectionResponse, AWSError>;
|
|
378
|
+
/**
|
|
379
|
+
* Updates the specified properties of a given geofence collection.
|
|
380
|
+
*/
|
|
381
|
+
updateGeofenceCollection(callback?: (err: AWSError, data: Location.Types.UpdateGeofenceCollectionResponse) => void): Request<Location.Types.UpdateGeofenceCollectionResponse, AWSError>;
|
|
382
|
+
/**
|
|
383
|
+
* Updates the specified properties of a given map resource.
|
|
384
|
+
*/
|
|
385
|
+
updateMap(params: Location.Types.UpdateMapRequest, callback?: (err: AWSError, data: Location.Types.UpdateMapResponse) => void): Request<Location.Types.UpdateMapResponse, AWSError>;
|
|
386
|
+
/**
|
|
387
|
+
* Updates the specified properties of a given map resource.
|
|
388
|
+
*/
|
|
389
|
+
updateMap(callback?: (err: AWSError, data: Location.Types.UpdateMapResponse) => void): Request<Location.Types.UpdateMapResponse, AWSError>;
|
|
390
|
+
/**
|
|
391
|
+
* Updates the specified properties of a given place index resource.
|
|
392
|
+
*/
|
|
393
|
+
updatePlaceIndex(params: Location.Types.UpdatePlaceIndexRequest, callback?: (err: AWSError, data: Location.Types.UpdatePlaceIndexResponse) => void): Request<Location.Types.UpdatePlaceIndexResponse, AWSError>;
|
|
394
|
+
/**
|
|
395
|
+
* Updates the specified properties of a given place index resource.
|
|
396
|
+
*/
|
|
397
|
+
updatePlaceIndex(callback?: (err: AWSError, data: Location.Types.UpdatePlaceIndexResponse) => void): Request<Location.Types.UpdatePlaceIndexResponse, AWSError>;
|
|
398
|
+
/**
|
|
399
|
+
* Updates the specified properties for a given route calculator resource.
|
|
400
|
+
*/
|
|
401
|
+
updateRouteCalculator(params: Location.Types.UpdateRouteCalculatorRequest, callback?: (err: AWSError, data: Location.Types.UpdateRouteCalculatorResponse) => void): Request<Location.Types.UpdateRouteCalculatorResponse, AWSError>;
|
|
402
|
+
/**
|
|
403
|
+
* Updates the specified properties for a given route calculator resource.
|
|
404
|
+
*/
|
|
405
|
+
updateRouteCalculator(callback?: (err: AWSError, data: Location.Types.UpdateRouteCalculatorResponse) => void): Request<Location.Types.UpdateRouteCalculatorResponse, AWSError>;
|
|
406
|
+
/**
|
|
407
|
+
* Updates the specified properties of a given tracker resource.
|
|
408
|
+
*/
|
|
409
|
+
updateTracker(params: Location.Types.UpdateTrackerRequest, callback?: (err: AWSError, data: Location.Types.UpdateTrackerResponse) => void): Request<Location.Types.UpdateTrackerResponse, AWSError>;
|
|
410
|
+
/**
|
|
411
|
+
* Updates the specified properties of a given tracker resource.
|
|
412
|
+
*/
|
|
413
|
+
updateTracker(callback?: (err: AWSError, data: Location.Types.UpdateTrackerResponse) => void): Request<Location.Types.UpdateTrackerResponse, AWSError>;
|
|
374
414
|
}
|
|
375
415
|
declare namespace Location {
|
|
376
416
|
export type Arn = string;
|
|
@@ -667,11 +707,11 @@ declare namespace Location {
|
|
|
667
707
|
export type CalculateRouteRequestWaypointPositionsList = Position[];
|
|
668
708
|
export interface CalculateRouteResponse {
|
|
669
709
|
/**
|
|
670
|
-
* Contains details about each path between a pair of positions included along a route such as: StartPosition, EndPosition, Distance, DurationSeconds, Geometry, and Steps. The number of legs returned corresponds to one
|
|
710
|
+
* Contains details about each path between a pair of positions included along a route such as: StartPosition, EndPosition, Distance, DurationSeconds, Geometry, and Steps. The number of legs returned corresponds to one fewer than the total number of positions in the request. For example, a route with a departure position and destination position returns one leg with the positions snapped to a nearby road: The StartPosition is the departure position. The EndPosition is the destination position. A route with a waypoint between the departure and destination position returns two legs with the positions snapped to a nearby road: Leg 1: The StartPosition is the departure position . The EndPosition is the waypoint positon. Leg 2: The StartPosition is the waypoint position. The EndPosition is the destination position.
|
|
671
711
|
*/
|
|
672
712
|
Legs: LegList;
|
|
673
713
|
/**
|
|
674
|
-
* Contains information about the whole route, such as: RouteBBox, DataSource, Distance, DistanceUnit, and DurationSeconds
|
|
714
|
+
* Contains information about the whole route, such as: RouteBBox, DataSource, Distance, DistanceUnit, and DurationSeconds.
|
|
675
715
|
*/
|
|
676
716
|
Summary: CalculateRouteSummary;
|
|
677
717
|
}
|
|
@@ -693,7 +733,7 @@ declare namespace Location {
|
|
|
693
733
|
*/
|
|
694
734
|
DurationSeconds: CalculateRouteSummaryDurationSecondsDouble;
|
|
695
735
|
/**
|
|
696
|
-
* Specifies a geographical box surrounding a route. Used to zoom into a route when displaying it in a map. For example, [min x, min y, max x, max y]
|
|
736
|
+
* Specifies a geographical box surrounding a route. Used to zoom into a route when displaying it in a map. For example, [min x, min y, max x, max y]. The first 2 bbox parameters describe the lower southwest corner: The first bbox position is the X coordinate or longitude of the lower southwest corner. The second bbox position is the Y coordinate or latitude of the lower southwest corner. The next 2 bbox parameters describe the upper northeast corner: The third bbox position is the X coordinate, or longitude of the upper northeast corner. The fourth bbox position is the Y coordinate, or longitude of the upper northeast corner.
|
|
697
737
|
*/
|
|
698
738
|
RouteBBox: BoundingBox;
|
|
699
739
|
}
|
|
@@ -787,7 +827,7 @@ declare namespace Location {
|
|
|
787
827
|
*/
|
|
788
828
|
CreateTime: Timestamp;
|
|
789
829
|
/**
|
|
790
|
-
* The Amazon Resource Name (ARN) for the map resource. Used
|
|
830
|
+
* The Amazon Resource Name (ARN) for the map resource. Used to specify a resource across all AWS. Format example: arn:aws:geo:region:account-id:maps/ExampleMap
|
|
791
831
|
*/
|
|
792
832
|
MapArn: Arn;
|
|
793
833
|
/**
|
|
@@ -797,11 +837,11 @@ declare namespace Location {
|
|
|
797
837
|
}
|
|
798
838
|
export interface CreatePlaceIndexRequest {
|
|
799
839
|
/**
|
|
800
|
-
* Specifies the data provider of geospatial data. This field is case-sensitive. Enter the valid values as shown. For example, entering HERE
|
|
840
|
+
* Specifies the data provider of geospatial data. This field is case-sensitive. Enter the valid values as shown. For example, entering HERE returns an error. Valid values include: Esri – For additional information about Esri's coverage in your region of interest, see Esri details on geocoding coverage. Here – For additional information about HERE Technologies's coverage in your region of interest, see HERE details on goecoding coverage. Place index resources using HERE Technologies as a data provider can't store results for locations in Japan. For more information, see the AWS Service Terms for Amazon Location Service. For additional information , see Data providers on the Amazon Location Service Developer Guide.
|
|
801
841
|
*/
|
|
802
842
|
DataSource: String;
|
|
803
843
|
/**
|
|
804
|
-
* Specifies the data storage option
|
|
844
|
+
* Specifies the data storage option requesting Places.
|
|
805
845
|
*/
|
|
806
846
|
DataSourceConfiguration?: DataSourceConfiguration;
|
|
807
847
|
/**
|
|
@@ -827,7 +867,7 @@ declare namespace Location {
|
|
|
827
867
|
*/
|
|
828
868
|
CreateTime: Timestamp;
|
|
829
869
|
/**
|
|
830
|
-
* The Amazon Resource Name (ARN) for the place index resource. Used to specify a resource across
|
|
870
|
+
* The Amazon Resource Name (ARN) for the place index resource. Used to specify a resource across AWS. Format example: arn:aws:geo:region:account-id:place-index/ExamplePlaceIndex
|
|
831
871
|
*/
|
|
832
872
|
IndexArn: Arn;
|
|
833
873
|
/**
|
|
@@ -841,7 +881,7 @@ declare namespace Location {
|
|
|
841
881
|
*/
|
|
842
882
|
CalculatorName: ResourceName;
|
|
843
883
|
/**
|
|
844
|
-
* Specifies the data provider of traffic and road network data. This field is case-sensitive. Enter the valid values as shown. For example, entering HERE returns an error. Valid
|
|
884
|
+
* Specifies the data provider of traffic and road network data. This field is case-sensitive. Enter the valid values as shown. For example, entering HERE returns an error. Valid values include: Esri – For additional information about Esri's coverage in your region of interest, see Esri details on street networks and traffic coverage. Here – For additional information about HERE Technologies's coverage in your region of interest, see HERE car routing coverage and HERE truck routing coverage. For additional information , see Data providers on the Amazon Location Service Developer Guide.
|
|
845
885
|
*/
|
|
846
886
|
DataSource: String;
|
|
847
887
|
/**
|
|
@@ -913,7 +953,7 @@ declare namespace Location {
|
|
|
913
953
|
}
|
|
914
954
|
export interface DataSourceConfiguration {
|
|
915
955
|
/**
|
|
916
|
-
* Specifies how the results of an operation will be stored by the caller. Valid values include: SingleUse specifies that the results won't be stored. Storage specifies that the result can be cached or stored in a database.
|
|
956
|
+
* Specifies how the results of an operation will be stored by the caller. Valid values include: SingleUse specifies that the results won't be stored. Storage specifies that the result can be cached or stored in a database. Default value: SingleUse
|
|
917
957
|
*/
|
|
918
958
|
IntendedUse?: IntendedUse;
|
|
919
959
|
}
|
|
@@ -1025,7 +1065,7 @@ declare namespace Location {
|
|
|
1025
1065
|
*/
|
|
1026
1066
|
Description: ResourceDescription;
|
|
1027
1067
|
/**
|
|
1028
|
-
* The Amazon Resource Name (ARN) for the map resource. Used
|
|
1068
|
+
* The Amazon Resource Name (ARN) for the map resource. Used to specify a resource across all AWS. Format example: arn:aws:geo:region:account-id:maps/ExampleMap
|
|
1029
1069
|
*/
|
|
1030
1070
|
MapArn: Arn;
|
|
1031
1071
|
/**
|
|
@@ -1069,7 +1109,7 @@ declare namespace Location {
|
|
|
1069
1109
|
*/
|
|
1070
1110
|
Description: ResourceDescription;
|
|
1071
1111
|
/**
|
|
1072
|
-
* The Amazon Resource Name (ARN) for the place index resource. Used to specify a resource across
|
|
1112
|
+
* The Amazon Resource Name (ARN) for the place index resource. Used to specify a resource across AWS. Format example: arn:aws:geo:region:account-id:place-index/ExamplePlaceIndex
|
|
1073
1113
|
*/
|
|
1074
1114
|
IndexArn: Arn;
|
|
1075
1115
|
/**
|
|
@@ -1321,7 +1361,7 @@ declare namespace Location {
|
|
|
1321
1361
|
}
|
|
1322
1362
|
export interface GetMapGlyphsRequest {
|
|
1323
1363
|
/**
|
|
1324
|
-
* A comma-separated list of fonts to load glyphs from in order of preference
|
|
1364
|
+
* A comma-separated list of fonts to load glyphs from in order of preference. For example, Noto Sans Regular, Arial Unicode. Valid fonts for Esri styles: VectorEsriDarkGrayCanvas – Ubuntu Medium Italic | Ubuntu Medium | Ubuntu Italic | Ubuntu Regular | Ubuntu Bold VectorEsriLightGrayCanvas – Ubuntu Italic | Ubuntu Regular | Ubuntu Light | Ubuntu Bold VectorEsriTopographic – Noto Sans Italic | Noto Sans Regular | Noto Sans Bold | Noto Serif Regular | Roboto Condensed Light Italic VectorEsriStreets – Arial Regular | Arial Italic | Arial Bold VectorEsriNavigation – Arial Regular | Arial Italic | Arial Bold Valid fonts for HERE Technologies styles: VectorHereBerlin – Fira GO Regular | Fira GO Bold
|
|
1325
1365
|
*/
|
|
1326
1366
|
FontStack: String;
|
|
1327
1367
|
/**
|
|
@@ -1730,13 +1770,13 @@ declare namespace Location {
|
|
|
1730
1770
|
export type ListRouteCalculatorsResponseEntryList = ListRouteCalculatorsResponseEntry[];
|
|
1731
1771
|
export interface ListTagsForResourceRequest {
|
|
1732
1772
|
/**
|
|
1733
|
-
* The Amazon Resource Name (ARN) of the resource whose tags you want to retrieve.
|
|
1773
|
+
* The Amazon Resource Name (ARN) of the resource whose tags you want to retrieve. Format example: arn:aws:geo:region:account-id:resourcetype/ExampleResource
|
|
1734
1774
|
*/
|
|
1735
1775
|
ResourceArn: Arn;
|
|
1736
1776
|
}
|
|
1737
1777
|
export interface ListTagsForResourceResponse {
|
|
1738
1778
|
/**
|
|
1739
|
-
*
|
|
1779
|
+
* Tags that have been applied to the specified resource. Tags are mapped from the tag key to the tag value: "TagKey" : "TagValue". Format example: {"tag1" : "value1", "tag2" : "value2"}
|
|
1740
1780
|
*/
|
|
1741
1781
|
Tags?: TagMap;
|
|
1742
1782
|
}
|
|
@@ -1815,7 +1855,7 @@ declare namespace Location {
|
|
|
1815
1855
|
export type ListTrackersResponseEntryList = ListTrackersResponseEntry[];
|
|
1816
1856
|
export interface MapConfiguration {
|
|
1817
1857
|
/**
|
|
1818
|
-
* Specifies the map style selected from an available data provider. Valid styles: RasterEsriImagery,
|
|
1858
|
+
* Specifies the map style selected from an available data provider. For additional information on each map style and to preview each map style, see Esri map styles and HERE map styles. Valid Esri styles: VectorEsriDarkGrayCanvas – The Esri Dark Gray Canvas map style. A vector basemap with a dark gray, neutral background with minimal colors, labels, and features that's designed to draw attention to your thematic content. RasterEsriImagery – The Esri Imagery map style. A raster basemap that provides one meter or better satellite and aerial imagery in many parts of the world and lower resolution satellite imagery worldwide. VectorEsriLightGrayCanvas – The Esri Light Gray Canvas map style, which provides a detailed vector basemap with a light gray, neutral background style with minimal colors, labels, and features that's designed to draw attention to your thematic content. VectorEsriTopographic – The Esri Light map style, which provides a detailed vector basemap with a classic Esri map style. VectorEsriStreets – The Esri World Streets map style, which provides a detailed vector basemap for the world symbolized with a classic Esri street map style. The vector tile layer is similar in content and style to the World Street Map raster map. VectorEsriNavigation – The Esri World Navigation map style, which provides a detailed basemap for the world symbolized with a custom navigation map style that's designed for use during the day in mobile devices. Valid HERE Technologies styles: VectorHereBerlin – The HERE Berlin map style is a high contrast detailed base map of the world that blends 3D and 2D rendering. When using HERE as your data provider, and selecting the Style VectorHereBerlin, you may not use HERE Technologies maps for Asset Management. See the AWS Service Terms for Amazon Location Service.
|
|
1819
1859
|
*/
|
|
1820
1860
|
Style: MapStyle;
|
|
1821
1861
|
}
|
|
@@ -2050,11 +2090,11 @@ declare namespace Location {
|
|
|
2050
2090
|
export type TagMap = {[key: string]: TagValue};
|
|
2051
2091
|
export interface TagResourceRequest {
|
|
2052
2092
|
/**
|
|
2053
|
-
* The Amazon Resource Name (ARN) of the resource whose tags you want to update.
|
|
2093
|
+
* The Amazon Resource Name (ARN) of the resource whose tags you want to update. Format example: arn:aws:geo:region:account-id:resourcetype/ExampleResource
|
|
2054
2094
|
*/
|
|
2055
2095
|
ResourceArn: Arn;
|
|
2056
2096
|
/**
|
|
2057
|
-
*
|
|
2097
|
+
* Tags that have been applied to the specified resource. Tags are mapped from the tag key to the tag value: "TagKey" : "TagValue". Format example: {"tag1" : "value1", "tag2" : "value2"}
|
|
2058
2098
|
*/
|
|
2059
2099
|
Tags: TagMap;
|
|
2060
2100
|
}
|
|
@@ -2098,16 +2138,168 @@ declare namespace Location {
|
|
|
2098
2138
|
export type TruckWeightTotalDouble = number;
|
|
2099
2139
|
export interface UntagResourceRequest {
|
|
2100
2140
|
/**
|
|
2101
|
-
* The Amazon Resource Name (ARN) of the resource from which you want to remove tags.
|
|
2141
|
+
* The Amazon Resource Name (ARN) of the resource from which you want to remove tags. Format example: arn:aws:geo:region:account-id:resourcetype/ExampleResource
|
|
2102
2142
|
*/
|
|
2103
2143
|
ResourceArn: Arn;
|
|
2104
2144
|
/**
|
|
2105
|
-
* The list of tag keys to remove from the resource.
|
|
2145
|
+
* The list of tag keys to remove from the specified resource.
|
|
2106
2146
|
*/
|
|
2107
2147
|
TagKeys: TagKeys;
|
|
2108
2148
|
}
|
|
2109
2149
|
export interface UntagResourceResponse {
|
|
2110
2150
|
}
|
|
2151
|
+
export interface UpdateGeofenceCollectionRequest {
|
|
2152
|
+
/**
|
|
2153
|
+
* The name of the geofence collection to update.
|
|
2154
|
+
*/
|
|
2155
|
+
CollectionName: ResourceName;
|
|
2156
|
+
/**
|
|
2157
|
+
* Updates the description for the geofence collection.
|
|
2158
|
+
*/
|
|
2159
|
+
Description?: ResourceDescription;
|
|
2160
|
+
/**
|
|
2161
|
+
* Updates the pricing plan for the geofence collection. For more information about each pricing plan option restrictions, see Amazon Location Service pricing.
|
|
2162
|
+
*/
|
|
2163
|
+
PricingPlan?: PricingPlan;
|
|
2164
|
+
/**
|
|
2165
|
+
* Updates the data provider for the geofence collection. A required value for the following pricing plans: MobileAssetTracking| MobileAssetManagement For more information about data providers and pricing plans, see the Amazon Location Service product page. This can only be updated when updating the PricingPlan in the same request. Amazon Location Service uses PricingPlanDataSource to calculate billing for your geofence collection. Your data won't be shared with the data provider, and will remain in your AWS account and Region unless you move it.
|
|
2166
|
+
*/
|
|
2167
|
+
PricingPlanDataSource?: String;
|
|
2168
|
+
}
|
|
2169
|
+
export interface UpdateGeofenceCollectionResponse {
|
|
2170
|
+
/**
|
|
2171
|
+
* The Amazon Resource Name (ARN) of the updated geofence collection. Used to specify a resource across AWS. Format example: arn:aws:geo:region:account-id:geofence-collection/ExampleGeofenceCollection
|
|
2172
|
+
*/
|
|
2173
|
+
CollectionArn: Arn;
|
|
2174
|
+
/**
|
|
2175
|
+
* The name of the updated geofence collection.
|
|
2176
|
+
*/
|
|
2177
|
+
CollectionName: ResourceName;
|
|
2178
|
+
/**
|
|
2179
|
+
* The time when the geofence collection was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ
|
|
2180
|
+
*/
|
|
2181
|
+
UpdateTime: Timestamp;
|
|
2182
|
+
}
|
|
2183
|
+
export interface UpdateMapRequest {
|
|
2184
|
+
/**
|
|
2185
|
+
* Updates the description for the map resource.
|
|
2186
|
+
*/
|
|
2187
|
+
Description?: ResourceDescription;
|
|
2188
|
+
/**
|
|
2189
|
+
* The name of the map resource to update.
|
|
2190
|
+
*/
|
|
2191
|
+
MapName: ResourceName;
|
|
2192
|
+
/**
|
|
2193
|
+
* Updates the pricing plan for the map resource. For more information about each pricing plan option restrictions, see Amazon Location Service pricing.
|
|
2194
|
+
*/
|
|
2195
|
+
PricingPlan?: PricingPlan;
|
|
2196
|
+
}
|
|
2197
|
+
export interface UpdateMapResponse {
|
|
2198
|
+
/**
|
|
2199
|
+
* The Amazon Resource Name (ARN) of the updated map resource. Used to specify a resource across AWS. Format example: arn:aws:geo:region:account-id:maps/ExampleMap
|
|
2200
|
+
*/
|
|
2201
|
+
MapArn: Arn;
|
|
2202
|
+
/**
|
|
2203
|
+
* The name of the updated map resource.
|
|
2204
|
+
*/
|
|
2205
|
+
MapName: ResourceName;
|
|
2206
|
+
/**
|
|
2207
|
+
* The timestamp for when the map resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.
|
|
2208
|
+
*/
|
|
2209
|
+
UpdateTime: Timestamp;
|
|
2210
|
+
}
|
|
2211
|
+
export interface UpdatePlaceIndexRequest {
|
|
2212
|
+
/**
|
|
2213
|
+
* Updates the data storage option for the place index resource.
|
|
2214
|
+
*/
|
|
2215
|
+
DataSourceConfiguration?: DataSourceConfiguration;
|
|
2216
|
+
/**
|
|
2217
|
+
* Updates the description for the place index resource.
|
|
2218
|
+
*/
|
|
2219
|
+
Description?: ResourceDescription;
|
|
2220
|
+
/**
|
|
2221
|
+
* The name of the place index resource to update.
|
|
2222
|
+
*/
|
|
2223
|
+
IndexName: ResourceName;
|
|
2224
|
+
/**
|
|
2225
|
+
* Updates the pricing plan for the place index resource. For more information about each pricing plan option restrictions, see Amazon Location Service pricing.
|
|
2226
|
+
*/
|
|
2227
|
+
PricingPlan?: PricingPlan;
|
|
2228
|
+
}
|
|
2229
|
+
export interface UpdatePlaceIndexResponse {
|
|
2230
|
+
/**
|
|
2231
|
+
* The Amazon Resource Name (ARN) of the upated place index resource. Used to specify a resource across AWS. Format example: arn:aws:geo:region:account-id:place- index/ExamplePlaceIndex
|
|
2232
|
+
*/
|
|
2233
|
+
IndexArn: Arn;
|
|
2234
|
+
/**
|
|
2235
|
+
* The name of the updated place index resource.
|
|
2236
|
+
*/
|
|
2237
|
+
IndexName: ResourceName;
|
|
2238
|
+
/**
|
|
2239
|
+
* The timestamp for when the place index resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.
|
|
2240
|
+
*/
|
|
2241
|
+
UpdateTime: Timestamp;
|
|
2242
|
+
}
|
|
2243
|
+
export interface UpdateRouteCalculatorRequest {
|
|
2244
|
+
/**
|
|
2245
|
+
* The name of the route calculator resource to update.
|
|
2246
|
+
*/
|
|
2247
|
+
CalculatorName: ResourceName;
|
|
2248
|
+
/**
|
|
2249
|
+
* Updates the description for the route calculator resource.
|
|
2250
|
+
*/
|
|
2251
|
+
Description?: ResourceDescription;
|
|
2252
|
+
/**
|
|
2253
|
+
* Updates the pricing plan for the route calculator resource. For more information about each pricing plan option restrictions, see Amazon Location Service pricing.
|
|
2254
|
+
*/
|
|
2255
|
+
PricingPlan?: PricingPlan;
|
|
2256
|
+
}
|
|
2257
|
+
export interface UpdateRouteCalculatorResponse {
|
|
2258
|
+
/**
|
|
2259
|
+
* The Amazon Resource Name (ARN) of the updated route calculator resource. Used to specify a resource across AWS. Format example: arn:aws:geo:region:account-id:route- calculator/ExampleCalculator
|
|
2260
|
+
*/
|
|
2261
|
+
CalculatorArn: Arn;
|
|
2262
|
+
/**
|
|
2263
|
+
* The name of the updated route calculator resource.
|
|
2264
|
+
*/
|
|
2265
|
+
CalculatorName: ResourceName;
|
|
2266
|
+
/**
|
|
2267
|
+
* The timestamp for when the route calculator was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.
|
|
2268
|
+
*/
|
|
2269
|
+
UpdateTime: Timestamp;
|
|
2270
|
+
}
|
|
2271
|
+
export interface UpdateTrackerRequest {
|
|
2272
|
+
/**
|
|
2273
|
+
* Updates the description for the tracker resource.
|
|
2274
|
+
*/
|
|
2275
|
+
Description?: ResourceDescription;
|
|
2276
|
+
/**
|
|
2277
|
+
* Updates the pricing plan for the tracker resource. For more information about each pricing plan option restrictions, see Amazon Location Service pricing.
|
|
2278
|
+
*/
|
|
2279
|
+
PricingPlan?: PricingPlan;
|
|
2280
|
+
/**
|
|
2281
|
+
* Updates the data provider for the tracker resource. A required value for the following pricing plans: MobileAssetTracking| MobileAssetManagement For more information about data providers and pricing plans, see the Amazon Location Service product page This can only be updated when updating the PricingPlan in the same request. Amazon Location Service uses PricingPlanDataSource to calculate billing for your tracker resource. Your data won't be shared with the data provider, and will remain in your AWS account and Region unless you move it.
|
|
2282
|
+
*/
|
|
2283
|
+
PricingPlanDataSource?: String;
|
|
2284
|
+
/**
|
|
2285
|
+
* The name of the tracker resource to update.
|
|
2286
|
+
*/
|
|
2287
|
+
TrackerName: ResourceName;
|
|
2288
|
+
}
|
|
2289
|
+
export interface UpdateTrackerResponse {
|
|
2290
|
+
/**
|
|
2291
|
+
* The Amazon Resource Name (ARN) of the updated tracker resource. Used to specify a resource across AWS. Format example: arn:aws:geo:region:account-id:tracker/ExampleTracker
|
|
2292
|
+
*/
|
|
2293
|
+
TrackerArn: Arn;
|
|
2294
|
+
/**
|
|
2295
|
+
* The name of the updated tracker resource.
|
|
2296
|
+
*/
|
|
2297
|
+
TrackerName: ResourceName;
|
|
2298
|
+
/**
|
|
2299
|
+
* The timestamp for when the tracker resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.
|
|
2300
|
+
*/
|
|
2301
|
+
UpdateTime: Timestamp;
|
|
2302
|
+
}
|
|
2111
2303
|
export type VehicleWeightUnit = "Kilograms"|"Pounds"|string;
|
|
2112
2304
|
/**
|
|
2113
2305
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
package/clients/robomaker.d.ts
CHANGED
|
@@ -1884,6 +1884,10 @@ declare namespace RoboMaker {
|
|
|
1884
1884
|
* A map that contains tag keys and tag values that are attached to the world.
|
|
1885
1885
|
*/
|
|
1886
1886
|
tags?: TagMap;
|
|
1887
|
+
/**
|
|
1888
|
+
* Returns the JSON formatted string that describes the contents of your world.
|
|
1889
|
+
*/
|
|
1890
|
+
worldDescriptionBody?: Json;
|
|
1887
1891
|
}
|
|
1888
1892
|
export interface DescribeWorldTemplateRequest {
|
|
1889
1893
|
/**
|
|
@@ -1916,6 +1920,10 @@ declare namespace RoboMaker {
|
|
|
1916
1920
|
* A map that contains tag keys and tag values that are attached to the world template.
|
|
1917
1921
|
*/
|
|
1918
1922
|
tags?: TagMap;
|
|
1923
|
+
/**
|
|
1924
|
+
* The version of the world template that you're using.
|
|
1925
|
+
*/
|
|
1926
|
+
version?: GenericString;
|
|
1919
1927
|
}
|
|
1920
1928
|
export type EnvironmentVariableKey = string;
|
|
1921
1929
|
export type EnvironmentVariableMap = {[key: string]: EnvironmentVariableValue};
|
|
@@ -3082,6 +3090,10 @@ declare namespace RoboMaker {
|
|
|
3082
3090
|
* The name of the template.
|
|
3083
3091
|
*/
|
|
3084
3092
|
name?: TemplateName;
|
|
3093
|
+
/**
|
|
3094
|
+
* The version of the template that you're using.
|
|
3095
|
+
*/
|
|
3096
|
+
version?: GenericString;
|
|
3085
3097
|
}
|
|
3086
3098
|
export interface Tool {
|
|
3087
3099
|
/**
|
|
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
83
83
|
/**
|
|
84
84
|
* @constant
|
|
85
85
|
*/
|
|
86
|
-
VERSION: '2.
|
|
86
|
+
VERSION: '2.949.0',
|
|
87
87
|
|
|
88
88
|
/**
|
|
89
89
|
* @api private
|
|
@@ -2043,6 +2043,9 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
2043
2043
|
}
|
|
2044
2044
|
|
|
2045
2045
|
function translateStructure(structure, shape) {
|
|
2046
|
+
if (shape.isDocument) {
|
|
2047
|
+
return structure;
|
|
2048
|
+
}
|
|
2046
2049
|
var struct = {};
|
|
2047
2050
|
util.each(structure, function(name, value) {
|
|
2048
2051
|
var memberShape = shape.members[name];
|
|
@@ -2109,6 +2112,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
2109
2112
|
|
|
2110
2113
|
function translateStructure(structure, shape) {
|
|
2111
2114
|
if (structure == null) return undefined;
|
|
2115
|
+
if (shape.isDocument) return structure;
|
|
2112
2116
|
|
|
2113
2117
|
var struct = {};
|
|
2114
2118
|
var shapeMembers = shape.members;
|
|
@@ -2630,6 +2634,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
2630
2634
|
property(this, 'memberNames', []);
|
|
2631
2635
|
property(this, 'required', []);
|
|
2632
2636
|
property(this, 'isRequired', function() { return false; });
|
|
2637
|
+
property(this, 'isDocument', Boolean(shape.document));
|
|
2633
2638
|
}
|
|
2634
2639
|
|
|
2635
2640
|
if (shape.members) {
|