@aws-sdk/client-inspector 3.686.0 → 3.691.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.
@@ -55,7 +55,7 @@ export interface Attribute {
55
55
  * <p>The value assigned to the attribute key.</p>
56
56
  * @public
57
57
  */
58
- value?: string;
58
+ value?: string | undefined;
59
59
  }
60
60
  /**
61
61
  * @public
@@ -353,7 +353,7 @@ export interface AgentPreview {
353
353
  * installed.</p>
354
354
  * @public
355
355
  */
356
- hostname?: string;
356
+ hostname?: string | undefined;
357
357
  /**
358
358
  * <p>The ID of the EC2 instance where the agent is installed.</p>
359
359
  * @public
@@ -363,35 +363,35 @@ export interface AgentPreview {
363
363
  * <p>The Auto Scaling group for the EC2 instance where the agent is installed.</p>
364
364
  * @public
365
365
  */
366
- autoScalingGroup?: string;
366
+ autoScalingGroup?: string | undefined;
367
367
  /**
368
368
  * <p>The health status of the Amazon Inspector Agent.</p>
369
369
  * @public
370
370
  */
371
- agentHealth?: AgentHealth;
371
+ agentHealth?: AgentHealth | undefined;
372
372
  /**
373
373
  * <p>The version of the Amazon Inspector Agent.</p>
374
374
  * @public
375
375
  */
376
- agentVersion?: string;
376
+ agentVersion?: string | undefined;
377
377
  /**
378
378
  * <p>The operating system running on the EC2 instance on which the Amazon Inspector Agent
379
379
  * is installed.</p>
380
380
  * @public
381
381
  */
382
- operatingSystem?: string;
382
+ operatingSystem?: string | undefined;
383
383
  /**
384
384
  * <p>The kernel version of the operating system running on the EC2 instance on which the
385
385
  * Amazon Inspector Agent is installed.</p>
386
386
  * @public
387
387
  */
388
- kernelVersion?: string;
388
+ kernelVersion?: string | undefined;
389
389
  /**
390
390
  * <p>The IP address of the EC2 instance on which the Amazon Inspector Agent is
391
391
  * installed.</p>
392
392
  * @public
393
393
  */
394
- ipv4Address?: string;
394
+ ipv4Address?: string | undefined;
395
395
  }
396
396
  /**
397
397
  * <p>You started an assessment run, but one of the instances is already participating in
@@ -485,7 +485,7 @@ export interface AssessmentRunNotification {
485
485
  * <p>The message included in the notification.</p>
486
486
  * @public
487
487
  */
488
- message?: string;
488
+ message?: string | undefined;
489
489
  /**
490
490
  * <p>The Boolean value that specifies whether the notification represents an
491
491
  * error.</p>
@@ -496,12 +496,12 @@ export interface AssessmentRunNotification {
496
496
  * <p>The SNS topic to which the SNS notification is sent.</p>
497
497
  * @public
498
498
  */
499
- snsTopicArn?: string;
499
+ snsTopicArn?: string | undefined;
500
500
  /**
501
501
  * <p>The status code of the SNS notification.</p>
502
502
  * @public
503
503
  */
504
- snsPublishStatusCode?: AssessmentRunNotificationSnsStatusCode;
504
+ snsPublishStatusCode?: AssessmentRunNotificationSnsStatusCode | undefined;
505
505
  }
506
506
  /**
507
507
  * @public
@@ -596,13 +596,13 @@ export interface AssessmentRun {
596
596
  * <p>The time when <a>StartAssessmentRun</a> was called.</p>
597
597
  * @public
598
598
  */
599
- startedAt?: Date;
599
+ startedAt?: Date | undefined;
600
600
  /**
601
601
  * <p>The assessment run completion time that corresponds to the rules packages evaluation
602
602
  * completion time or failure.</p>
603
603
  * @public
604
604
  */
605
- completedAt?: Date;
605
+ completedAt?: Date | undefined;
606
606
  /**
607
607
  * <p>The last time when the assessment run's state changed.</p>
608
608
  * @public
@@ -652,7 +652,7 @@ export interface TelemetryMetadata {
652
652
  * service.</p>
653
653
  * @public
654
654
  */
655
- dataSize?: number;
655
+ dataSize?: number | undefined;
656
656
  }
657
657
  /**
658
658
  * <p>Contains information about an Amazon Inspector agent. This data type is used as a
@@ -684,13 +684,13 @@ export interface AssessmentRunAgent {
684
684
  * <p>The description for the agent health code.</p>
685
685
  * @public
686
686
  */
687
- agentHealthDetails?: string;
687
+ agentHealthDetails?: string | undefined;
688
688
  /**
689
689
  * <p>The Auto Scaling group of the EC2 instance that is specified by the agent
690
690
  * ID.</p>
691
691
  * @public
692
692
  */
693
- autoScalingGroup?: string;
693
+ autoScalingGroup?: string | undefined;
694
694
  /**
695
695
  * <p>The Amazon Inspector application data metrics that are collected by the
696
696
  * agent.</p>
@@ -708,12 +708,12 @@ export interface TimestampRange {
708
708
  * <p>The minimum value of the timestamp range.</p>
709
709
  * @public
710
710
  */
711
- beginDate?: Date;
711
+ beginDate?: Date | undefined;
712
712
  /**
713
713
  * <p>The maximum value of the timestamp range.</p>
714
714
  * @public
715
715
  */
716
- endDate?: Date;
716
+ endDate?: Date | undefined;
717
717
  }
718
718
  /**
719
719
  * <p>This data type is used in the <a>AssessmentTemplateFilter</a> data
@@ -725,13 +725,13 @@ export interface DurationRange {
725
725
  * <p>The minimum value of the duration range. Must be greater than zero.</p>
726
726
  * @public
727
727
  */
