aws-sdk 2.1372.0 → 2.1374.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 +13 -1
- package/README.md +1 -1
- package/apis/inspector2-2020-06-08.min.json +142 -0
- package/apis/inspector2-2020-06-08.paginators.json +5 -0
- package/apis/mediatailor-2018-04-23.min.json +40 -39
- package/apis/sqs-2012-11-05.min.json +103 -36
- package/apis/sqs-2012-11-05.paginators.json +3 -3
- package/clients/ec2.d.ts +1 -1
- package/clients/glue.d.ts +3 -3
- package/clients/inspector2.d.ts +202 -0
- package/clients/iotsitewise.d.ts +8 -6
- package/clients/mediatailor.d.ts +7 -2
- package/clients/sqs.d.ts +42 -42
- package/clients/sts.d.ts +12 -12
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +6 -6
- package/dist/aws-sdk.js +108 -42
- package/dist/aws-sdk.min.js +19 -19
- package/lib/core.js +1 -1
- package/package.json +1 -1
    
        package/clients/inspector2.d.ts
    CHANGED
    
    | @@ -251,6 +251,14 @@ declare class Inspector2 extends Service { | |
| 251 251 | 
             
               * Lists the Amazon Inspector usage totals over the last 30 days.
         | 
| 252 252 | 
             
               */
         | 
| 253 253 | 
             
              listUsageTotals(callback?: (err: AWSError, data: Inspector2.Types.ListUsageTotalsResponse) => void): Request<Inspector2.Types.ListUsageTotalsResponse, AWSError>;
         | 
| 254 | 
            +
              /**
         | 
| 255 | 
            +
               * Lists Amazon Inspector coverage details for a specific vulnerability.
         | 
| 256 | 
            +
               */
         | 
| 257 | 
            +
              searchVulnerabilities(params: Inspector2.Types.SearchVulnerabilitiesRequest, callback?: (err: AWSError, data: Inspector2.Types.SearchVulnerabilitiesResponse) => void): Request<Inspector2.Types.SearchVulnerabilitiesResponse, AWSError>;
         | 
| 258 | 
            +
              /**
         | 
| 259 | 
            +
               * Lists Amazon Inspector coverage details for a specific vulnerability.
         | 
| 260 | 
            +
               */
         | 
| 261 | 
            +
              searchVulnerabilities(callback?: (err: AWSError, data: Inspector2.Types.SearchVulnerabilitiesResponse) => void): Request<Inspector2.Types.SearchVulnerabilitiesResponse, AWSError>;
         | 
| 254 262 | 
             
              /**
         | 
| 255 263 | 
             
               * Adds tags to a resource.
         | 
| 256 264 | 
             
               */
         | 
| @@ -516,6 +524,24 @@ declare namespace Inspector2 { | |
| 516 524 | 
             
                 */
         | 
| 517 525 | 
             
                accountId: AccountId;
         | 
| 518 526 | 
             
              }
         | 
| 527 | 
            +
              export interface AtigData {
         | 
| 528 | 
            +
                /**
         | 
| 529 | 
            +
                 * The date and time this vulnerability was first observed.
         | 
| 530 | 
            +
                 */
         | 
| 531 | 
            +
                firstSeen?: FirstSeen;
         | 
| 532 | 
            +
                /**
         | 
| 533 | 
            +
                 * The date and time this vulnerability was last observed.
         | 
| 534 | 
            +
                 */
         | 
| 535 | 
            +
                lastSeen?: LastSeen;
         | 
| 536 | 
            +
                /**
         | 
| 537 | 
            +
                 * The commercial sectors this vulnerability targets.
         | 
| 538 | 
            +
                 */
         | 
| 539 | 
            +
                targets?: Targets;
         | 
| 540 | 
            +
                /**
         | 
| 541 | 
            +
                 * The MITRE ATT&CK tactics, techniques, and procedures (TTPs) associated with vulnerability.
         | 
| 542 | 
            +
                 */
         | 
| 543 | 
            +
                ttps?: Ttps;
         | 
| 544 | 
            +
              }
         | 
| 519 545 | 
             
              export interface AutoEnable {
         | 
| 520 546 | 
             
                /**
         | 
| 521 547 | 
             
                 * Represents whether Amazon EC2 scans are automatically enabled for new members of your Amazon Inspector organization.
         | 
| @@ -787,6 +813,23 @@ declare namespace Inspector2 { | |
| 787 813 | 
             
                 */
         | 
| 788 814 | 
             
                reportId: ReportId;
         | 
| 789 815 | 
             
              }
         | 
| 816 | 
            +
              export type CisaAction = string;
         | 
| 817 | 
            +
              export interface CisaData {
         | 
| 818 | 
            +
                /**
         | 
| 819 | 
            +
                 * The remediation action recommended by CISA for this vulnerability.
         | 
| 820 | 
            +
                 */
         | 
| 821 | 
            +
                action?: CisaAction;
         | 
| 822 | 
            +
                /**
         | 
| 823 | 
            +
                 * The date and time CISA added this vulnerability to their catalogue.
         | 
| 824 | 
            +
                 */
         | 
| 825 | 
            +
                dateAdded?: CisaDateAdded;
         | 
| 826 | 
            +
                /**
         | 
| 827 | 
            +
                 * The date and time CISA expects a fix to have been provided vulnerability.
         | 
| 828 | 
            +
                 */
         | 
| 829 | 
            +
                dateDue?: CisaDateDue;
         | 
| 830 | 
            +
              }
         | 
| 831 | 
            +
              export type CisaDateAdded = Date;
         | 
| 832 | 
            +
              export type CisaDateDue = Date;
         | 
| 790 833 | 
             
              export type ClientToken = string;
         | 
| 791 834 | 
             
              export type Component = string;
         | 
| 792 835 | 
             
              export type ComponentType = string;
         | 
| @@ -961,6 +1004,30 @@ declare namespace Inspector2 { | |
| 961 1004 | 
             
                reportId?: ReportId;
         | 
| 962 1005 | 
             
              }
         | 
| 963 1006 | 
             
              export type Currency = "USD"|string;
         | 
| 1007 | 
            +
              export interface Cvss2 {
         | 
| 1008 | 
            +
                /**
         | 
| 1009 | 
            +
                 * The CVSS v2 base score for the vulnerability.
         | 
| 1010 | 
            +
                 */
         | 
| 1011 | 
            +
                baseScore?: Cvss2BaseScore;
         | 
| 1012 | 
            +
                /**
         | 
| 1013 | 
            +
                 * The scoring vector associated with the CVSS v2 score.
         | 
| 1014 | 
            +
                 */
         | 
| 1015 | 
            +
                scoringVector?: Cvss2ScoringVector;
         | 
| 1016 | 
            +
              }
         | 
| 1017 | 
            +
              export type Cvss2BaseScore = number;
         | 
| 1018 | 
            +
              export type Cvss2ScoringVector = string;
         | 
| 1019 | 
            +
              export interface Cvss3 {
         | 
| 1020 | 
            +
                /**
         | 
| 1021 | 
            +
                 * The CVSS v3 base score for the vulnerability.
         | 
| 1022 | 
            +
                 */
         | 
| 1023 | 
            +
                baseScore?: Cvss3BaseScore;
         | 
| 1024 | 
            +
                /**
         | 
| 1025 | 
            +
                 * The scoring vector associated with the CVSS v3 score.
         | 
| 1026 | 
            +
                 */
         | 
| 1027 | 
            +
                scoringVector?: Cvss3ScoringVector;
         | 
| 1028 | 
            +
              }
         | 
| 1029 | 
            +
              export type Cvss3BaseScore = number;
         | 
| 1030 | 
            +
              export type Cvss3ScoringVector = string;
         | 
| 964 1031 | 
             
              export interface CvssScore {
         | 
| 965 1032 | 
             
                /**
         | 
| 966 1033 | 
             
                 * The base CVSS score used for the finding.
         | 
| @@ -1017,6 +1084,8 @@ declare namespace Inspector2 { | |
| 1017 1084 | 
             
                version: NonEmptyString;
         | 
| 1018 1085 | 
             
              }
         | 
| 1019 1086 | 
             
              export type CvssScoreList = CvssScore[];
         | 
| 1087 | 
            +
              export type Cwe = string;
         | 
| 1088 | 
            +
              export type Cwes = Cwe[];
         | 
| 1020 1089 | 
             
              export interface DateFilter {
         | 
| 1021 1090 | 
             
                /**
         | 
| 1022 1091 | 
             
                 * A timestamp representing the end of the time period filtered on.
         | 
| @@ -1089,6 +1158,7 @@ declare namespace Inspector2 { | |
| 1089 1158 | 
             
                 */
         | 
| 1090 1159 | 
             
                kmsKeyArn: String;
         | 
| 1091 1160 | 
             
              }
         | 
| 1161 | 
            +
              export type DetectionPlatforms = NonEmptyString[];
         | 
| 1092 1162 | 
             
              export interface DisableDelegatedAdminAccountRequest {
         | 
| 1093 1163 | 
             
                /**
         | 
| 1094 1164 | 
             
                 * The Amazon Web Services account ID of the current Amazon Inspector delegated administrator.
         | 
| @@ -1294,10 +1364,27 @@ declare namespace Inspector2 { | |
| 1294 1364 | 
             
                 */
         | 
| 1295 1365 | 
             
                failedAccounts?: FailedAccountList;
         | 
| 1296 1366 | 
             
              }
         | 
| 1367 | 
            +
              export interface Epss {
         | 
| 1368 | 
            +
                /**
         | 
| 1369 | 
            +
                 * The Exploit Prediction Scoring System (EPSS) score.
         | 
| 1370 | 
            +
                 */
         | 
| 1371 | 
            +
                score?: EpssScore;
         | 
| 1372 | 
            +
              }
         | 
| 1373 | 
            +
              export type EpssScore = number;
         | 
| 1297 1374 | 
             
              export type ErrorCode = "ALREADY_ENABLED"|"ENABLE_IN_PROGRESS"|"DISABLE_IN_PROGRESS"|"SUSPEND_IN_PROGRESS"|"RESOURCE_NOT_FOUND"|"ACCESS_DENIED"|"INTERNAL_ERROR"|"SSM_UNAVAILABLE"|"SSM_THROTTLED"|"EVENTBRIDGE_UNAVAILABLE"|"EVENTBRIDGE_THROTTLED"|"RESOURCE_SCAN_NOT_DISABLED"|"DISASSOCIATE_ALL_MEMBERS"|"ACCOUNT_IS_ISOLATED"|string;
         | 
| 1298 1375 | 
             
              export type ErrorMessage = string;
         | 
| 1299 1376 | 
             
              export type ExecutionRoleArn = string;
         | 
| 1300 1377 | 
             
              export type ExploitAvailable = "YES"|"NO"|string;
         | 
| 1378 | 
            +
              export interface ExploitObserved {
         | 
| 1379 | 
            +
                /**
         | 
| 1380 | 
            +
                 * The date an time when the exploit was first seen.
         | 
| 1381 | 
            +
                 */
         | 
| 1382 | 
            +
                firstSeen?: FirstSeen;
         | 
| 1383 | 
            +
                /**
         | 
| 1384 | 
            +
                 * The date an time when the exploit was last seen.
         | 
| 1385 | 
            +
                 */
         | 
| 1386 | 
            +
                lastSeen?: LastSeen;
         | 
| 1387 | 
            +
              }
         | 
| 1301 1388 | 
             
              export interface ExploitabilityDetails {
         | 
| 1302 1389 | 
             
                /**
         | 
| 1303 1390 | 
             
                 * The date and time of the last exploit associated with a finding discovered in your environment.
         | 
| @@ -1660,6 +1747,7 @@ declare namespace Inspector2 { | |
| 1660 1747 | 
             
                severityCounts?: SeverityCounts;
         | 
| 1661 1748 | 
             
              }
         | 
| 1662 1749 | 
             
              export type FindingTypeSortBy = "CRITICAL"|"HIGH"|"ALL"|string;
         | 
| 1750 | 
            +
              export type FirstSeen = Date;
         | 
| 1663 1751 | 
             
              export type FixAvailable = "YES"|"NO"|"PARTIAL"|string;
         | 
| 1664 1752 | 
             
              export interface FreeTrialAccountInfo {
         | 
| 1665 1753 | 
             
                /**
         | 
| @@ -1978,6 +2066,7 @@ declare namespace Inspector2 { | |
| 1978 2066 | 
             
                 */
         | 
| 1979 2067 | 
             
                vpcId?: VpcId;
         | 
| 1980 2068 | 
             
              }
         | 
| 2069 | 
            +
              export type LastSeen = Date;
         | 
| 1981 2070 | 
             
              export type LayerList = LambdaLayerArn[];
         | 
| 1982 2071 | 
             
              export type ListAccountPermissionsMaxResults = number;
         | 
| 1983 2072 | 
             
              export interface ListAccountPermissionsRequest {
         | 
| @@ -2491,6 +2580,8 @@ declare namespace Inspector2 { | |
| 2491 2580 | 
             
                 */
         | 
| 2492 2581 | 
             
                text?: NonEmptyString;
         | 
| 2493 2582 | 
             
              }
         | 
| 2583 | 
            +
              export type RelatedVulnerabilities = RelatedVulnerability[];
         | 
| 2584 | 
            +
              export type RelatedVulnerability = string;
         | 
| 2494 2585 | 
             
              export type RelationshipStatus = "CREATED"|"INVITED"|"DISABLED"|"ENABLED"|"REMOVED"|"RESIGNED"|"DELETED"|"EMAIL_VERIFICATION_IN_PROGRESS"|"EMAIL_VERIFICATION_FAILED"|"REGION_DISABLED"|"ACCOUNT_SUSPENDED"|"CANNOT_CREATE_DETECTOR_IN_ORG_MASTER"|string;
         | 
| 2495 2586 | 
             
              export interface Remediation {
         | 
| 2496 2587 | 
             
                /**
         | 
| @@ -2635,6 +2726,32 @@ declare namespace Inspector2 { | |
| 2635 2726 | 
             
              export type ScanStatusCode = "ACTIVE"|"INACTIVE"|string;
         | 
| 2636 2727 | 
             
              export type ScanStatusReason = "PENDING_INITIAL_SCAN"|"ACCESS_DENIED"|"INTERNAL_ERROR"|"UNMANAGED_EC2_INSTANCE"|"UNSUPPORTED_OS"|"SCAN_ELIGIBILITY_EXPIRED"|"RESOURCE_TERMINATED"|"SUCCESSFUL"|"NO_RESOURCES_FOUND"|"IMAGE_SIZE_EXCEEDED"|"SCAN_FREQUENCY_MANUAL"|"SCAN_FREQUENCY_SCAN_ON_PUSH"|"EC2_INSTANCE_STOPPED"|"PENDING_DISABLE"|"NO_INVENTORY"|"STALE_INVENTORY"|"EXCLUDED_BY_TAG"|"UNSUPPORTED_RUNTIME"|"UNSUPPORTED_MEDIA_TYPE"|"UNSUPPORTED_CONFIG_FILE"|"DEEP_INSPECTION_PACKAGE_COLLECTION_LIMIT_EXCEEDED"|"DEEP_INSPECTION_DAILY_SSM_INVENTORY_LIMIT_EXCEEDED"|"DEEP_INSPECTION_COLLECTION_TIME_LIMIT_EXCEEDED"|"DEEP_INSPECTION_NO_INVENTORY"|string;
         | 
| 2637 2728 | 
             
              export type ScanType = "NETWORK"|"PACKAGE"|string;
         | 
| 2729 | 
            +
              export interface SearchVulnerabilitiesFilterCriteria {
         | 
| 2730 | 
            +
                /**
         | 
| 2731 | 
            +
                 * The IDs for specific vulnerabilities.
         | 
| 2732 | 
            +
                 */
         | 
| 2733 | 
            +
                vulnerabilityIds: VulnIdList;
         | 
| 2734 | 
            +
              }
         | 
| 2735 | 
            +
              export interface SearchVulnerabilitiesRequest {
         | 
| 2736 | 
            +
                /**
         | 
| 2737 | 
            +
                 * The criteria used to filter the results of a vulnerability search.
         | 
| 2738 | 
            +
                 */
         | 
| 2739 | 
            +
                filterCriteria: SearchVulnerabilitiesFilterCriteria;
         | 
| 2740 | 
            +
                /**
         | 
| 2741 | 
            +
                 * A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.
         | 
| 2742 | 
            +
                 */
         | 
| 2743 | 
            +
                nextToken?: NextToken;
         | 
| 2744 | 
            +
              }
         | 
| 2745 | 
            +
              export interface SearchVulnerabilitiesResponse {
         | 
| 2746 | 
            +
                /**
         | 
| 2747 | 
            +
                 * The pagination parameter to be used on the next list operation to retrieve more items.
         | 
| 2748 | 
            +
                 */
         | 
| 2749 | 
            +
                nextToken?: NextToken;
         | 
| 2750 | 
            +
                /**
         | 
| 2751 | 
            +
                 * Details about the listed vulnerability.
         | 
| 2752 | 
            +
                 */
         | 
| 2753 | 
            +
                vulnerabilities: Vulnerabilities;
         | 
| 2754 | 
            +
              }
         | 
| 2638 2755 | 
             
              export type SecurityGroupId = string;
         | 
| 2639 2756 | 
             
              export type SecurityGroupIdList = SecurityGroupId[];
         | 
| 2640 2757 | 
             
              export type Service = "EC2"|"ECR"|"LAMBDA"|string;
         | 
| @@ -2729,6 +2846,8 @@ declare namespace Inspector2 { | |
| 2729 2846 | 
             
              }
         | 
| 2730 2847 | 
             
              export interface TagResourceResponse {
         | 
| 2731 2848 | 
             
              }
         | 
| 2849 | 
            +
              export type Target = string;
         | 
| 2850 | 
            +
              export type Targets = Target[];
         | 
| 2732 2851 | 
             
              export type Timestamp = Date;
         | 
| 2733 2852 | 
             
              export interface TitleAggregation {
         | 
| 2734 2853 | 
             
                /**
         | 
| @@ -2771,6 +2890,8 @@ declare namespace Inspector2 { | |
| 2771 2890 | 
             
                vulnerabilityId?: String;
         | 
| 2772 2891 | 
             
              }
         | 
| 2773 2892 | 
             
              export type TitleSortBy = "CRITICAL"|"HIGH"|"ALL"|string;
         | 
| 2893 | 
            +
              export type Ttp = string;
         | 
| 2894 | 
            +
              export type Ttps = Ttp[];
         | 
| 2774 2895 | 
             
              export interface UntagResourceRequest {
         | 
| 2775 2896 | 
             
                /**
         | 
| 2776 2897 | 
             
                 * The Amazon Resource Name (ARN) for the resource to remove tags from.
         | 
| @@ -2905,10 +3026,91 @@ declare namespace Inspector2 { | |
| 2905 3026 | 
             
              export type UsageTotalList = UsageTotal[];
         | 
| 2906 3027 | 
             
              export type UsageType = "EC2_INSTANCE_HOURS"|"ECR_INITIAL_SCAN"|"ECR_RESCAN"|"LAMBDA_FUNCTION_HOURS"|string;
         | 
| 2907 3028 | 
             
              export type UsageValue = number;
         | 
| 3029 | 
            +
              export type VendorCreatedAt = Date;
         | 
| 3030 | 
            +
              export type VendorSeverity = string;
         | 
| 3031 | 
            +
              export type VendorUpdatedAt = Date;
         | 
| 2908 3032 | 
             
              export type Version = string;
         | 
| 2909 3033 | 
             
              export type VpcId = string;
         | 
| 3034 | 
            +
              export type VulnId = string;
         | 
| 3035 | 
            +
              export type VulnIdList = VulnId[];
         | 
| 3036 | 
            +
              export type Vulnerabilities = Vulnerability[];
         | 
| 3037 | 
            +
              export interface Vulnerability {
         | 
| 3038 | 
            +
                /**
         | 
| 3039 | 
            +
                 * An object that contains information about the Amazon Web Services Threat Intel Group (ATIG) details for the vulnerability.
         | 
| 3040 | 
            +
                 */
         | 
| 3041 | 
            +
                atigData?: AtigData;
         | 
| 3042 | 
            +
                /**
         | 
| 3043 | 
            +
                 * An object that contains the Cybersecurity and Infrastructure Security Agency (CISA) details for the vulnerability.
         | 
| 3044 | 
            +
                 */
         | 
| 3045 | 
            +
                cisaData?: CisaData;
         | 
| 3046 | 
            +
                /**
         | 
| 3047 | 
            +
                 * An object that contains the Common Vulnerability Scoring System (CVSS) Version 2 details for the vulnerability.
         | 
| 3048 | 
            +
                 */
         | 
| 3049 | 
            +
                cvss2?: Cvss2;
         | 
| 3050 | 
            +
                /**
         | 
| 3051 | 
            +
                 * An object that contains the Common Vulnerability Scoring System (CVSS) Version 3 details for the vulnerability.
         | 
| 3052 | 
            +
                 */
         | 
| 3053 | 
            +
                cvss3?: Cvss3;
         | 
| 3054 | 
            +
                /**
         | 
| 3055 | 
            +
                 * The Common Weakness Enumeration (CWE) associated with the vulnerability.
         | 
| 3056 | 
            +
                 */
         | 
| 3057 | 
            +
                cwes?: Cwes;
         | 
| 3058 | 
            +
                /**
         | 
| 3059 | 
            +
                 * A description of the vulnerability.
         | 
| 3060 | 
            +
                 */
         | 
| 3061 | 
            +
                description?: VulnerabilityDescription;
         | 
| 3062 | 
            +
                /**
         | 
| 3063 | 
            +
                 * Platforms that the vulnerability can be detected on.
         | 
| 3064 | 
            +
                 */
         | 
| 3065 | 
            +
                detectionPlatforms?: DetectionPlatforms;
         | 
| 3066 | 
            +
                /**
         | 
| 3067 | 
            +
                 * An object that contains the Exploit Prediction Scoring System (EPSS) score.
         | 
| 3068 | 
            +
                 */
         | 
| 3069 | 
            +
                epss?: Epss;
         | 
| 3070 | 
            +
                /**
         | 
| 3071 | 
            +
                 * An object that contains details on when the exploit was observed.
         | 
| 3072 | 
            +
                 */
         | 
| 3073 | 
            +
                exploitObserved?: ExploitObserved;
         | 
| 3074 | 
            +
                /**
         | 
| 3075 | 
            +
                 * The ID for the specific vulnerability.
         | 
| 3076 | 
            +
                 */
         | 
| 3077 | 
            +
                id: NonEmptyString;
         | 
| 3078 | 
            +
                /**
         | 
| 3079 | 
            +
                 * Links to various resources with more information on this vulnerability. 
         | 
| 3080 | 
            +
                 */
         | 
| 3081 | 
            +
                referenceUrls?: VulnerabilityReferenceUrls;
         | 
| 3082 | 
            +
                /**
         | 
| 3083 | 
            +
                 * A list of related vulnerabilities.
         | 
| 3084 | 
            +
                 */
         | 
| 3085 | 
            +
                relatedVulnerabilities?: RelatedVulnerabilities;
         | 
| 3086 | 
            +
                /**
         | 
| 3087 | 
            +
                 * The source of the vulnerability information.
         | 
| 3088 | 
            +
                 */
         | 
| 3089 | 
            +
                source?: VulnerabilitySource;
         | 
| 3090 | 
            +
                /**
         | 
| 3091 | 
            +
                 * A link to the official source material for this vulnerability.
         | 
| 3092 | 
            +
                 */
         | 
| 3093 | 
            +
                sourceUrl?: VulnerabilitySourceUrl;
         | 
| 3094 | 
            +
                /**
         | 
| 3095 | 
            +
                 * The date and time when the vendor created this vulnerability.
         | 
| 3096 | 
            +
                 */
         | 
| 3097 | 
            +
                vendorCreatedAt?: VendorCreatedAt;
         | 
| 3098 | 
            +
                /**
         | 
| 3099 | 
            +
                 * The severity assigned by the vendor.
         | 
| 3100 | 
            +
                 */
         | 
| 3101 | 
            +
                vendorSeverity?: VendorSeverity;
         | 
| 3102 | 
            +
                /**
         | 
| 3103 | 
            +
                 * The date and time when the vendor last updated this vulnerability.
         | 
| 3104 | 
            +
                 */
         | 
| 3105 | 
            +
                vendorUpdatedAt?: VendorUpdatedAt;
         | 
| 3106 | 
            +
              }
         | 
| 3107 | 
            +
              export type VulnerabilityDescription = string;
         | 
| 2910 3108 | 
             
              export type VulnerabilityId = string;
         | 
| 2911 3109 | 
             
              export type VulnerabilityIdList = VulnerabilityId[];
         | 
| 3110 | 
            +
              export type VulnerabilityReferenceUrl = string;
         | 
| 3111 | 
            +
              export type VulnerabilityReferenceUrls = VulnerabilityReferenceUrl[];
         | 
| 3112 | 
            +
              export type VulnerabilitySource = "NVD"|string;
         | 
| 3113 | 
            +
              export type VulnerabilitySourceUrl = string;
         | 
| 2912 3114 | 
             
              export interface VulnerablePackage {
         | 
| 2913 3115 | 
             
                /**
         | 
| 2914 3116 | 
             
                 * The architecture of the vulnerable package.
         | 
    
        package/clients/iotsitewise.d.ts
    CHANGED
    
    | @@ -1313,7 +1313,7 @@ declare namespace IoTSiteWise { | |
| 1313 1313 | 
             
                 */
         | 
| 1314 1314 | 
             
                nextToken?: NextToken;
         | 
| 1315 1315 | 
             
                /**
         | 
| 1316 | 
            -
                 * The maximum number of results to return for each paginated request. A result set is returned in the two cases, whichever occurs first.   The size of the result set is  | 
| 1316 | 
            +
                 * The maximum number of results to return for each paginated request. A result set is returned in the two cases, whichever occurs first.   The size of the result set is equal to 1 MB.   The number of data points in the result set is equal to the value of maxResults. The maximum value of maxResults is 4000.  
         | 
| 1317 1317 | 
             
                 */
         | 
| 1318 1318 | 
             
                maxResults?: BatchGetAssetPropertyAggregatesMaxResults;
         | 
| 1319 1319 | 
             
              }
         | 
| @@ -1478,7 +1478,7 @@ declare namespace IoTSiteWise { | |
| 1478 1478 | 
             
                 */
         | 
| 1479 1479 | 
             
                nextToken?: NextToken;
         | 
| 1480 1480 | 
             
                /**
         | 
| 1481 | 
            -
                 * The maximum number of results to return for each paginated request. A result set is returned in the two cases, whichever occurs first.   The size of the result set is  | 
| 1481 | 
            +
                 * The maximum number of results to return for each paginated request. A result set is returned in the two cases, whichever occurs first.   The size of the result set is equal to 4 MB.   The number of data points in the result set is equal to the value of maxResults. The maximum value of maxResults is 20000.  
         | 
| 1482 1482 | 
             
                 */
         | 
| 1483 1483 | 
             
                maxResults?: BatchGetAssetPropertyValueHistoryMaxResults;
         | 
| 1484 1484 | 
             
              }
         | 
| @@ -2851,9 +2851,9 @@ declare namespace IoTSiteWise { | |
| 2851 2851 | 
             
                 */
         | 
| 2852 2852 | 
             
                nextToken?: NextToken;
         | 
| 2853 2853 | 
             
                /**
         | 
| 2854 | 
            -
                 * The maximum number of results to return for each paginated request.  | 
| 2854 | 
            +
                 * The maximum number of results to return for each paginated request. A result set is returned in the two cases, whichever occurs first.   The size of the result set is equal to 1 MB.   The number of data points in the result set is equal to the value of maxResults. The maximum value of maxResults is 250.  
         | 
| 2855 2855 | 
             
                 */
         | 
| 2856 | 
            -
                maxResults?:  | 
| 2856 | 
            +
                maxResults?: GetAssetPropertyValueAggregatesMaxResults;
         | 
| 2857 2857 | 
             
              }
         | 
| 2858 2858 | 
             
              export interface GetAssetPropertyAggregatesResponse {
         | 
| 2859 2859 | 
             
                /**
         | 
| @@ -2865,6 +2865,8 @@ declare namespace IoTSiteWise { | |
| 2865 2865 | 
             
                 */
         | 
| 2866 2866 | 
             
                nextToken?: NextToken;
         | 
| 2867 2867 | 
             
              }
         | 
| 2868 | 
            +
              export type GetAssetPropertyValueAggregatesMaxResults = number;
         | 
| 2869 | 
            +
              export type GetAssetPropertyValueHistoryMaxResults = number;
         | 
| 2868 2870 | 
             
              export interface GetAssetPropertyValueHistoryRequest {
         | 
| 2869 2871 | 
             
                /**
         | 
| 2870 2872 | 
             
                 * The ID of the asset.
         | 
| @@ -2899,9 +2901,9 @@ declare namespace IoTSiteWise { | |
| 2899 2901 | 
             
                 */
         | 
| 2900 2902 | 
             
                nextToken?: NextToken;
         | 
| 2901 2903 | 
             
                /**
         | 
| 2902 | 
            -
                 * The maximum number of results to return for each paginated request.  | 
| 2904 | 
            +
                 * The maximum number of results to return for each paginated request. A result set is returned in the two cases, whichever occurs first.   The size of the result set is equal to 4 MB.   The number of data points in the result set is equal to the value of maxResults. The maximum value of maxResults is 20000.  
         | 
| 2903 2905 | 
             
                 */
         | 
| 2904 | 
            -
                maxResults?:  | 
| 2906 | 
            +
                maxResults?: GetAssetPropertyValueHistoryMaxResults;
         | 
| 2905 2907 | 
             
              }
         | 
| 2906 2908 | 
             
              export interface GetAssetPropertyValueHistoryResponse {
         | 
| 2907 2909 | 
             
                /**
         | 
    
        package/clients/mediatailor.d.ts
    CHANGED
    
    | @@ -438,7 +438,11 @@ declare namespace MediaTailor { | |
| 438 438 | 
             
              }
         | 
| 439 439 | 
             
              export interface AvailSuppression {
         | 
| 440 440 | 
             
                /**
         | 
| 441 | 
            -
                 *  | 
| 441 | 
            +
                 * Defines the policy to apply to the avail suppression mode. BEHIND_LIVE_EDGE will always use the full avail suppression policy. AFTER_LIVE_EDGE mode can be used to invoke partial ad break fills when a session starts mid-break.
         | 
| 442 | 
            +
                 */
         | 
| 443 | 
            +
                FillPolicy?: FillPolicy;
         | 
| 444 | 
            +
                /**
         | 
| 445 | 
            +
                 * Sets the ad suppression mode. By default, ad suppression is off and all ad breaks are filled with ads or slate. When Mode is set to BEHIND_LIVE_EDGE, ad suppression is active and MediaTailor won't fill ad breaks on or behind the ad suppression Value time in the manifest lookback window. When Mode is set to AFTER_LIVE_EDGE, ad suppression is active and MediaTailor won't fill ad breaks that are within the live edge plus the avail suppression value.
         | 
| 442 446 | 
             
                 */
         | 
| 443 447 | 
             
                Mode?: Mode;
         | 
| 444 448 | 
             
                /**
         | 
| @@ -1273,6 +1277,7 @@ declare namespace MediaTailor { | |
| 1273 1277 | 
             
                 */
         | 
| 1274 1278 | 
             
                VodSourceName?: __string;
         | 
| 1275 1279 | 
             
              }
         | 
| 1280 | 
            +
              export type FillPolicy = "FULL_AVAIL_ONLY"|"PARTIAL_AVAIL"|string;
         | 
| 1276 1281 | 
             
              export interface GetChannelPolicyRequest {
         | 
| 1277 1282 | 
             
                /**
         | 
| 1278 1283 | 
             
                 * The name of the channel associated with this Channel Policy.
         | 
| @@ -1702,7 +1707,7 @@ declare namespace MediaTailor { | |
| 1702 1707 | 
             
              }
         | 
| 1703 1708 | 
             
              export type MaxResults = number;
         | 
| 1704 1709 | 
             
              export type MessageType = "SPLICE_INSERT"|"TIME_SIGNAL"|string;
         | 
| 1705 | 
            -
              export type Mode = "OFF"|"BEHIND_LIVE_EDGE"|string;
         | 
| 1710 | 
            +
              export type Mode = "OFF"|"BEHIND_LIVE_EDGE"|"AFTER_LIVE_EDGE"|string;
         | 
| 1706 1711 | 
             
              export type Operator = "EQUALS"|string;
         | 
| 1707 1712 | 
             
              export type OriginManifestType = "SINGLE_PERIOD"|"MULTI_PERIOD"|string;
         | 
| 1708 1713 | 
             
              export interface PlaybackConfiguration {
         |