aws-sdk 2.997.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 +28 -1
- package/README.md +1 -1
- package/apis/account-2021-02-01.examples.json +5 -0
- package/apis/account-2021-02-01.min.json +123 -0
- package/apis/account-2021-02-01.paginators.json +4 -0
- package/apis/apprunner-2020-05-15.min.json +10 -10
- package/apis/backup-2018-11-15.min.json +54 -42
- package/apis/cloudcontrol-2021-09-30.examples.json +5 -0
- package/apis/cloudcontrol-2021-09-30.min.json +271 -0
- package/apis/cloudcontrol-2021-09-30.paginators.json +14 -0
- package/apis/cloudcontrol-2021-09-30.waiters2.json +31 -0
- package/apis/codebuild-2016-10-06.min.json +74 -73
- package/apis/dataexchange-2017-07-25.min.json +277 -38
- package/apis/dataexchange-2017-07-25.paginators.json +6 -0
- 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/kms-2014-11-01.examples.json +608 -8
- package/apis/location-2020-11-19.min.json +9 -6
- package/apis/macie2-2020-01-01.min.json +79 -67
- package/apis/metadata.json +6 -0
- package/apis/network-firewall-2020-11-12.min.json +65 -31
- package/apis/ssm-2014-11-06.min.json +3 -0
- package/apis/synthetics-2017-10-11.min.json +39 -9
- package/apis/workmail-2017-10-01.min.json +179 -27
- package/apis/workmail-2017-10-01.paginators.json +5 -0
- package/apis/workspaces-2015-04-08.min.json +83 -50
- package/clients/account.d.ts +136 -0
- package/clients/account.js +18 -0
- package/clients/all.d.ts +2 -0
- package/clients/all.js +3 -1
- package/clients/applicationautoscaling.d.ts +38 -38
- package/clients/apprunner.d.ts +55 -54
- package/clients/backup.d.ts +22 -10
- package/clients/cloudcontrol.d.ts +385 -0
- package/clients/cloudcontrol.js +19 -0
- package/clients/codebuild.d.ts +8 -3
- package/clients/dataexchange.d.ts +226 -2
- package/clients/ec2.d.ts +377 -2
- package/clients/glue.d.ts +7 -0
- package/clients/kms.d.ts +2 -2
- package/clients/location.d.ts +37 -24
- package/clients/macie2.d.ts +29 -12
- package/clients/networkfirewall.d.ts +61 -10
- package/clients/ssm.d.ts +7 -3
- package/clients/synthetics.d.ts +40 -0
- package/clients/workmail.d.ts +214 -0
- package/clients/workspaces.d.ts +87 -40
- package/dist/aws-sdk-core-react-native.js +2 -3
- package/dist/aws-sdk-react-native.js +102 -37
- package/dist/aws-sdk.js +1319 -977
- package/dist/aws-sdk.min.js +77 -77
- package/lib/config_service_placeholders.d.ts +4 -0
- 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/macie2.d.ts
CHANGED
|
@@ -659,7 +659,7 @@ declare namespace Macie2 {
|
|
|
659
659
|
}
|
|
660
660
|
export interface BucketCountByEncryptionType {
|
|
661
661
|
/**
|
|
662
|
-
* The total number of buckets that use an
|
|
662
|
+
* The total number of buckets that use an KMS key to encrypt new objects by default, either an Amazon Web Services managed key or a customer managed key. These buckets use KMS encryption (SSE-KMS) by default.
|
|
663
663
|
*/
|
|
664
664
|
kmsManaged?: __long;
|
|
665
665
|
/**
|
|
@@ -710,7 +710,7 @@ declare namespace Macie2 {
|
|
|
710
710
|
export type BucketCriteria = {[key: string]: BucketCriteriaAdditionalProperties};
|
|
711
711
|
export interface BucketCriteriaAdditionalProperties {
|
|
712
712
|
/**
|
|
713
|
-
* The value for the property matches (equals) the specified value. If you specify multiple values, Macie uses OR logic to join the values.
|
|
713
|
+
* The value for the property matches (equals) the specified value. If you specify multiple values, Amazon Macie uses OR logic to join the values.
|
|
714
714
|
*/
|
|
715
715
|
eq?: __listOf__string;
|
|
716
716
|
/**
|
|
@@ -781,6 +781,14 @@ declare namespace Macie2 {
|
|
|
781
781
|
* The total storage size, in bytes, of the objects that Amazon Macie can analyze in the bucket. These objects use a supported storage class and have a file name extension for a supported file or storage format. If versioning is enabled for the bucket, Macie calculates this value based on the size of the latest version of each applicable object in the bucket. This value doesn't reflect the storage size of all versions of each applicable object in the bucket.
|
|
782
782
|
*/
|
|
783
783
|
classifiableSizeInBytes?: __long;
|
|
784
|
+
/**
|
|
785
|
+
* Specifies the error code for an error that prevented Amazon Macie from retrieving and processing information about the bucket and the bucket's objects. If this value is ACCESS_DENIED, Macie doesn't have permission to retrieve the information. For example, the bucket has a restrictive bucket policy and Amazon S3 denied the request. If this value is null, Macie was able to retrieve and process the information.
|
|
786
|
+
*/
|
|
787
|
+
errorCode?: BucketMetadataErrorCode;
|
|
788
|
+
/**
|
|
789
|
+
* A brief description of the error (errorCode) that prevented Amazon Macie from retrieving and processing information about the bucket and the bucket's objects. This value is null if Macie was able to retrieve and process the information.
|
|
790
|
+
*/
|
|
791
|
+
errorMessage?: __string;
|
|
784
792
|
/**
|
|
785
793
|
* Specifies whether any one-time or recurring classification jobs are configured to analyze data in the bucket, and, if so, the details of the job that ran most recently.
|
|
786
794
|
*/
|
|
@@ -822,7 +830,7 @@ declare namespace Macie2 {
|
|
|
822
830
|
*/
|
|
823
831
|
sizeInBytes?: __long;
|
|
824
832
|
/**
|
|
825
|
-
* The total storage size, in bytes, of the objects that are compressed (.gz, .gzip, .zip) files in the bucket. If versioning is enabled for the bucket, Macie calculates this value based on the size of the latest version of each applicable object in the bucket. This value doesn't reflect the storage size of all versions of each applicable object in the bucket.
|
|
833
|
+
* The total storage size, in bytes, of the objects that are compressed (.gz, .gzip, .zip) files in the bucket. If versioning is enabled for the bucket, Amazon Macie calculates this value based on the size of the latest version of each applicable object in the bucket. This value doesn't reflect the storage size of all versions of each applicable object in the bucket.
|
|
826
834
|
*/
|
|
827
835
|
sizeInBytesCompressed?: __long;
|
|
828
836
|
/**
|
|
@@ -842,6 +850,7 @@ declare namespace Macie2 {
|
|
|
842
850
|
*/
|
|
843
851
|
versioning?: __boolean;
|
|
844
852
|
}
|
|
853
|
+
export type BucketMetadataErrorCode = "ACCESS_DENIED"|string;
|
|
845
854
|
export interface BucketPermissionConfiguration {
|
|
846
855
|
/**
|
|
847
856
|
* The account-level permissions settings that apply to the bucket.
|
|
@@ -874,11 +883,11 @@ declare namespace Macie2 {
|
|
|
874
883
|
}
|
|
875
884
|
export interface BucketServerSideEncryption {
|
|
876
885
|
/**
|
|
877
|
-
* The Amazon Resource Name (ARN) or unique identifier (key ID) for the
|
|
886
|
+
* The Amazon Resource Name (ARN) or unique identifier (key ID) for the KMS key that's used by default to encrypt objects that are added to the bucket. This value is null if the bucket uses an Amazon S3 managed key to encrypt new objects or the bucket doesn't encrypt new objects by default.
|
|
878
887
|
*/
|
|
879
888
|
kmsMasterKeyId?: __string;
|
|
880
889
|
/**
|
|
881
|
-
* The type of server-side encryption that's used by default when storing new objects in the bucket. Possible values are: AES256 - New objects are encrypted with an Amazon S3 managed key
|
|
890
|
+
* The type of server-side encryption that's used by default when storing new objects in the bucket. Possible values are: AES256 - New objects are encrypted with an Amazon S3 managed key. They use SSE-S3 encryption. aws:kms - New objects are encrypted with an KMS key (kmsMasterKeyId), either an Amazon Web Services managed key or a customer managed key. They use SSE-KMS encryption. NONE - New objects aren't encrypted by default. Default encryption is disabled for the bucket.
|
|
882
891
|
*/
|
|
883
892
|
type?: Type;
|
|
884
893
|
}
|
|
@@ -1729,11 +1738,11 @@ declare namespace Macie2 {
|
|
|
1729
1738
|
*/
|
|
1730
1739
|
objectCount?: __long;
|
|
1731
1740
|
/**
|
|
1732
|
-
* The total storage size, in bytes, of the buckets. If versioning is enabled for any of the buckets, Macie calculates this value based on the size of the latest version of each object in those buckets. This value doesn't reflect the storage size of all versions of the objects in the buckets.
|
|
1741
|
+
* The total storage size, in bytes, of the buckets. If versioning is enabled for any of the buckets, Amazon Macie calculates this value based on the size of the latest version of each object in those buckets. This value doesn't reflect the storage size of all versions of the objects in the buckets.
|
|
1733
1742
|
*/
|
|
1734
1743
|
sizeInBytes?: __long;
|
|
1735
1744
|
/**
|
|
1736
|
-
* The total storage size, in bytes, of the objects that are compressed (.gz, .gzip, .zip) files in the buckets. If versioning is enabled for any of the buckets, Macie calculates this value based on the size of the latest version of each applicable object in those buckets. This value doesn't reflect the storage size of all versions of the applicable objects in the buckets.
|
|
1745
|
+
* The total storage size, in bytes, of the objects that are compressed (.gz, .gzip, .zip) files in the buckets. If versioning is enabled for any of the buckets, Amazon Macie calculates this value based on the size of the latest version of each applicable object in those buckets. This value doesn't reflect the storage size of all versions of the applicable objects in the buckets.
|
|
1737
1746
|
*/
|
|
1738
1747
|
sizeInBytesCompressed?: __long;
|
|
1739
1748
|
/**
|
|
@@ -2504,6 +2513,14 @@ declare namespace Macie2 {
|
|
|
2504
2513
|
* The total storage size, in bytes, of the objects that Amazon Macie can analyze in the bucket. These objects use a supported storage class and have a file name extension for a supported file or storage format. If versioning is enabled for the bucket, Macie calculates this value based on the size of the latest version of each applicable object in the bucket. This value doesn't reflect the storage size of all versions of each applicable object in the bucket.
|
|
2505
2514
|
*/
|
|
2506
2515
|
classifiableSizeInBytes?: __long;
|
|
2516
|
+
/**
|
|
2517
|
+
* Specifies the error code for an error that prevented Amazon Macie from retrieving and processing information about the bucket and the bucket's objects. If this value is ACCESS_DENIED, Macie doesn't have permission to retrieve the information. For example, the bucket has a restrictive bucket policy and Amazon S3 denied the request. If this value is null, Macie was able to retrieve and process the information.
|
|
2518
|
+
*/
|
|
2519
|
+
errorCode?: BucketMetadataErrorCode;
|
|
2520
|
+
/**
|
|
2521
|
+
* A brief description of the error (errorCode) that prevented Amazon Macie from retrieving and processing information about the bucket and the bucket's objects. This value is null if Macie was able to retrieve and process the information.
|
|
2522
|
+
*/
|
|
2523
|
+
errorMessage?: __string;
|
|
2507
2524
|
/**
|
|
2508
2525
|
* Specifies whether any one-time or recurring classification jobs are configured to analyze objects in the bucket, and, if so, the details of the job that ran most recently.
|
|
2509
2526
|
*/
|
|
@@ -2521,7 +2538,7 @@ declare namespace Macie2 {
|
|
|
2521
2538
|
*/
|
|
2522
2539
|
sizeInBytes?: __long;
|
|
2523
2540
|
/**
|
|
2524
|
-
* The total storage size, in bytes, of the objects that are compressed (.gz, .gzip, .zip) files in the bucket. If versioning is enabled for the bucket, Macie calculates this value based on the size of the latest version of each applicable object in the bucket. This value doesn't reflect the storage size of all versions of each applicable object in the bucket.
|
|
2541
|
+
* The total storage size, in bytes, of the objects that are compressed (.gz, .gzip, .zip) files in the bucket. If versioning is enabled for the bucket, Amazon Macie calculates this value based on the size of the latest version of each applicable object in the bucket. This value doesn't reflect the storage size of all versions of each applicable object in the bucket.
|
|
2525
2542
|
*/
|
|
2526
2543
|
sizeInBytesCompressed?: __long;
|
|
2527
2544
|
/**
|
|
@@ -2586,11 +2603,11 @@ declare namespace Macie2 {
|
|
|
2586
2603
|
}
|
|
2587
2604
|
export interface ObjectCountByEncryptionType {
|
|
2588
2605
|
/**
|
|
2589
|
-
* The total number of objects that are encrypted with a customer-
|
|
2606
|
+
* The total number of objects that are encrypted with a customer-provided key. The objects use customer-provided server-side encryption (SSE-C).
|
|
2590
2607
|
*/
|
|
2591
2608
|
customerManaged?: __long;
|
|
2592
2609
|
/**
|
|
2593
|
-
* The total number of objects that are encrypted with an
|
|
2610
|
+
* The total number of objects that are encrypted with an KMS key, either an Amazon Web Services managed key or a customer managed key. The objects use KMS encryption (SSE-KMS).
|
|
2594
2611
|
*/
|
|
2595
2612
|
kmsManaged?: __long;
|
|
2596
2613
|
/**
|
|
@@ -2817,7 +2834,7 @@ declare namespace Macie2 {
|
|
|
2817
2834
|
*/
|
|
2818
2835
|
keyPrefix?: __string;
|
|
2819
2836
|
/**
|
|
2820
|
-
* The Amazon Resource Name (ARN) of the
|
|
2837
|
+
* The Amazon Resource Name (ARN) of the KMS key to use for encryption of the results. This must be the ARN of an existing, symmetric, customer managed KMS key that's in the same Amazon Web Services Region as the bucket.
|
|
2821
2838
|
*/
|
|
2822
2839
|
kmsKeyArn: __string;
|
|
2823
2840
|
}
|
|
@@ -3029,7 +3046,7 @@ declare namespace Macie2 {
|
|
|
3029
3046
|
*/
|
|
3030
3047
|
encryptionType?: EncryptionType;
|
|
3031
3048
|
/**
|
|
3032
|
-
* The Amazon Resource Name (ARN) or unique identifier (key ID) for the
|
|
3049
|
+
* The Amazon Resource Name (ARN) or unique identifier (key ID) for the KMS key that's used to encrypt data in the bucket or the object. This value is null if an KMS key isn't used to encrypt the data.
|
|
3033
3050
|
*/
|
|
3034
3051
|
kmsMasterKeyId?: __string;
|
|
3035
3052
|
}
|
|
@@ -773,9 +773,17 @@ declare namespace NetworkFirewall {
|
|
|
773
773
|
*/
|
|
774
774
|
StatelessCustomActions?: CustomActions;
|
|
775
775
|
/**
|
|
776
|
-
* References to the
|
|
776
|
+
* References to the stateful rule groups that are used in the policy. These define the inspection criteria in stateful rules.
|
|
777
777
|
*/
|
|
778
778
|
StatefulRuleGroupReferences?: StatefulRuleGroupReferences;
|
|
779
|
+
/**
|
|
780
|
+
* The default actions to take on a packet that doesn't match any stateful rules.
|
|
781
|
+
*/
|
|
782
|
+
StatefulDefaultActions?: StatefulActions;
|
|
783
|
+
/**
|
|
784
|
+
* Additional options governing how Network Firewall handles stateful rules. The stateful rule groups that you use in your policy must have stateful rule options settings that are compatible with these settings.
|
|
785
|
+
*/
|
|
786
|
+
StatefulEngineOptions?: StatefulEngineOptions;
|
|
779
787
|
}
|
|
780
788
|
export interface FirewallPolicyMetadata {
|
|
781
789
|
/**
|
|
@@ -812,6 +820,18 @@ declare namespace NetworkFirewall {
|
|
|
812
820
|
* The key:value pairs to associate with the resource.
|
|
813
821
|
*/
|
|
814
822
|
Tags?: TagList;
|
|
823
|
+
/**
|
|
824
|
+
* The number of capacity units currently consumed by the policy's stateless rules.
|
|
825
|
+
*/
|
|
826
|
+
ConsumedStatelessRuleCapacity?: RuleCapacity;
|
|
827
|
+
/**
|
|
828
|
+
* The number of capacity units currently consumed by the policy's stateful rules.
|
|
829
|
+
*/
|
|
830
|
+
ConsumedStatefulRuleCapacity?: RuleCapacity;
|
|
831
|
+
/**
|
|
832
|
+
* The number of firewalls that are associated with this firewall policy.
|
|
833
|
+
*/
|
|
834
|
+
NumberOfAssociations?: NumberOfAssociations;
|
|
815
835
|
}
|
|
816
836
|
export interface FirewallStatus {
|
|
817
837
|
/**
|
|
@@ -843,7 +863,7 @@ declare namespace NetworkFirewall {
|
|
|
843
863
|
*/
|
|
844
864
|
Source: Source;
|
|
845
865
|
/**
|
|
846
|
-
* The source port to inspect for. You can specify an individual port, for example 1994 and you can specify a port range, for example 1990
|
|
866
|
+
* The source port to inspect for. You can specify an individual port, for example 1994 and you can specify a port range, for example 1990:1994. To match with any port, specify ANY.
|
|
847
867
|
*/
|
|
848
868
|
SourcePort: Port;
|
|
849
869
|
/**
|
|
@@ -855,7 +875,7 @@ declare namespace NetworkFirewall {
|
|
|
855
875
|
*/
|
|
856
876
|
Destination: Destination;
|
|
857
877
|
/**
|
|
858
|
-
* The destination port to inspect for. You can specify an individual port, for example 1994 and you can specify a port range, for example 1990
|
|
878
|
+
* The destination port to inspect for. You can specify an individual port, for example 1994 and you can specify a port range, for example 1990:1994. To match with any port, specify ANY.
|
|
859
879
|
*/
|
|
860
880
|
DestinationPort: Port;
|
|
861
881
|
}
|
|
@@ -989,11 +1009,11 @@ declare namespace NetworkFirewall {
|
|
|
989
1009
|
*/
|
|
990
1010
|
Destinations?: Addresses;
|
|
991
1011
|
/**
|
|
992
|
-
* The source ports to inspect for. If not specified, this matches with any source port. This setting is only used for protocols 6 (TCP) and 17 (UDP). You can specify individual ports, for example 1994 and you can specify port ranges, for example 1990
|
|
1012
|
+
* The source ports to inspect for. If not specified, this matches with any source port. This setting is only used for protocols 6 (TCP) and 17 (UDP). You can specify individual ports, for example 1994 and you can specify port ranges, for example 1990:1994.
|
|
993
1013
|
*/
|
|
994
1014
|
SourcePorts?: PortRanges;
|
|
995
1015
|
/**
|
|
996
|
-
* The destination ports to inspect for. If not specified, this matches with any destination port. This setting is only used for protocols 6 (TCP) and 17 (UDP). You can specify individual ports, for example 1994 and you can specify port ranges, for example 1990
|
|
1016
|
+
* The destination ports to inspect for. If not specified, this matches with any destination port. This setting is only used for protocols 6 (TCP) and 17 (UDP). You can specify individual ports, for example 1994 and you can specify port ranges, for example 1990:1994.
|
|
997
1017
|
*/
|
|
998
1018
|
DestinationPorts?: PortRanges;
|
|
999
1019
|
/**
|
|
@@ -1005,6 +1025,7 @@ declare namespace NetworkFirewall {
|
|
|
1005
1025
|
*/
|
|
1006
1026
|
TCPFlags?: TCPFlags;
|
|
1007
1027
|
}
|
|
1028
|
+
export type NumberOfAssociations = number;
|
|
1008
1029
|
export type PaginationMaxResults = number;
|
|
1009
1030
|
export type PaginationToken = string;
|
|
1010
1031
|
export interface PerObjectStatus {
|
|
@@ -1084,6 +1105,10 @@ declare namespace NetworkFirewall {
|
|
|
1084
1105
|
* The stateful rules or stateless rules for the rule group.
|
|
1085
1106
|
*/
|
|
1086
1107
|
RulesSource: RulesSource;
|
|
1108
|
+
/**
|
|
1109
|
+
* Additional options governing how Network Firewall handles stateful rules. The policies where you use your stateful rule group must have stateful rule options settings that are compatible with these settings.
|
|
1110
|
+
*/
|
|
1111
|
+
StatefulRuleOptions?: StatefulRuleOptions;
|
|
1087
1112
|
}
|
|
1088
1113
|
export interface RuleGroupMetadata {
|
|
1089
1114
|
/**
|
|
@@ -1128,6 +1153,14 @@ declare namespace NetworkFirewall {
|
|
|
1128
1153
|
* The key:value pairs to associate with the resource.
|
|
1129
1154
|
*/
|
|
1130
1155
|
Tags?: TagList;
|
|
1156
|
+
/**
|
|
1157
|
+
* The number of capacity units currently consumed by the rule group rules.
|
|
1158
|
+
*/
|
|
1159
|
+
ConsumedCapacity?: RuleCapacity;
|
|
1160
|
+
/**
|
|
1161
|
+
* The number of firewall policies that use this rule group.
|
|
1162
|
+
*/
|
|
1163
|
+
NumberOfAssociations?: NumberOfAssociations;
|
|
1131
1164
|
}
|
|
1132
1165
|
export type RuleGroupType = "STATELESS"|"STATEFUL"|string;
|
|
1133
1166
|
export type RuleGroups = RuleGroupMetadata[];
|
|
@@ -1142,6 +1175,7 @@ declare namespace NetworkFirewall {
|
|
|
1142
1175
|
Settings?: Settings;
|
|
1143
1176
|
}
|
|
1144
1177
|
export type RuleOptions = RuleOption[];
|
|
1178
|
+
export type RuleOrder = "DEFAULT_ACTION_ORDER"|"STRICT_ORDER"|string;
|
|
1145
1179
|
export type RuleTargets = CollectionMember_String[];
|
|
1146
1180
|
export type RuleVariableName = string;
|
|
1147
1181
|
export interface RuleVariables {
|
|
@@ -1164,7 +1198,7 @@ declare namespace NetworkFirewall {
|
|
|
1164
1198
|
*/
|
|
1165
1199
|
RulesSourceList?: RulesSourceList;
|
|
1166
1200
|
/**
|
|
1167
|
-
*
|
|
1201
|
+
* An array of individual stateful rules inspection criteria to be used together in a stateful rule group. Use this option to specify simple Suricata rules with protocol, source and destination, ports, direction, and rule options. For information about the Suricata Rules format, see Rules Format.
|
|
1168
1202
|
*/
|
|
1169
1203
|
StatefulRules?: StatefulRules;
|
|
1170
1204
|
/**
|
|
@@ -1178,7 +1212,7 @@ declare namespace NetworkFirewall {
|
|
|
1178
1212
|
*/
|
|
1179
1213
|
Targets: RuleTargets;
|
|
1180
1214
|
/**
|
|
1181
|
-
* The protocols you want to inspect. Specify TLS_SNI for HTTPS.
|
|
1215
|
+
* The protocols you want to inspect. Specify TLS_SNI for HTTPS. Specify HTTP_HOST for HTTP. You can specify either or both.
|
|
1182
1216
|
*/
|
|
1183
1217
|
TargetTypes: TargetTypes;
|
|
1184
1218
|
/**
|
|
@@ -1191,17 +1225,24 @@ declare namespace NetworkFirewall {
|
|
|
1191
1225
|
export type Settings = Setting[];
|
|
1192
1226
|
export type Source = string;
|
|
1193
1227
|
export type StatefulAction = "PASS"|"DROP"|"ALERT"|string;
|
|
1228
|
+
export type StatefulActions = CollectionMember_String[];
|
|
1229
|
+
export interface StatefulEngineOptions {
|
|
1230
|
+
/**
|
|
1231
|
+
* Indicates how to manage the order of stateful rule evaluation for the policy. By default, Network Firewall leaves the rule evaluation order up to the Suricata rule processing engine. If you set this to STRICT_ORDER, your rules are evaluated in the exact order that you provide them in the policy. With strict ordering, the rule groups are evaluated by order of priority, starting from the lowest number, and the rules in each rule group are processed in the order that they're defined.
|
|
1232
|
+
*/
|
|
1233
|
+
RuleOrder?: RuleOrder;
|
|
1234
|
+
}
|
|
1194
1235
|
export interface StatefulRule {
|
|
1195
1236
|
/**
|
|
1196
1237
|
* Defines what Network Firewall should do with the packets in a traffic flow when the flow matches the stateful rule criteria. For all actions, Network Firewall performs the specified action and discontinues stateful inspection of the traffic flow. The actions for a stateful rule are defined as follows: PASS - Permits the packets to go to the intended destination. DROP - Blocks the packets from going to the intended destination and sends an alert log message, if alert logging is configured in the Firewall LoggingConfiguration. ALERT - Permits the packets to go to the intended destination and sends an alert log message, if alert logging is configured in the Firewall LoggingConfiguration. You can use this action to test a rule that you intend to use to drop traffic. You can enable the rule with ALERT action, verify in the logs that the rule is filtering as you want, then change the action to DROP.
|
|
1197
1238
|
*/
|
|
1198
1239
|
Action: StatefulAction;
|
|
1199
1240
|
/**
|
|
1200
|
-
* The stateful
|
|
1241
|
+
* The stateful inspection criteria for this rule, used to inspect traffic flows.
|
|
1201
1242
|
*/
|
|
1202
1243
|
Header: Header;
|
|
1203
1244
|
/**
|
|
1204
|
-
*
|
|
1245
|
+
* Additional options for the rule. These are the Suricata RuleOptions settings.
|
|
1205
1246
|
*/
|
|
1206
1247
|
RuleOptions: RuleOptions;
|
|
1207
1248
|
}
|
|
@@ -1211,8 +1252,18 @@ declare namespace NetworkFirewall {
|
|
|
1211
1252
|
* The Amazon Resource Name (ARN) of the stateful rule group.
|
|
1212
1253
|
*/
|
|
1213
1254
|
ResourceArn: ResourceArn;
|
|
1255
|
+
/**
|
|
1256
|
+
* An integer setting that indicates the order in which to run the stateful rule groups in a single FirewallPolicy. This setting only applies to firewall policies that specify the STRICT_ORDER rule order in the stateful engine options settings. Network Firewall evalutes each stateful rule group against a packet starting with the group that has the lowest priority setting. You must ensure that the priority settings are unique within each policy. You can change the priority settings of your rule groups at any time. To make it easier to insert rule groups later, number them so there's a wide range in between, for example use 100, 200, and so on.
|
|
1257
|
+
*/
|
|
1258
|
+
Priority?: Priority;
|
|
1214
1259
|
}
|
|
1215
1260
|
export type StatefulRuleGroupReferences = StatefulRuleGroupReference[];
|
|
1261
|
+
export interface StatefulRuleOptions {
|
|
1262
|
+
/**
|
|
1263
|
+
* Indicates how to manage the order of the rule evaluation for the rule group. By default, Network Firewall leaves the rule evaluation order up to the Suricata rule processing engine. If you set this to STRICT_ORDER, your rules are evaluated in the exact order that they're listed in your Suricata rules string.
|
|
1264
|
+
*/
|
|
1265
|
+
RuleOrder?: RuleOrder;
|
|
1266
|
+
}
|
|
1216
1267
|
export type StatefulRuleProtocol = "IP"|"TCP"|"UDP"|"ICMP"|"HTTP"|"FTP"|"TLS"|"SMB"|"DNS"|"DCERPC"|"SSH"|"SMTP"|"IMAP"|"MSN"|"KRB5"|"IKEV2"|"TFTP"|"NTP"|"DHCP"|string;
|
|
1217
1268
|
export type StatefulRules = StatefulRule[];
|
|
1218
1269
|
export type StatelessActions = CollectionMember_String[];
|
|
@@ -1222,7 +1273,7 @@ declare namespace NetworkFirewall {
|
|
|
1222
1273
|
*/
|
|
1223
1274
|
RuleDefinition: RuleDefinition;
|
|
1224
1275
|
/**
|
|
1225
|
-
*
|
|
1276
|
+
* Indicates the order in which to run this rule relative to all of the rules that are defined for a stateless rule group. Network Firewall evaluates the rules in a rule group starting with the lowest priority setting. You must ensure that the priority settings are unique for the rule group. Each stateless rule group uses exactly one StatelessRulesAndCustomActions object, and each StatelessRulesAndCustomActions contains exactly one StatelessRules object. To ensure unique priority settings for your rule groups, set unique priorities for the stateless rules that you define inside any single StatelessRules object. You can change the priority settings of your rules at any time. To make it easier to insert rules later, number them so there's a wide range in between, for example use 100, 200, and so on.
|
|
1226
1277
|
*/
|
|
1227
1278
|
Priority: Priority;
|
|
1228
1279
|
}
|
package/clients/ssm.d.ts
CHANGED
|
@@ -1230,7 +1230,7 @@ declare namespace SSM {
|
|
|
1230
1230
|
*/
|
|
1231
1231
|
DocumentVersion?: DocumentVersion;
|
|
1232
1232
|
/**
|
|
1233
|
-
* The instances targeted by the request to create an association.
|
|
1233
|
+
* The instances targeted by the request to create an association. You can target all instances in an Amazon Web Services account by specifying the InstanceIds key with a value of *.
|
|
1234
1234
|
*/
|
|
1235
1235
|
Targets?: Targets;
|
|
1236
1236
|
/**
|
|
@@ -2495,7 +2495,7 @@ declare namespace SSM {
|
|
|
2495
2495
|
*/
|
|
2496
2496
|
Parameters?: Parameters;
|
|
2497
2497
|
/**
|
|
2498
|
-
* The targets for the association. You can target instances by using tags, Amazon Web Services resource groups, all instances in an Amazon Web Services account, or individual instance IDs. For more information about choosing targets for an association, see Using targets and rate controls with State Manager associations in the Amazon Web Services Systems Manager User Guide.
|
|
2498
|
+
* The targets for the association. You can target instances by using tags, Amazon Web Services resource groups, all instances in an Amazon Web Services account, or individual instance IDs. You can target all instances in an Amazon Web Services account by specifying the InstanceIds key with a value of *. For more information about choosing targets for an association, see Using targets and rate controls with State Manager associations in the Amazon Web Services Systems Manager User Guide.
|
|
2499
2499
|
*/
|
|
2500
2500
|
Targets?: Targets;
|
|
2501
2501
|
/**
|
|
@@ -8380,7 +8380,7 @@ declare namespace SSM {
|
|
|
8380
8380
|
export type S3KeyPrefix = string;
|
|
8381
8381
|
export interface S3OutputLocation {
|
|
8382
8382
|
/**
|
|
8383
|
-
*
|
|
8383
|
+
* The Amazon Web Services Region of the S3 bucket.
|
|
8384
8384
|
*/
|
|
8385
8385
|
OutputS3Region?: S3Region;
|
|
8386
8386
|
/**
|
|
@@ -8732,6 +8732,10 @@ declare namespace SSM {
|
|
|
8732
8732
|
* The user-provided idempotency token. The token must be unique, is case insensitive, enforces the UUID format, and can't be reused.
|
|
8733
8733
|
*/
|
|
8734
8734
|
ClientToken?: IdempotencyToken;
|
|
8735
|
+
/**
|
|
8736
|
+
* Indicates whether the change request can be approved automatically without the need for manual approvals. If AutoApprovable is enabled in a change template, then setting AutoApprove to true in StartChangeRequestExecution creates a change request that bypasses approver review. Change Calendar restrictions are not bypassed in this scenario. If the state of an associated calendar is CLOSED, change freeze approvers must still grant permission for this change request to run. If they don't, the change won't be processed until the calendar state is again OPEN.
|
|
8737
|
+
*/
|
|
8738
|
+
AutoApprove?: Boolean;
|
|
8735
8739
|
/**
|
|
8736
8740
|
* Information about the Automation runbooks that are run during the runbook workflow. The Automation runbooks specified for the runbook workflow can't run until all required approvals for the change request have been received.
|
|
8737
8741
|
*/
|