728
- minSeconds?: number;
728
+ minSeconds?: number | undefined;
729
729
  /**
730
730
  * <p>The maximum value of the duration range. Must be less than or equal to 604800 seconds
731
731
  * (1 week).</p>
732
732
  * @public
733
733
  */
734
- maxSeconds?: number;
734
+ maxSeconds?: number | undefined;
735
735
  }
736
736
  /**
737
737
  * <p>Used as the request parameter in the <a>ListAssessmentRuns</a>
@@ -745,49 +745,49 @@ export interface AssessmentRunFilter {
745
745
  * data type.</p>
746
746
  * @public
747
747
  */
748
- namePattern?: string;
748
+ namePattern?: string | undefined;
749
749
  /**
750
750
  * <p>For a record to match a filter, one of the values specified for this data type
751
751
  * property must be the exact match of the value of the <b>assessmentRunState</b> property of the <a>AssessmentRun</a> data
752
752
  * type.</p>
753
753
  * @public
754
754
  */
755
- states?: AssessmentRunState[];
755
+ states?: AssessmentRunState[] | undefined;
756
756
  /**
757
757
  * <p>For a record to match a filter, the value that is specified for this data type
758
758
  * property must inclusively match any value between the specified minimum and maximum values
759
759
  * of the <b>durationInSeconds</b> property of the <a>AssessmentRun</a> data type.</p>
760
760
  * @public
761
761
  */
762
- durationRange?: DurationRange;
762
+ durationRange?: DurationRange | undefined;
763
763
  /**
764
764
  * <p>For a record to match a filter, the value that is specified for this data type
765
765
  * property must be contained in the list of values of the <b>rulesPackages</b> property of the <a>AssessmentRun</a> data
766
766
  * type.</p>
767
767
  * @public
768
768
  */
769
- rulesPackageArns?: string[];
769
+ rulesPackageArns?: string[] | undefined;
770
770
  /**
771
771
  * <p>For a record to match a filter, the value that is specified for this data type
772
772
  * property must inclusively match any value between the specified minimum and maximum values
773
773
  * of the <b>startTime</b> property of the <a>AssessmentRun</a> data type.</p>
774
774
  * @public
775
775
  */
776
- startTimeRange?: TimestampRange;
776
+ startTimeRange?: TimestampRange | undefined;
777
777
  /**
778
778
  * <p>For a record to match a filter, the value that is specified for this data type
779
779
  * property must inclusively match any value between the specified minimum and maximum values
780
780
  * of the <b>completedAt</b> property of the <a>AssessmentRun</a> data type.</p>
781
781
  * @public
782
782
  */
783
- completionTimeRange?: TimestampRange;
783
+ completionTimeRange?: TimestampRange | undefined;
784
784
  /**
785
785
  * <p>For a record to match a filter, the value that is specified for this data type
786
786
  * property must match the <b>stateChangedAt</b> property of the
787
787
  * <a>AssessmentRun</a> data type.</p>
788
788
  * @public
789
789
  */
790
- stateChangeTimeRange?: TimestampRange;
790
+ stateChangeTimeRange?: TimestampRange | undefined;
791
791
  }
792
792
  /**
793
793
  * <p>You cannot perform a specified action if an assessment run is currently in
@@ -839,7 +839,7 @@ export interface AssessmentTarget {
839
839
  * target.</p>
840
840
  * @public
841
841
  */
842
- resourceGroupArn?: string;
842
+ resourceGroupArn?: string | undefined;
843
843
  /**
844
844
  * <p>The time at which the assessment target is created.</p>
845
845
  * @public
@@ -863,7 +863,7 @@ export interface AssessmentTargetFilter {
863
863
  * <b>assessmentTargetName</b> property of the <a>AssessmentTarget</a> data type.</p>
864
864
  * @public
865
865
  */
866
- assessmentTargetNamePattern?: string;
866
+ assessmentTargetNamePattern?: string | undefined;
867
867
  }
868
868
  /**
869
869
  * <p>Contains information about an Amazon Inspector assessment template. This data type is
@@ -911,7 +911,7 @@ export interface AssessmentTemplate {
911
911
  * greaterpa than zero.</p>
912
912
  * @public
913
913
  */
914
- lastAssessmentRunArn?: string;
914
+ lastAssessmentRunArn?: string | undefined;
915
915
  /**
916
916
  * <p>The number of existing assessment runs associated with this assessment template. This
917
917
  * value can be zero or a positive integer.</p>
@@ -936,21 +936,21 @@ export interface AssessmentTemplateFilter {
936
936
  * <b>assessmentTemplateName</b> property of the <a>AssessmentTemplate</a> data type.</p>
937
937
  * @public
938
938
  */
939
- namePattern?: string;
939
+ namePattern?: string | undefined;
940
940
  /**
941
941
  * <p>For a record to match a filter, the value specified for this data type property must
942
942
  * inclusively match any value between the specified minimum and maximum values of the
943
943
  * <b>durationInSeconds</b> property of the <a>AssessmentTemplate</a> data type.</p>
944
944
  * @public
945
945
  */
946
- durationRange?: DurationRange;
946
+ durationRange?: DurationRange | undefined;
947
947
  /**
948
948
  * <p>For a record to match a filter, the values that are specified for this data type
949
949
  * property must be contained in the list of values of the <b>rulesPackageArns</b> property of the <a>AssessmentTemplate</a> data
950
950
  * type.</p>
951
951
  * @public
952
952
  */
953
- rulesPackageArns?: string[];
953
+ rulesPackageArns?: string[] | undefined;
954
954
  }
