aws-sdk 2.1391.0 → 2.1392.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 +12 -1
- package/README.md +1 -1
- package/apis/inspector2-2020-06-08.min.json +29 -12
- package/apis/iot-2015-05-28.min.json +714 -214
- package/apis/iot-2015-05-28.paginators.json +12 -0
- package/apis/models.lex.v2-2020-08-07.min.json +1496 -286
- package/apis/models.lex.v2-2020-08-07.paginators.json +20 -0
- package/apis/quicksight-2018-04-01.min.json +625 -594
- package/apis/signer-2017-08-25.min.json +105 -16
- package/apis/sqs-2012-11-05.min.json +120 -31
- package/clients/connect.d.ts +3 -3
- package/clients/emr.d.ts +2 -2
- package/clients/iam.d.ts +7 -7
- package/clients/inspector2.d.ts +20 -1
- package/clients/iot.d.ts +500 -3
- package/clients/lexmodelsv2.d.ts +1516 -127
- package/clients/quicksight.d.ts +50 -14
- package/clients/signer.d.ts +90 -5
- package/clients/sqs.d.ts +151 -39
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +9 -9
- package/dist/aws-sdk.js +849 -248
- package/dist/aws-sdk.min.js +48 -48
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/inspector2.d.ts
CHANGED
@@ -844,6 +844,17 @@ declare namespace Inspector2 {
|
|
844
844
|
groupKey?: GroupKey;
|
845
845
|
}
|
846
846
|
export type CountsList = Counts[];
|
847
|
+
export interface CoverageDateFilter {
|
848
|
+
/**
|
849
|
+
* A timestamp representing the end of the time period to filter results by.
|
850
|
+
*/
|
851
|
+
endInclusive?: DateTimeTimestamp;
|
852
|
+
/**
|
853
|
+
* A timestamp representing the start of the time period to filter results by.
|
854
|
+
*/
|
855
|
+
startInclusive?: DateTimeTimestamp;
|
856
|
+
}
|
857
|
+
export type CoverageDateFilterList = CoverageDateFilter[];
|
847
858
|
export interface CoverageFilterCriteria {
|
848
859
|
/**
|
849
860
|
* An array of Amazon Web Services account IDs to return coverage statistics for.
|
@@ -873,12 +884,16 @@ declare namespace Inspector2 {
|
|
873
884
|
* Returns coverage statistics for AWS Lambda functions filtered by tag.
|
874
885
|
*/
|
875
886
|
lambdaFunctionTags?: CoverageMapFilterList;
|
887
|
+
/**
|
888
|
+
* Filters Amazon Web Services resources based on whether Amazon Inspector has checked them for vulnerabilities within the specified time range.
|
889
|
+
*/
|
890
|
+
lastScannedAt?: CoverageDateFilterList;
|
876
891
|
/**
|
877
892
|
* An array of Amazon Web Services resource IDs to return coverage statistics for.
|
878
893
|
*/
|
879
894
|
resourceId?: CoverageStringFilterList;
|
880
895
|
/**
|
881
|
-
* An array of Amazon Web Services resource types to return coverage statistics for. The values can be AWS_EC2_INSTANCE or AWS_ECR_REPOSITORY.
|
896
|
+
* An array of Amazon Web Services resource types to return coverage statistics for. The values can be AWS_EC2_INSTANCE, AWS_LAMBDA_FUNCTION or AWS_ECR_REPOSITORY.
|
882
897
|
*/
|
883
898
|
resourceType?: CoverageStringFilterList;
|
884
899
|
/**
|
@@ -929,6 +944,10 @@ declare namespace Inspector2 {
|
|
929
944
|
* The Amazon Web Services account ID of the covered resource.
|
930
945
|
*/
|
931
946
|
accountId: AccountId;
|
947
|
+
/**
|
948
|
+
* The date and time the resource was last checked for vulnerabilities.
|
949
|
+
*/
|
950
|
+
lastScannedAt?: DateTimeTimestamp;
|
932
951
|
/**
|
933
952
|
* The ID of the covered resource.
|
934
953
|
*/
|