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.
@@ -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
  */