955
955
  /**
956
956
  * <p>Contains information about a private IP address associated with a network interface. This
@@ -963,12 +963,12 @@ export interface PrivateIp {
963
963
  * <p>The DNS name of the private IP address.</p>
964
964
  * @public
965
965
  */
966
- privateDnsName?: string;
966
+ privateDnsName?: string | undefined;
967
967
  /**
968
968
  * <p>The full IP address of the network inteface.</p>
969
969
  * @public
970
970
  */
971
- privateIpAddress?: string;
971
+ privateIpAddress?: string | undefined;
972
972
  }
973
973
  /**
974
974
  * <p>Contains information about a security group associated with a network interface. This
@@ -981,12 +981,12 @@ export interface SecurityGroup {
981
981
  * <p>The name of the security group.</p>
982
982
  * @public
983
983
  */
984
- groupName?: string;
984
+ groupName?: string | undefined;
985
985
  /**
986
986
  * <p>The ID of the security group.</p>
987
987
  * @public
988
988
  */
989
- groupId?: string;
989
+ groupId?: string | undefined;
990
990
  }
991
991
  /**
992
992
  * <p>Contains information about the network interfaces interacting with an EC2 instance.
@@ -999,54 +999,54 @@ export interface NetworkInterface {
999
999
  * <p>The ID of the network interface.</p>
1000
1000
  * @public
1001
1001
  */
1002
- networkInterfaceId?: string;
1002
+ networkInterfaceId?: string | undefined;
1003
1003
  /**
1004
1004
  * <p>The ID of a subnet associated with the network interface.</p>
1005
1005
  * @public
1006
1006
  */
1007
- subnetId?: string;
1007
+ subnetId?: string | undefined;
1008
1008
  /**
1009
1009
  * <p>The ID of a VPC associated with the network interface.</p>
1010
1010
  * @public
1011
1011
  */
1012
- vpcId?: string;
1012
+ vpcId?: string | undefined;
1013
1013
  /**
1014
1014
  * <p>The name of a private DNS associated with the network interface.</p>
1015
1015
  * @public
1016
1016
  */
1017
- privateDnsName?: string;
1017
+ privateDnsName?: string | undefined;
1018
1018
  /**
1019
1019
  * <p>The private IP address associated with the network interface.</p>
1020
1020
  * @public
1021
1021
  */
1022
- privateIpAddress?: string;
1022
+ privateIpAddress?: string | undefined;
1023
1023
  /**
1024
1024
  * <p>A list of the private IP addresses associated with the network interface. Includes
1025
1025
  * the privateDnsName and privateIpAddress.</p>
1026
1026
  * @public
1027
1027
  */
1028
- privateIpAddresses?: PrivateIp[];
1028
+ privateIpAddresses?: PrivateIp[] | undefined;
1029
1029
  /**
1030
1030
  * <p>The name of a public DNS associated with the network interface.</p>
1031
1031
  * @public
1032
1032
  */
1033
- publicDnsName?: string;
1033
+ publicDnsName?: string | undefined;
1034
1034
  /**
1035
1035
  * <p>The public IP address from which the network interface is reachable.</p>
1036
1036
  * @public
1037
1037
  */
1038
- publicIp?: string;
1038
+ publicIp?: string | undefined;
1039
1039
  /**
1040
1040
  * <p>The IP addresses associated with the network interface.</p>
1041
1041
  * @public
1042
1042
  */
1043
- ipv6Addresses?: string[];
1043
+ ipv6Addresses?: string[] | undefined;
1044
1044
  /**
1045
1045
  * <p>A list of the security groups associated with the network interface. Includes the
1046
1046
  * groupId and groupName.</p>
1047
1047
  * @public
1048
1048
  */
1049
- securityGroups?: SecurityGroup[];
1049
+ securityGroups?: SecurityGroup[] | undefined;
1050
1050
  }
1051
1051
  /**
1052
1052
  * <p>A key and value pair. This data type is used as a request parameter in the <a>SetTagsForResource</a> action and a response element in the <a>ListTagsForResource</a> action.</p>
@@ -1062,7 +1062,7 @@ export interface Tag {
1062
1062
  * <p>A value assigned to a tag key.</p>
1063
1063
  * @public
1064
1064
  */
1065
- value?: string;
1065
+ value?: string | undefined;
1066
1066
  }
1067
1067
  /**
1068
1068
  * <p>A collection of attributes of the host from which the finding is generated.</p>
@@ -1079,40 +1079,40 @@ export interface AssetAttributes {
1079
1079
  * generated.</p>
1080
1080
  * @public
1081
1081
  */
1082
- agentId?: string;
1082
+ agentId?: string | undefined;
1083
1083
  /**
1084
1084
  * <p>The Auto Scaling group of the EC2 instance where the finding is generated.</p>
1085
1085
  * @public
1086
1086
  */
1087
- autoScalingGroup?: string;
1087
+ autoScalingGroup?: string | undefined;
1088
1088
  /**
1089
1089
  * <p>The ID of the Amazon Machine Image (AMI) that is installed on the EC2 instance where
1090
1090
  * the finding is generated.</p>
1091
1091
  * @public
1092
1092
  */
1093
- amiId?: string;
1093
+ amiId?: string | undefined;
1094
1094
  /**
1095
1095
  * <p>The hostname of the EC2 instance where the finding is generated.</p>
1096
1096
  * @public
1097
1097
  */
1098
- hostname?: string;
1098
+ hostname?: string | undefined;
1099
1099
  /**
1100
1100
  * <p>The list of IP v4 addresses of the EC2 instance where the finding is
1101
1101
  * generated.</p>
1102
1102
  * @public
1103
1103
  */
