aws-sdk 2.1000.0 → 2.1001.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 +10 -1
- package/README.md +1 -1
- package/apis/backup-2018-11-15.min.json +54 -42
- package/apis/ec2-2016-11-15.min.json +1212 -879
- package/apis/ec2-2016-11-15.paginators.json +6 -0
- package/apis/ec2-2016-11-15.waiters2.json +6 -0
- package/apis/glue-2017-03-31.min.json +3 -0
- package/apis/location-2020-11-19.min.json +9 -6
- package/apis/workmail-2017-10-01.min.json +67 -27
- package/clients/applicationautoscaling.d.ts +38 -38
- package/clients/backup.d.ts +22 -10
- package/clients/ec2.d.ts +377 -2
- package/clients/glue.d.ts +7 -0
- package/clients/location.d.ts +37 -24
- package/clients/workmail.d.ts +41 -0
- package/dist/aws-sdk-core-react-native.js +1 -2
- package/dist/aws-sdk-react-native.js +8 -24
- package/dist/aws-sdk.js +1236 -904
- package/dist/aws-sdk.min.js +66 -66
- package/lib/core.js +1 -1
- package/lib/event_listeners.js +0 -1
- package/lib/services/s3.js +0 -15
- package/package.json +1 -1
- package/scripts/region-checker/allowlist.js +7 -7
package/clients/location.d.ts
CHANGED
|
@@ -60,11 +60,11 @@ declare class Location extends Service {
|
|
|
60
60
|
*/
|
|
61
61
|
batchPutGeofence(callback?: (err: AWSError, data: Location.Types.BatchPutGeofenceResponse) => void): Request<Location.Types.BatchPutGeofenceResponse, AWSError>;
|
|
62
62
|
/**
|
|
63
|
-
* Uploads position update data for one or more devices to a tracker resource. Amazon Location uses the data when
|
|
63
|
+
* Uploads position update data for one or more devices to a tracker resource. Amazon Location uses the data when it reports the last known device position and position history. Amazon Location retains location data for 30 days. Position updates are handled based on the PositionFiltering property of the tracker. When PositionFiltering is set to TimeBased, updates are evaluated against linked geofence collections, and location data is stored at a maximum of one position per 30 second interval. If your update frequency is more often than every 30 seconds, only one update per 30 seconds is stored for each unique device ID. When PositionFiltering is set to DistanceBased filtering, location data is stored and evaluated against linked geofence collections only if the device has moved more than 30 m (98.4 ft).
|
|
64
64
|
*/
|
|
65
65
|
batchUpdateDevicePosition(params: Location.Types.BatchUpdateDevicePositionRequest, callback?: (err: AWSError, data: Location.Types.BatchUpdateDevicePositionResponse) => void): Request<Location.Types.BatchUpdateDevicePositionResponse, AWSError>;
|
|
66
66
|
/**
|
|
67
|
-
* Uploads position update data for one or more devices to a tracker resource. Amazon Location uses the data when
|
|
67
|
+
* Uploads position update data for one or more devices to a tracker resource. Amazon Location uses the data when it reports the last known device position and position history. Amazon Location retains location data for 30 days. Position updates are handled based on the PositionFiltering property of the tracker. When PositionFiltering is set to TimeBased, updates are evaluated against linked geofence collections, and location data is stored at a maximum of one position per 30 second interval. If your update frequency is more often than every 30 seconds, only one update per 30 seconds is stored for each unique device ID. When PositionFiltering is set to DistanceBased filtering, location data is stored and evaluated against linked geofence collections only if the device has moved more than 30 m (98.4 ft).
|
|
68
68
|
*/
|
|
69
69
|
batchUpdateDevicePosition(callback?: (err: AWSError, data: Location.Types.BatchUpdateDevicePositionResponse) => void): Request<Location.Types.BatchUpdateDevicePositionResponse, AWSError>;
|
|
70
70
|
/**
|
|
@@ -672,7 +672,7 @@ declare namespace Location {
|
|
|
672
672
|
*/
|
|
673
673
|
DepartNow?: Boolean;
|
|
674
674
|
/**
|
|
675
|
-
* The start position for the route. Defined in WGS 84 format: [longitude, latitude]. For example, [-123.115, 49.285] If you specify a departure that's not located on a road, Amazon Location moves the position to the nearest road. Valid Values: [-180 to 180,-90 to 90]
|
|
675
|
+
* The start position for the route. Defined in WGS 84 format: [longitude, latitude]. For example, [-123.115, 49.285] If you specify a departure that's not located on a road, Amazon Location moves the position to the nearest road. If Esri is the provider for your route calculator, specifying a route that is longer than 400 km returns a 400 RoutesValidationException error. Valid Values: [-180 to 180,-90 to 90]
|
|
676
676
|
*/
|
|
677
677
|
DeparturePosition: Position;
|
|
678
678
|
/**
|
|
@@ -700,7 +700,7 @@ declare namespace Location {
|
|
|
700
700
|
*/
|
|
701
701
|
TruckModeOptions?: CalculateRouteTruckModeOptions;
|
|
702
702
|
/**
|
|
703
|
-
* Specifies an ordered list of up to 23 intermediate positions to include along a route between the departure position and destination position. For example, from the DeparturePosition [-123.115, 49.285], the route follows the order that the waypoint positions are given [[-122.757, 49.0021],[-122.349, 47.620]] If you specify a waypoint position that's not located on a road, Amazon Location moves the position to the nearest road. Specifying more than 23 waypoints returns a 400 ValidationException error. Valid Values: [-180 to 180,-90 to 90]
|
|
703
|
+
* Specifies an ordered list of up to 23 intermediate positions to include along a route between the departure position and destination position. For example, from the DeparturePosition [-123.115, 49.285], the route follows the order that the waypoint positions are given [[-122.757, 49.0021],[-122.349, 47.620]] If you specify a waypoint position that's not located on a road, Amazon Location moves the position to the nearest road. Specifying more than 23 waypoints returns a 400 ValidationException error. If Esri is the provider for your route calculator, specifying a route that is longer than 400 km returns a 400 RoutesValidationException error. Valid Values: [-180 to 180,-90 to 90]
|
|
704
704
|
*/
|
|
705
705
|
WaypointPositions?: CalculateRouteRequestWaypointPositionsList;
|
|
706
706
|
}
|
|
@@ -721,7 +721,7 @@ declare namespace Location {
|
|
|
721
721
|
*/
|
|
722
722
|
DataSource: String;
|
|
723
723
|
/**
|
|
724
|
-
* The total distance covered by the route. The sum of the distance travelled between every stop on the route.
|
|
724
|
+
* The total distance covered by the route. The sum of the distance travelled between every stop on the route. If Esri is the data source for the route calculator, the route distance can’t be greater than 400 km. If the route exceeds 400 km, the response is a 400 RoutesValidationException error.
|
|
725
725
|
*/
|
|
726
726
|
Distance: CalculateRouteSummaryDistanceDouble;
|
|
727
727
|
/**
|
|
@@ -733,7 +733,7 @@ declare namespace Location {
|
|
|
733
733
|
*/
|
|
734
734
|
DurationSeconds: CalculateRouteSummaryDurationSecondsDouble;
|
|
735
735
|
/**
|
|
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
|
|
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 latitude of the upper northeast corner.
|
|
737
737
|
*/
|
|
738
738
|
RouteBBox: BoundingBox;
|
|
739
739
|
}
|
|
@@ -813,7 +813,7 @@ declare namespace Location {
|
|
|
813
813
|
*/
|
|
814
814
|
MapName: ResourceName;
|
|
815
815
|
/**
|
|
816
|
-
* Specifies the pricing plan for your map resource. For additional details and restrictions on each pricing plan option, see
|
|
816
|
+
* Specifies the pricing plan for your map resource. For additional details and restrictions on each pricing plan option, see Amazon Location Service pricing.
|
|
817
817
|
*/
|
|
818
818
|
PricingPlan: PricingPlan;
|
|
819
819
|
/**
|
|
@@ -837,7 +837,7 @@ declare namespace Location {
|
|
|
837
837
|
}
|
|
838
838
|
export interface CreatePlaceIndexRequest {
|
|
839
839
|
/**
|
|
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'
|
|
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' 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.
|
|
841
841
|
*/
|
|
842
842
|
DataSource: String;
|
|
843
843
|
/**
|
|
@@ -853,7 +853,7 @@ declare namespace Location {
|
|
|
853
853
|
*/
|
|
854
854
|
IndexName: ResourceName;
|
|
855
855
|
/**
|
|
856
|
-
* Specifies the pricing plan for your place index resource. For additional details and restrictions on each pricing plan option, see
|
|
856
|
+
* Specifies the pricing plan for your place index resource. For additional details and restrictions on each pricing plan option, see Amazon Location Service pricing.
|
|
857
857
|
*/
|
|
858
858
|
PricingPlan: PricingPlan;
|
|
859
859
|
/**
|
|
@@ -881,7 +881,7 @@ declare namespace Location {
|
|
|
881
881
|
*/
|
|
882
882
|
CalculatorName: ResourceName;
|
|
883
883
|
/**
|
|
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'
|
|
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. Route calculators that use Esri as a data source only calculate routes that are shorter than 400 km. 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' 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.
|
|
885
885
|
*/
|
|
886
886
|
DataSource: String;
|
|
887
887
|
/**
|
|
@@ -921,11 +921,15 @@ declare namespace Location {
|
|
|
921
921
|
*/
|
|
922
922
|
KmsKeyId?: KmsKeyId;
|
|
923
923
|
/**
|
|
924
|
-
* Specifies the
|
|
924
|
+
* Specifies the position filtering for the tracker resource. Valid values: TimeBased - Location updates are evaluated against linked geofence collections, but not every location update is stored. If your update frequency is more often than 30 seconds, only one update per 30 seconds is stored for each unique device ID. DistanceBased - If the device has moved less than 30 m (98.4 ft), location updates are ignored. Location updates within this distance are neither evaluated against linked geofence collections, nor stored. This helps control costs by reducing the number of geofence evaluations and device positions to retrieve. Distance-based filtering can also reduce the jitter effect when displaying device trajectory on a map. This field is optional. If not specified, the default value is TimeBased.
|
|
925
|
+
*/
|
|
926
|
+
PositionFiltering?: PositionFiltering;
|
|
927
|
+
/**
|
|
928
|
+
* Specifies the pricing plan for the tracker resource. For additional details and restrictions on each pricing plan option, see Amazon Location Service pricing.
|
|
925
929
|
*/
|
|
926
930
|
PricingPlan: PricingPlan;
|
|
927
931
|
/**
|
|
928
|
-
* Specifies the data provider for the tracker resource. 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. Amazon Location Service only uses PricingPlanDataSource to calculate billing for your tracker resource. Your data will not be shared with the data provider, and will remain in your AWS account or Region unless you move it. Valid
|
|
932
|
+
* Specifies the data provider for the tracker resource. 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. Amazon Location Service only uses PricingPlanDataSource to calculate billing for your tracker resource. Your data will not be shared with the data provider, and will remain in your AWS account or Region unless you move it. Valid values: Esri | Here
|
|
929
933
|
*/
|
|
930
934
|
PricingPlanDataSource?: String;
|
|
931
935
|
/**
|
|
@@ -1073,7 +1077,7 @@ declare namespace Location {
|
|
|
1073
1077
|
*/
|
|
1074
1078
|
MapName: ResourceName;
|
|
1075
1079
|
/**
|
|
1076
|
-
* The pricing plan selected for the specified map resource. <p>For additional details and restrictions on each pricing plan option, see
|
|
1080
|
+
* The pricing plan selected for the specified map resource. <p>For additional details and restrictions on each pricing plan option, see <a href="https://aws.amazon.com/location/pricing/">Amazon Location Service pricing</a>.</p>
|
|
1077
1081
|
*/
|
|
1078
1082
|
PricingPlan: PricingPlan;
|
|
1079
1083
|
/**
|
|
@@ -1097,7 +1101,7 @@ declare namespace Location {
|
|
|
1097
1101
|
*/
|
|
1098
1102
|
CreateTime: Timestamp;
|
|
1099
1103
|
/**
|
|
1100
|
-
* The data provider of geospatial data. Indicates one of the available providers: Esri Here For additional details on data providers, see
|
|
1104
|
+
* The data provider of geospatial data. Indicates one of the available providers: Esri Here For additional details on data providers, see Amazon Location Service data providers.
|
|
1101
1105
|
*/
|
|
1102
1106
|
DataSource: String;
|
|
1103
1107
|
/**
|
|
@@ -1117,7 +1121,7 @@ declare namespace Location {
|
|
|
1117
1121
|
*/
|
|
1118
1122
|
IndexName: ResourceName;
|
|
1119
1123
|
/**
|
|
1120
|
-
* The pricing plan selected for the specified place index resource. For additional details and restrictions on each pricing plan option, see
|
|
1124
|
+
* The pricing plan selected for the specified place index resource. For additional details and restrictions on each pricing plan option, see Amazon Location Service pricing.
|
|
1121
1125
|
*/
|
|
1122
1126
|
PricingPlan: PricingPlan;
|
|
1123
1127
|
/**
|
|
@@ -1189,7 +1193,11 @@ declare namespace Location {
|
|
|
1189
1193
|
*/
|
|
1190
1194
|
KmsKeyId?: KmsKeyId;
|
|
1191
1195
|
/**
|
|
1192
|
-
* The
|
|
1196
|
+
* The position filtering method of the tracker resource.
|
|
1197
|
+
*/
|
|
1198
|
+
PositionFiltering?: PositionFiltering;
|
|
1199
|
+
/**
|
|
1200
|
+
* The pricing plan selected for the specified tracker resource. For additional details and restrictions on each pricing plan option, see Amazon Location Service pricing.
|
|
1193
1201
|
*/
|
|
1194
1202
|
PricingPlan: PricingPlan;
|
|
1195
1203
|
/**
|
|
@@ -1361,7 +1369,7 @@ declare namespace Location {
|
|
|
1361
1369
|
}
|
|
1362
1370
|
export interface GetMapGlyphsRequest {
|
|
1363
1371
|
/**
|
|
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
|
|
1372
|
+
* A comma-separated list of fonts to load glyphs from in order of preference. For example, Noto Sans Regular, Arial Unicode. Valid fonts stacks 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 font stacks for HERE Technologies styles: VectorHereBerlin – Fira GO Regular | Fira GO Bold
|
|
1365
1373
|
*/
|
|
1366
1374
|
FontStack: String;
|
|
1367
1375
|
/**
|
|
@@ -1663,7 +1671,7 @@ declare namespace Location {
|
|
|
1663
1671
|
*/
|
|
1664
1672
|
MapName: ResourceName;
|
|
1665
1673
|
/**
|
|
1666
|
-
* The pricing plan for the specified map resource. For additional details and restrictions on each pricing plan option, see
|
|
1674
|
+
* The pricing plan for the specified map resource. For additional details and restrictions on each pricing plan option, see Amazon Location Service pricing.
|
|
1667
1675
|
*/
|
|
1668
1676
|
PricingPlan: PricingPlan;
|
|
1669
1677
|
/**
|
|
@@ -1699,7 +1707,7 @@ declare namespace Location {
|
|
|
1699
1707
|
*/
|
|
1700
1708
|
CreateTime: Timestamp;
|
|
1701
1709
|
/**
|
|
1702
|
-
* The data provider of geospatial data. Indicates one of the available providers: Esri Here For additional details on data providers, see
|
|
1710
|
+
* The data provider of geospatial data. Indicates one of the available providers: Esri Here For additional details on data providers, see Amazon Location Service data providers.
|
|
1703
1711
|
*/
|
|
1704
1712
|
DataSource: String;
|
|
1705
1713
|
/**
|
|
@@ -1711,7 +1719,7 @@ declare namespace Location {
|
|
|
1711
1719
|
*/
|
|
1712
1720
|
IndexName: ResourceName;
|
|
1713
1721
|
/**
|
|
1714
|
-
* The pricing plan for the specified place index resource. For additional details and restrictions on each pricing plan option, see
|
|
1722
|
+
* The pricing plan for the specified place index resource. For additional details and restrictions on each pricing plan option, see Amazon Location Service pricing.
|
|
1715
1723
|
*/
|
|
1716
1724
|
PricingPlan: PricingPlan;
|
|
1717
1725
|
/**
|
|
@@ -1836,7 +1844,7 @@ declare namespace Location {
|
|
|
1836
1844
|
*/
|
|
1837
1845
|
Description: ResourceDescription;
|
|
1838
1846
|
/**
|
|
1839
|
-
* The pricing plan for the specified tracker resource. For additional details and restrictions on each pricing plan option, see
|
|
1847
|
+
* The pricing plan for the specified tracker resource. For additional details and restrictions on each pricing plan option, see Amazon Location Service pricing.
|
|
1840
1848
|
*/
|
|
1841
1849
|
PricingPlan: PricingPlan;
|
|
1842
1850
|
/**
|
|
@@ -1855,7 +1863,7 @@ declare namespace Location {
|
|
|
1855
1863
|
export type ListTrackersResponseEntryList = ListTrackersResponseEntry[];
|
|
1856
1864
|
export interface MapConfiguration {
|
|
1857
1865
|
/**
|
|
1858
|
-
* Specifies the map style selected from an available data provider.
|
|
1866
|
+
* Specifies the map style selected from an available data provider. Valid Esri map 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 map 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.
|
|
1859
1867
|
*/
|
|
1860
1868
|
Style: MapStyle;
|
|
1861
1869
|
}
|
|
@@ -1907,6 +1915,7 @@ declare namespace Location {
|
|
|
1907
1915
|
}
|
|
1908
1916
|
export type PlaceIndexSearchResultLimit = number;
|
|
1909
1917
|
export type Position = Double[];
|
|
1918
|
+
export type PositionFiltering = "TimeBased"|"DistanceBased"|string;
|
|
1910
1919
|
export type PricingPlan = "RequestBasedUsage"|"MobileAssetTracking"|"MobileAssetManagement"|string;
|
|
1911
1920
|
export interface PutGeofenceRequest {
|
|
1912
1921
|
/**
|
|
@@ -1978,7 +1987,7 @@ declare namespace Location {
|
|
|
1978
1987
|
}
|
|
1979
1988
|
export interface SearchPlaceIndexForPositionSummary {
|
|
1980
1989
|
/**
|
|
1981
|
-
* The data provider of geospatial data. Indicates one of the available providers: Esri HERE For additional details on data providers, see
|
|
1990
|
+
* The data provider of geospatial data. Indicates one of the available providers: Esri HERE For additional details on data providers, see Amazon Location Service data providers.
|
|
1982
1991
|
*/
|
|
1983
1992
|
DataSource: String;
|
|
1984
1993
|
/**
|
|
@@ -2032,7 +2041,7 @@ declare namespace Location {
|
|
|
2032
2041
|
*/
|
|
2033
2042
|
BiasPosition?: Position;
|
|
2034
2043
|
/**
|
|
2035
|
-
* The data provider of geospatial data. Indicates one of the available providers: Esri HERE For additional details on data providers, see
|
|
2044
|
+
* The data provider of geospatial data. Indicates one of the available providers: Esri HERE For additional details on data providers, see Amazon Location Service data providers.
|
|
2036
2045
|
*/
|
|
2037
2046
|
DataSource: String;
|
|
2038
2047
|
/**
|
|
@@ -2273,6 +2282,10 @@ declare namespace Location {
|
|
|
2273
2282
|
* Updates the description for the tracker resource.
|
|
2274
2283
|
*/
|
|
2275
2284
|
Description?: ResourceDescription;
|
|
2285
|
+
/**
|
|
2286
|
+
* Updates the position filtering for the tracker resource. Valid values: TimeBased - Location updates are evaluated against linked geofence collections, but not every location update is stored. If your update frequency is more often than 30 seconds, only one update per 30 seconds is stored for each unique device ID. DistanceBased - If the device has moved less than 30 m (98.4 ft), location updates are ignored. Location updates within this distance are neither evaluated against linked geofence collections, nor stored. This helps control costs by reducing the number of geofence evaluations and device positions to retrieve. Distance-based filtering can also reduce the jitter effect when displaying device trajectory on a map.
|
|
2287
|
+
*/
|
|
2288
|
+
PositionFiltering?: PositionFiltering;
|
|
2276
2289
|
/**
|
|
2277
2290
|
* Updates the pricing plan for the tracker resource. For more information about each pricing plan option restrictions, see Amazon Location Service pricing.
|
|
2278
2291
|
*/
|
package/clients/workmail.d.ts
CHANGED
|
@@ -179,6 +179,14 @@ declare class WorkMail extends Service {
|
|
|
179
179
|
* Returns the data available for the group.
|
|
180
180
|
*/
|
|
181
181
|
describeGroup(callback?: (err: AWSError, data: WorkMail.Types.DescribeGroupResponse) => void): Request<WorkMail.Types.DescribeGroupResponse, AWSError>;
|
|
182
|
+
/**
|
|
183
|
+
* Lists the settings in a DMARC policy for a specified organization.
|
|
184
|
+
*/
|
|
185
|
+
describeInboundDmarcSettings(params: WorkMail.Types.DescribeInboundDmarcSettingsRequest, callback?: (err: AWSError, data: WorkMail.Types.DescribeInboundDmarcSettingsResponse) => void): Request<WorkMail.Types.DescribeInboundDmarcSettingsResponse, AWSError>;
|
|
186
|
+
/**
|
|
187
|
+
* Lists the settings in a DMARC policy for a specified organization.
|
|
188
|
+
*/
|
|
189
|
+
describeInboundDmarcSettings(callback?: (err: AWSError, data: WorkMail.Types.DescribeInboundDmarcSettingsResponse) => void): Request<WorkMail.Types.DescribeInboundDmarcSettingsResponse, AWSError>;
|
|
182
190
|
/**
|
|
183
191
|
* Describes the current status of a mailbox export job.
|
|
184
192
|
*/
|
|
@@ -379,6 +387,14 @@ declare class WorkMail extends Service {
|
|
|
379
387
|
* Adds a new access control rule for the specified organization. The rule allows or denies access to the organization for the specified IPv4 addresses, access protocol actions, and user IDs. Adding a new rule with the same name as an existing rule replaces the older rule.
|
|
380
388
|
*/
|
|
381
389
|
putAccessControlRule(callback?: (err: AWSError, data: WorkMail.Types.PutAccessControlRuleResponse) => void): Request<WorkMail.Types.PutAccessControlRuleResponse, AWSError>;
|
|
390
|
+
/**
|
|
391
|
+
* Enables or disables a DMARC policy for a given organization.
|
|
392
|
+
*/
|
|
393
|
+
putInboundDmarcSettings(params: WorkMail.Types.PutInboundDmarcSettingsRequest, callback?: (err: AWSError, data: WorkMail.Types.PutInboundDmarcSettingsResponse) => void): Request<WorkMail.Types.PutInboundDmarcSettingsResponse, AWSError>;
|
|
394
|
+
/**
|
|
395
|
+
* Enables or disables a DMARC policy for a given organization.
|
|
396
|
+
*/
|
|
397
|
+
putInboundDmarcSettings(callback?: (err: AWSError, data: WorkMail.Types.PutInboundDmarcSettingsResponse) => void): Request<WorkMail.Types.PutInboundDmarcSettingsResponse, AWSError>;
|
|
382
398
|
/**
|
|
383
399
|
* Sets permissions for a user, group, or resource. This replaces any pre-existing permissions.
|
|
384
400
|
*/
|
|
@@ -579,6 +595,7 @@ declare namespace WorkMail {
|
|
|
579
595
|
AutoDeclineConflictingRequests?: Boolean;
|
|
580
596
|
}
|
|
581
597
|
export type Boolean = boolean;
|
|
598
|
+
export type BooleanObject = boolean;
|
|
582
599
|
export interface CancelMailboxExportJobRequest {
|
|
583
600
|
/**
|
|
584
601
|
* The idempotency token for the client request.
|
|
@@ -965,6 +982,18 @@ declare namespace WorkMail {
|
|
|
965
982
|
*/
|
|
966
983
|
DisabledDate?: Timestamp;
|
|
967
984
|
}
|
|
985
|
+
export interface DescribeInboundDmarcSettingsRequest {
|
|
986
|
+
/**
|
|
987
|
+
* Lists the ID of the given organization.
|
|
988
|
+
*/
|
|
989
|
+
OrganizationId: OrganizationId;
|
|
990
|
+
}
|
|
991
|
+
export interface DescribeInboundDmarcSettingsResponse {
|
|
992
|
+
/**
|
|
993
|
+
* Lists the enforcement setting of the applied policy.
|
|
994
|
+
*/
|
|
995
|
+
Enforced?: Boolean;
|
|
996
|
+
}
|
|
968
997
|
export interface DescribeMailboxExportJobRequest {
|
|
969
998
|
/**
|
|
970
999
|
* The mailbox export job ID.
|
|
@@ -1969,6 +1998,18 @@ declare namespace WorkMail {
|
|
|
1969
1998
|
}
|
|
1970
1999
|
export interface PutAccessControlRuleResponse {
|
|
1971
2000
|
}
|
|
2001
|
+
export interface PutInboundDmarcSettingsRequest {
|
|
2002
|
+
/**
|
|
2003
|
+
* The ID of the organization that you are applying the DMARC policy to.
|
|
2004
|
+
*/
|
|
2005
|
+
OrganizationId: OrganizationId;
|
|
2006
|
+
/**
|
|
2007
|
+
* Enforces or suspends a policy after it's applied.
|
|
2008
|
+
*/
|
|
2009
|
+
Enforced: BooleanObject;
|
|
2010
|
+
}
|
|
2011
|
+
export interface PutInboundDmarcSettingsResponse {
|
|
2012
|
+
}
|
|
1972
2013
|
export interface PutMailboxPermissionsRequest {
|
|
1973
2014
|
/**
|
|
1974
2015
|
* The identifier of the organization under which the user, group, or resource exists.
|
|
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
83
83
|
/**
|
|
84
84
|
* @constant
|
|
85
85
|
*/
|
|
86
|
-
VERSION: '2.
|
|
86
|
+
VERSION: '2.1001.0',
|
|
87
87
|
|
|
88
88
|
/**
|
|
89
89
|
* @api private
|
|
@@ -6644,7 +6644,6 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
6644
6644
|
operation.httpChecksumRequired &&
|
|
6645
6645
|
req.service.config.computeChecksums &&
|
|
6646
6646
|
isNonStreamingPayload &&
|
|
6647
|
-
req.service.getSignerClass(req) === AWS.Signers.V4 &&
|
|
6648
6647
|
!headers['Content-MD5']
|
|
6649
6648
|
) {
|
|
6650
6649
|
var md5 = AWS.util.crypto.md5(body, 'base64');
|