1104
- ipv4Addresses?: string[];
1104
+ ipv4Addresses?: string[] | undefined;
1105
1105
  /**
1106
1106
  * <p>The tags related to the EC2 instance where the finding is generated.</p>
1107
1107
  * @public
1108
1108
  */
1109
- tags?: Tag[];
1109
+ tags?: Tag[] | undefined;
1110
1110
  /**
1111
1111
  * <p>An array of the network interfaces interacting with the EC2 instance where the
1112
1112
  * finding is generated.</p>
1113
1113
  * @public
1114
1114
  */
1115
- networkInterfaces?: NetworkInterface[];
1115
+ networkInterfaces?: NetworkInterface[] | undefined;
1116
1116
  }
1117
1117
  /**
1118
1118
  * @public
@@ -1141,7 +1141,7 @@ export interface CreateAssessmentTargetRequest {
1141
1141
  * and region are included in the assessment target.</p>
1142
1142
  * @public
1143
1143
  */
1144
- resourceGroupArn?: string;
1144
+ resourceGroupArn?: string | undefined;
1145
1145
  }
1146
1146
  /**
1147
1147
  * @public
@@ -1262,7 +1262,7 @@ export interface CreateAssessmentTemplateRequest {
1262
1262
  * unique.</p>
1263
1263
  * @public
1264
1264
  */
1265
- userAttributesForFindings?: Attribute[];
1265
+ userAttributesForFindings?: Attribute[] | undefined;
1266
1266
  }
1267
1267
  /**
1268
1268
  * @public
@@ -1325,7 +1325,7 @@ export interface ResourceGroupTag {
1325
1325
  * <p>The value assigned to a tag key.</p>
1326
1326
  * @public
1327
1327
  */
1328
- value?: string;
1328
+ value?: string | undefined;
1329
1329
  }
1330
1330
  /**
1331
1331
  * @public
@@ -1500,7 +1500,7 @@ export interface DescribeExclusionsRequest {
1500
1500
  * recommendation.</p>
1501
1501
  * @public
1502
1502
  */
1503
- locale?: Locale;
1503
+ locale?: Locale | undefined;
1504
1504
  }
1505
1505
  /**
1506
1506
  * @public
@@ -1524,12 +1524,12 @@ export interface Scope {
1524
1524
  * <p>The type of the scope.</p>
1525
1525
  * @public
1526
1526
  */
1527
- key?: ScopeType;
1527
+ key?: ScopeType | undefined;
1528
1528
  /**
1529
1529
  * <p>The resource identifier for the specified scope type.</p>
1530
1530
  * @public
1531
1531
  */
1532
- value?: string;
1532
+ value?: string | undefined;
1533
1533
  }
1534
1534
  /**
1535
1535
  * <p>Contains information about what was excluded from an assessment run.</p>
@@ -1565,7 +1565,7 @@ export interface Exclusion {
1565
1565
  * <p>The system-defined attributes for the exclusion.</p>
1566
1566
  * @public
1567
1567
  */
1568
- attributes?: Attribute[];
1568
+ attributes?: Attribute[] | undefined;
1569
1569
  }
1570
1570
  /**
1571
1571
  * @public
@@ -1597,7 +1597,7 @@ export interface DescribeFindingsRequest {
1597
1597
  * and the short description that identifies the finding.</p>
1598
1598
  * @public
1599
1599
  */
1600
- locale?: Locale;
1600
+ locale?: Locale | undefined;
1601
1601
  }
1602
1602
  /**
1603
1603
  * <p>This data type is used in the <a>Finding</a> data type.</p>
@@ -1613,12 +1613,12 @@ export interface InspectorServiceAttributes {
1613
1613
  * <p>The ARN of the assessment run during which the finding is generated.</p>
1614
1614
  * @public
1615
1615
  */
1616
- assessmentRunArn?: string;
1616
+ assessmentRunArn?: string | undefined;
1617
1617
  /**
1618
1618
  * <p>The ARN of the rules package that is used to generate the finding.</p>
1619
1619
  * @public
1620
1620
  */
1621
- rulesPackageArn?: string;
1621
+ rulesPackageArn?: string | undefined;
1622
1622
  }
1623
1623
  /**
1624
1624
  * <p>Contains information about an Amazon Inspector finding. This data type is used as the
@@ -1635,68 +1635,68 @@ export interface Finding {
1635
1635
  * <p>The schema version of this data type.</p>
1636
1636
  * @public
1637
1637
  */
1638
- schemaVersion?: number;
1638
+ schemaVersion?: number | undefined;
1639
1639
  /**
1640
1640
  * <p>The data element is set to "Inspector".</p>
1641
1641
  * @public
1642
1642
  */
1643
- service?: string;
1643
+ service?: string | undefined;
1644
1644
  /**
1645
1645
  * <p>This data type is used in the <a>Finding</a> data type.</p>
1646
1646
  * @public
1647
1647
  */
1648
- serviceAttributes?: InspectorServiceAttributes;
1648
+ serviceAttributes?: InspectorServiceAttributes | undefined;
1649
1649
  /**
1650
1650
  * <p>The type of the host from which the finding is generated.</p>
1651
1651
  * @public
1652
1652
  */
1653
- assetType?: AssetType;
1653
+ assetType?: AssetType | undefined;
1654
1654
  /**
1655
1655
  * <p>A collection of attributes of the host from which the finding is generated.</p>
1656
1656
  * @public
1657
1657
  */
1658
- assetAttributes?: AssetAttributes;
1658
+ assetAttributes?: AssetAttributes | undefined;
1659
1659
  /**
1660
1660
  * <p>The ID of the finding.</p>
1661
1661
  * @public
1662
1662
  */
1663
- id?: string;
1663
+ id?: string | undefined;
1664
1664
  /**
1665
1665
  * <p>The name of the finding.</p>
1666
1666
  * @public
1667
1667
  */
1668
- title?: string;
1668
+ title?: string | undefined;
1669
1669
  /**
1670
1670
  * <p>The description of the finding.</p>
1671
1671
  * @public
1672
1672
  */
1673
- description?: string;
1673
+ description?: string | undefined;
1674
1674
  /**
1675
1675
  * <p>The recommendation for the finding.</p>
1676
1676
  * @public
1677
1677
  */
1678
- recommendation?: string;
1678
+ recommendation?: string | undefined;
1679
1679
  /**
1680
1680
  * <p>The finding severity. Values can be set to High, Medium, Low, and
1681
1681
  * Informational.</p>
1682
1682
  * @public
1683
1683
  */
1684
- severity?: Severity;
1684
+ severity?: Severity | undefined;
1685
1685
  /**
1686
1686
  * <p>The numeric value of the finding severity.</p>
1687
1687
  * @public
1688
1688
  */
1689
- numericSeverity?: number;
1689
+ numericSeverity?: number | undefined;
1690
1690
  /**
1691
1691
  * <p>This data element is currently not used.</p>
1692
1692
  * @public
1693
1693
  */
1694
- confidence?: number;
1694
+ confidence?: number | undefined;
1695
1695
  /**
1696
1696
  * <p>This data element is currently not used.</p>
1697
1697
  * @public
1698
1698
  */
1699
- indicatorOfCompromise?: boolean;
1699
+ indicatorOfCompromise?: boolean | undefined;
1700
1700
  /**
1701
1701
  * <p>The system-defined attributes for the finding.</p>
1702
1702
  * @public
@@ -1798,7 +1798,7 @@ export interface DescribeRulesPackagesRequest {
1798
1798
  * <p>The locale that you want to translate a rules package description into.</p>
1799
1799
  * @public
1800
1800
  */
1801
- locale?: Locale;
1801
+ locale?: Locale | undefined;
1802
1802
  }
1803
1803
  /**
1804
1804
  * <p>Contains information about an Amazon Inspector rules package. This data type is used
@@ -1830,7 +1830,7 @@ export interface RulesPackage {
1830
1830
  * <p>The description of the rules package.</p>
1831
1831
  * @public
1832
1832
  */
1833
- description?: string;
1833
+ description?: string | undefined;
1834
1834
  }
1835
1835
  /**
1836
1836
  * @public
@@ -1895,7 +1895,7 @@ export interface ExclusionPreview {
1895
1895
  * <p>The system-defined attributes for the exclusion preview.</p>
1896
1896
  * @public
1897
1897
  */
1898
- attributes?: Attribute[];
1898
+ attributes?: Attribute[] | undefined;
1899
1899
  }
1900
1900
  /**
1901
1901
  * <p>This data type is used as a request parameter in the <a>ListFindings</a>
@@ -1908,51 +1908,51 @@ export interface FindingFilter {
1908
1908
  * type property must be the exact match of the value of the <b>agentId</b> property of the <a>Finding</a> data type.</p>
1909
1909
  * @public
1910
1910
  */
1911
- agentIds?: string[];
1911
+ agentIds?: string[] | undefined;
1912
1912
  /**
1913
1913
  * <p>For a record to match a filter, one of the values that is specified for this data
1914
1914
  * type property must be the exact match of the value of the <b>autoScalingGroup</b> property of the <a>Finding</a> data
1915
1915
  * type.</p>
1916
1916
  * @public
1917
1917
  */
1918
- autoScalingGroups?: string[];
1918
+ autoScalingGroups?: string[] | undefined;
1919
1919
  /**
1920
1920
  * <p>For a record to match a filter, one of the values that is specified for this data
1921
1921
  * type property must be the exact match of the value of the <b>ruleName</b> property of the <a>Finding</a> data type.</p>
1922
1922
  * @public
1923
1923
  */
1924
- ruleNames?: string[];
1924
+ ruleNames?: string[] | undefined;
1925
1925
  /**
1926
1926
  * <p>For a record to match a filter, one of the values that is specified for this data
1927
1927
  * type property must be the exact match of the value of the <b>severity</b> property of the <a>Finding</a> data type.</p>
1928
1928
  * @public
1929
1929
  */
1930
- severities?: Severity[];
1930
+ severities?: Severity[] | undefined;
1931
1931
  /**
1932
1932
  * <p>For a record to match a filter, one of the values that is specified for this data
1933
1933
  * type property must be the exact match of the value of the <b>rulesPackageArn</b> property of the <a>Finding</a> data
1934
1934
  * type.</p>
1935
1935
  * @public
1936
1936
  */
1937
- rulesPackageArns?: string[];
1937
+ rulesPackageArns?: string[] | undefined;
1938
1938
  /**
1939
1939
  * <p>For a record to match a filter, the list of values that are specified for this data
1940
1940
  * type property must be contained in the list of values of the <b>attributes</b> property of the <a>Finding</a> data type.</p>
1941
1941
  * @public
1942
1942
  */
1943
- attributes?: Attribute[];
1943
+ attributes?: Attribute[] | undefined;
1944
1944
  /**
1945
1945
  * <p>For a record to match a filter, the value that is specified for this data type
1946
1946
  * property must be contained in the list of values of the <b>userAttributes</b> property of the <a>Finding</a> data
1947
1947
  * type.</p>
1948
1948
  * @public
1949
1949
  */
1950
- userAttributes?: Attribute[];
1950
+ userAttributes?: Attribute[] | undefined;
1951
1951
  /**
1952
1952
  * <p>The time range during which the finding is generated.</p>
1953
1953
  * @public
1954
1954
  */
1955
- creationTimeRange?: TimestampRange;
1955
+ creationTimeRange?: TimestampRange | undefined;
1956
1956
  }
1957
1957
  /**
1958
1958
  * @public
@@ -2029,7 +2029,7 @@ export interface GetAssessmentReportResponse {
2029
2029
  * is only returned if the report is successfully generated.</p>
2030
2030
  * @public
2031
2031
  */
2032
- url?: string;
2032
+ url?: string | undefined;
2033
2033
  }
2034
2034
  /**
2035
2035
  * <p>Used by the <a>GetAssessmentReport</a> API. The request was rejected
@@ -2070,19 +2070,19 @@ export interface GetExclusionsPreviewRequest {
2070
2070
  * response to continue listing data.</p>
2071
2071
  * @public
2072
2072
  */
2073
- nextToken?: string;
2073
+ nextToken?: string | undefined;
2074
2074
  /**
2075
2075
  * <p>You can use this parameter to indicate the maximum number of items you want in the
2076
2076
  * response. The default value is 100. The maximum value is 500.</p>
2077
2077
  * @public
2078
2078
  */
2079
- maxResults?: number;
2079
+ maxResults?: number | undefined;
2080
2080
  /**
2081
2081
  * <p>The locale into which you want to translate the exclusion's title, description, and
2082
2082
  * recommendation.</p>
2083
2083
  * @public
2084
2084
  */
2085
- locale?: Locale;
2085
+ locale?: Locale | undefined;
2086
2086
  }
2087
2087
  /**
2088
2088
  * @public
@@ -2109,7 +2109,7 @@ export interface GetExclusionsPreviewResponse {
2109
2109
  * <p>Information about the exclusions included in the preview.</p>
2110
2110
  * @public
2111
2111
  */
2112
- exclusionPreviews?: ExclusionPreview[];
2112
+ exclusionPreviews?: ExclusionPreview[] | undefined;
2113
2113
  /**
2114
2114
  * <p>When a response is generated, if there is more data to be listed, this parameters is
2115
2115
  * present in the response and contains the value to use for the nextToken parameter in a
@@ -2117,7 +2117,7 @@ export interface GetExclusionsPreviewResponse {
2117
2117
  * to null.</p>
2118
2118
  * @public
2119
2119
  */
2120
- nextToken?: string;
2120
+ nextToken?: string | undefined;
2121
2121
  }
2122
2122
  /**
2123
2123
  * @public
@@ -2157,7 +2157,7 @@ export interface ListAssessmentRunAgentsRequest {
2157
2157
  * match.</p>
2158
2158
  * @public
2159
2159
  */
2160
- filter?: AgentFilter;
2160
+ filter?: AgentFilter | undefined;
2161
2161
  /**
2162
2162
  * <p>You can use this parameter when paginating results. Set the value of this parameter
2163
2163
  * to null on your first call to the <b>ListAssessmentRunAgents</b>
@@ -2166,13 +2166,13 @@ export interface ListAssessmentRunAgentsRequest {
2166
2166
  * response to continue listing data.</p>
2167
2167
  * @public
2168
2168
  */
2169
- nextToken?: string;
2169
+ nextToken?: string | undefined;
2170
2170
  /**
2171
2171
  * <p>You can use this parameter to indicate the maximum number of items that you want in
2172
2172
  * the response. The default value is 10. The maximum value is 500.</p>
2173
2173
  * @public
2174
2174
  */
2175
- maxResults?: number;
2175
+ maxResults?: number | undefined;
2176
2176
  }
2177
2177
  /**
2178
2178
  * @public
@@ -2189,7 +2189,7 @@ export interface ListAssessmentRunAgentsResponse {
2189
2189
  * data to be listed, this parameter is set to null.</p>
2190
2190
  * @public
2191
2191
  */
2192
- nextToken?: string;
2192
+ nextToken?: string | undefined;
2193
2193
  }
2194
2194
  /**
2195
2195
  * @public
@@ -2200,7 +2200,7 @@ export interface ListAssessmentRunsRequest {
2200
2200
  * list.</p>
2201
2201
  * @public
2202
2202
  */
2203
- assessmentTemplateArns?: string[];
2203
+ assessmentTemplateArns?: string[] | undefined;
2204
2204
  /**
2205
2205
  * <p>You can use this parameter to specify a subset of data to be included in the action's
2206
2206
  * response.</p>
@@ -2209,7 +2209,7 @@ export interface ListAssessmentRunsRequest {
2209
2209
  * match.</p>
2210
2210
  * @public
2211
2211
  */
2212
- filter?: AssessmentRunFilter;
2212
+ filter?: AssessmentRunFilter | undefined;
2213
2213
  /**
2214
2214
  * <p>You can use this parameter when paginating results. Set the value of this parameter
2215
2215
  * to null on your first call to the <b>ListAssessmentRuns</b>
@@ -2218,13 +2218,13 @@ export interface ListAssessmentRunsRequest {
2218
2218
  * response to continue listing data.</p>
2219
2219
  * @public
2220
2220
  */
2221
- nextToken?: string;
2221
+ nextToken?: string | undefined;
2222
2222
  /**
2223
2223
  * <p>You can use this parameter to indicate the maximum number of items that you want in
2224
2224
  * the response. The default value is 10. The maximum value is 500.</p>
2225
2225
  * @public
2226
2226
  */
2227
- maxResults?: number;
2227
+ maxResults?: number | undefined;
2228
2228
  }
2229
2229
  /**
2230
2230
  * @public
@@ -2242,7 +2242,7 @@ export interface ListAssessmentRunsResponse {
2242
2242
  * data to be listed, this parameter is set to null.</p>
2243
2243
  * @public
2244
2244
  */
2245
- nextToken?: string;
2245
+ nextToken?: string | undefined;
2246
2246
  }
2247
2247
  /**
2248
2248
  * @public
@@ -2256,7 +2256,7 @@ export interface ListAssessmentTargetsRequest {
2256
2256
  * match.</p>
2257
2257
  * @public
2258
2258
  */
2259
- filter?: AssessmentTargetFilter;
2259
+ filter?: AssessmentTargetFilter | undefined;
2260
2260
  /**
2261
2261
  * <p>You can use this parameter when paginating results. Set the value of this parameter
2262
2262
  * to null on your first call to the <b>ListAssessmentTargets</b>
@@ -2265,13 +2265,13 @@ export interface ListAssessmentTargetsRequest {
2265
2265
  * response to continue listing data.</p>
2266
2266
  * @public
2267
2267
  */
2268
- nextToken?: string;
2268
+ nextToken?: string | undefined;
2269
2269
  /**
2270
2270
  * <p>You can use this parameter to indicate the maximum number of items you want in the
2271
2271
  * response. The default value is 10. The maximum value is 500.</p>
2272
2272
  * @public
2273
2273
  */
2274
- maxResults?: number;
2274
+ maxResults?: number | undefined;
2275
2275
  }
2276
2276
  /**
2277
2277
  * @public
@@ -2289,7 +2289,7 @@ export interface ListAssessmentTargetsResponse {
2289
2289
  * data to be listed, this parameter is set to null.</p>
2290
2290
  * @public
2291
2291
  */
2292
- nextToken?: string;
2292
+ nextToken?: string | undefined;
2293
2293
  }
2294
2294
  /**
2295
2295
  * @public
@@ -2300,7 +2300,7 @@ export interface ListAssessmentTemplatesRequest {
2300
2300
  * want to list.</p>
2301
2301
  * @public
2302
2302
  */
2303
- assessmentTargetArns?: string[];
2303
+ assessmentTargetArns?: string[] | undefined;
2304
2304
  /**
2305
2305
  * <p>You can use this parameter to specify a subset of data to be included in the action's
2306
2306
  * response.</p>
@@ -2309,7 +2309,7 @@ export interface ListAssessmentTemplatesRequest {
2309
2309
  * match.</p>
2310
2310
  * @public
2311
2311
  */
2312
- filter?: AssessmentTemplateFilter;
2312
+ filter?: AssessmentTemplateFilter | undefined;
2313
2313
  /**
2314
2314
  * <p>You can use this parameter when paginating results. Set the value of this parameter
2315
2315
  * to null on your first call to the <b>ListAssessmentTemplates</b>
@@ -2318,13 +2318,13 @@ export interface ListAssessmentTemplatesRequest {
2318
2318
  * response to continue listing data.</p>
2319
2319
  * @public
2320
2320
  */
2321
- nextToken?: string;
2321
+ nextToken?: string | undefined;
2322
2322
  /**
2323
2323
  * <p>You can use this parameter to indicate the maximum number of items you want in the
2324
2324
  * response. The default value is 10. The maximum value is 500.</p>
2325
2325
  * @public
2326
2326
  */
2327
- maxResults?: number;
2327
+ maxResults?: number | undefined;
2328
2328
  }
2329
2329
  /**
2330
2330
  * @public
@@ -2342,7 +2342,7 @@ export interface ListAssessmentTemplatesResponse {
2342
2342
  * data to be listed, this parameter is set to null.</p>
2343
2343
  * @public
2344
2344
  */
2345
- nextToken?: string;
2345
+ nextToken?: string | undefined;
2346
2346
  }
2347
2347
  /**
2348
2348
  * @public
@@ -2353,7 +2353,7 @@ export interface ListEventSubscriptionsRequest {
2353
2353
  * subscriptions.</p>
2354
2354
  * @public
2355
2355
  */
2356
- resourceArn?: string;
2356
+ resourceArn?: string | undefined;
2357
2357
  /**
2358
2358
  * <p>You can use this parameter when paginating results. Set the value of this parameter
2359
2359
  * to null on your first call to the <b>ListEventSubscriptions</b>
@@ -2362,13 +2362,13 @@ export interface ListEventSubscriptionsRequest {
2362
2362
  * response to continue listing data.</p>
2363
2363
  * @public
2364
2364
  */
2365
- nextToken?: string;
2365
+ nextToken?: string | undefined;
2366
2366
  /**
2367
2367
  * <p>You can use this parameter to indicate the maximum number of items you want in the
2368
2368
  * response. The default value is 10. The maximum value is 500.</p>
2369
2369
  * @public
2370
2370
  */
2371
- maxResults?: number;
2371
+ maxResults?: number | undefined;
2372
2372
  }
2373
2373
  /**
2374
2374
  * <p>This data type is used as a response element in the <a>ListEventSubscriptions</a> action.</p>
@@ -2408,7 +2408,7 @@ export interface ListEventSubscriptionsResponse {
2408
2408
  * data to be listed, this parameter is set to null.</p>
2409
2409
  * @public
2410
2410
  */
2411
- nextToken?: string;
2411
+ nextToken?: string | undefined;
2412
2412
  }
2413
2413
  /**
2414
2414
  * @public
@@ -2427,13 +2427,13 @@ export interface ListExclusionsRequest {
2427
2427
  * to continue listing data.</p>
2428
2428
  * @public
2429
2429
  */
2430
- nextToken?: string;
2430
+ nextToken?: string | undefined;
2431
2431
  /**
2432
2432
  * <p>You can use this parameter to indicate the maximum number of items you want in the
2433
2433
  * response. The default value is 100. The maximum value is 500.</p>
2434
2434
  * @public
2435
2435
  */
2436
- maxResults?: number;
2436
+ maxResults?: number | undefined;
2437
2437
  }
2438
2438
  /**
2439
2439
  * @public
@@ -2451,7 +2451,7 @@ export interface ListExclusionsResponse {
2451
2451
  * to null.</p>
2452
2452
  * @public
2453
2453
  */
2454
- nextToken?: string;
2454
+ nextToken?: string | undefined;
2455
2455
  }
2456
2456
  /**
2457
2457
  * @public
@@ -2462,7 +2462,7 @@ export interface ListFindingsRequest {
2462
2462
  * list.</p>
2463
2463
  * @public
2464
2464
  */
2465
- assessmentRunArns?: string[];
2465
+ assessmentRunArns?: string[] | undefined;
2466
2466
  /**
2467
2467
  * <p>You can use this parameter to specify a subset of data to be included in the action's
2468
2468
  * response.</p>
@@ -2471,7 +2471,7 @@ export interface ListFindingsRequest {
2471
2471
  * match.</p>
2472
2472
  * @public
2473
2473
  */
2474
- filter?: FindingFilter;
2474
+ filter?: FindingFilter | undefined;
2475
2475
  /**
2476
2476
  * <p>You can use this parameter when paginating results. Set the value of this parameter
2477
2477
  * to null on your first call to the <b>ListFindings</b> action.
@@ -2480,13 +2480,13 @@ export interface ListFindingsRequest {
2480
2480
  * response to continue listing data.</p>
2481
2481
  * @public
2482
2482
  */
2483
- nextToken?: string;
2483
+ nextToken?: string | undefined;
2484
2484
  /**
2485
2485
  * <p>You can use this parameter to indicate the maximum number of items you want in the
2486
2486
  * response. The default value is 10. The maximum value is 500.</p>
2487
2487
  * @public
2488
2488
  */
2489
- maxResults?: number;
2489
+ maxResults?: number | undefined;
2490
2490
  }
2491
2491
  /**
2492
2492
  * @public
@@ -2503,7 +2503,7 @@ export interface ListFindingsResponse {
2503
2503
  * data to be listed, this parameter is set to null.</p>
2504
2504
  * @public
2505
2505
  */
2506
- nextToken?: string;
2506
+ nextToken?: string | undefined;
2507
2507
  }
2508
2508
  /**
2509
2509
  * @public
@@ -2517,13 +2517,13 @@ export interface ListRulesPackagesRequest {
2517
2517
  * response to continue listing data.</p>
2518
2518
  * @public
2519
2519
  */
2520
- nextToken?: string;
2520
+ nextToken?: string | undefined;
2521
2521
  /**
2522
2522
  * <p>You can use this parameter to indicate the maximum number of items you want in the
2523
2523
  * response. The default value is 10. The maximum value is 500.</p>
2524
2524
  * @public
2525
2525
  */
2526
- maxResults?: number;
2526
+ maxResults?: number | undefined;
2527
2527
  }
2528
2528
  /**
2529
2529
  * @public
@@ -2540,7 +2540,7 @@ export interface ListRulesPackagesResponse {
2540
2540
  * data to be listed, this parameter is set to null.</p>
2541
2541
  * @public
2542
2542
  */
2543
- nextToken?: string;
2543
+ nextToken?: string | undefined;
2544
2544
  }
2545
2545
  /**
2546
2546
  * @public
@@ -2579,13 +2579,13 @@ export interface PreviewAgentsRequest {
2579
2579
  * response to continue listing data.</p>
2580
2580
  * @public
2581
2581
  */
2582
- nextToken?: string;
2582
+ nextToken?: string | undefined;
2583
2583
  /**
2584
2584
  * <p>You can use this parameter to indicate the maximum number of items you want in the
2585
2585
  * response. The default value is 10. The maximum value is 500.</p>
2586
2586
  * @public
2587
2587
  */
2588
- maxResults?: number;
2588
+ maxResults?: number | undefined;
2589
2589
  }
2590
2590
  /**
2591
2591
  * @public
@@ -2602,7 +2602,7 @@ export interface PreviewAgentsResponse {
2602
2602
  * data to be listed, this parameter is set to null.</p>
2603
2603
  * @public
2604
2604
  */
2605
- nextToken?: string;
2605
+ nextToken?: string | undefined;
2606
2606
  }
2607
2607
  /**
2608
2608
  * @public
@@ -2656,7 +2656,7 @@ export interface SetTagsForResourceRequest {
2656
2656
  * template.</p>
2657
2657
  * @public
2658
2658
  */
2659
- tags?: Tag[];
2659
+ tags?: Tag[] | undefined;
2660
2660
  }
2661
2661
  /**
2662
2662
  * @public
@@ -2673,7 +2673,7 @@ export interface StartAssessmentRunRequest {
2673
2673
  * assessment template whose ARN is used to start the assessment run.</p>
2674
2674
  * @public
2675
2675
  */
2676
- assessmentRunName?: string;
2676
+ assessmentRunName?: string | undefined;
2677
2677
  }
2678
2678
  /**
2679
2679
  * @public
@@ -2713,7 +2713,7 @@ export interface StopAssessmentRunRequest {
2713
2713
  * assessment run immediately, after which no findings are generated.</p>
2714
2714
  * @public
2715
2715
  */
2716
- stopAction?: StopAction;
2716
+ stopAction?: StopAction | undefined;
2717
2717
  }
2718
2718
  /**
2719
2719
  * @public
@@ -2776,5 +2776,5 @@ export interface UpdateAssessmentTargetRequest {
2776
2776
  * associate with the assessment target.</p>
2777
2777
  * @public
2778
2778
  */
2779
- resourceGroupArn?: string;
2779
+ resourceGroupArn?: string | undefined;
2780
2780
  }