@aws-sdk/client-securityhub 3.301.0 → 3.303.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.
@@ -61,11 +61,16 @@ export interface AwsIamAccessKeySessionContext {
61
61
  }
62
62
  /**
63
63
  * @public
64
+ * @enum
64
65
  */
65
- export declare enum AwsIamAccessKeyStatus {
66
- ACTIVE = "Active",
67
- INACTIVE = "Inactive"
68
- }
66
+ export declare const AwsIamAccessKeyStatus: {
67
+ readonly ACTIVE: "Active";
68
+ readonly INACTIVE: "Inactive";
69
+ };
70
+ /**
71
+ * @public
72
+ */
73
+ export type AwsIamAccessKeyStatus = (typeof AwsIamAccessKeyStatus)[keyof typeof AwsIamAccessKeyStatus];
69
74
  /**
70
75
  * @public
71
76
  * <p>IAM access key details related to a finding.</p>
@@ -3831,11 +3836,16 @@ export interface AwsS3BucketLoggingConfiguration {
3831
3836
  }
3832
3837
  /**
3833
3838
  * @public
3839
+ * @enum
3834
3840
  */
3835
- export declare enum AwsS3BucketNotificationConfigurationS3KeyFilterRuleName {
3836
- PREFIX = "Prefix",
3837
- SUFFIX = "Suffix"
3838
- }
3841
+ export declare const AwsS3BucketNotificationConfigurationS3KeyFilterRuleName: {
3842
+ readonly PREFIX: "Prefix";
3843
+ readonly SUFFIX: "Suffix";
3844
+ };
3845
+ /**
3846
+ * @public
3847
+ */
3848
+ export type AwsS3BucketNotificationConfigurationS3KeyFilterRuleName = (typeof AwsS3BucketNotificationConfigurationS3KeyFilterRuleName)[keyof typeof AwsS3BucketNotificationConfigurationS3KeyFilterRuleName];
3839
3849
  /**
3840
3850
  * @public
3841
3851
  * <p>Details for a filter rule.</p>
@@ -4415,13 +4425,18 @@ export interface AwsSecretsManagerSecretDetails {
4415
4425
  }
4416
4426
  /**
4417
4427
  * @public
4428
+ * @enum
4418
4429
  */
4419
- export declare enum ComplianceStatus {
4420
- FAILED = "FAILED",
4421
- NOT_AVAILABLE = "NOT_AVAILABLE",
4422
- PASSED = "PASSED",
4423
- WARNING = "WARNING"
4424
- }
4430
+ export declare const ComplianceStatus: {
4431
+ readonly FAILED: "FAILED";
4432
+ readonly NOT_AVAILABLE: "NOT_AVAILABLE";
4433
+ readonly PASSED: "PASSED";
4434
+ readonly WARNING: "WARNING";
4435
+ };
4436
+ /**
4437
+ * @public
4438
+ */
4439
+ export type ComplianceStatus = (typeof ComplianceStatus)[keyof typeof ComplianceStatus];
4425
4440
  /**
4426
4441
  * @public
4427
4442
  * <p>Provides additional context for the value of <code>Compliance.Status</code>.</p>
@@ -4518,14 +4533,19 @@ export interface RelatedFinding {
4518
4533
  }
4519
4534
  /**
4520
4535
  * @public
4536
+ * @enum
4521
4537
  */
4522
- export declare enum SeverityLabel {
4523
- CRITICAL = "CRITICAL",
4524
- HIGH = "HIGH",
4525
- INFORMATIONAL = "INFORMATIONAL",
4526
- LOW = "LOW",
4527
- MEDIUM = "MEDIUM"
4528
- }
4538
+ export declare const SeverityLabel: {
4539
+ readonly CRITICAL: "CRITICAL";
4540
+ readonly HIGH: "HIGH";
4541
+ readonly INFORMATIONAL: "INFORMATIONAL";
4542
+ readonly LOW: "LOW";
4543
+ readonly MEDIUM: "MEDIUM";
4544
+ };
4545
+ /**
4546
+ * @public
4547
+ */
4548
+ export type SeverityLabel = (typeof SeverityLabel)[keyof typeof SeverityLabel];
4529
4549
  /**
4530
4550
  * @public
4531
4551
  * <p>The severity assigned to the finding by the finding provider.</p>
@@ -4576,32 +4596,42 @@ export interface FindingProviderFields {
4576
4596
  }
4577
4597
  /**
4578
4598
  * @public
4599
+ * @enum
4579
4600
  */
4580
- export declare enum MalwareState {
4581
- OBSERVED = "OBSERVED",
4582
- REMOVAL_FAILED = "REMOVAL_FAILED",
4583
- REMOVED = "REMOVED"
4584
- }
4601
+ export declare const MalwareState: {
4602
+ readonly OBSERVED: "OBSERVED";
4603
+ readonly REMOVAL_FAILED: "REMOVAL_FAILED";
4604
+ readonly REMOVED: "REMOVED";
4605
+ };
4585
4606
  /**
4586
4607
  * @public
4587
4608
  */
4588
- export declare enum MalwareType {
4589
- ADWARE = "ADWARE",
4590
- BLENDED_THREAT = "BLENDED_THREAT",
4591
- BOTNET_AGENT = "BOTNET_AGENT",
4592
- COIN_MINER = "COIN_MINER",
4593
- EXPLOIT_KIT = "EXPLOIT_KIT",
4594
- KEYLOGGER = "KEYLOGGER",
4595
- MACRO = "MACRO",
4596
- POTENTIALLY_UNWANTED = "POTENTIALLY_UNWANTED",
4597
- RANSOMWARE = "RANSOMWARE",
4598
- REMOTE_ACCESS = "REMOTE_ACCESS",
4599
- ROOTKIT = "ROOTKIT",
4600
- SPYWARE = "SPYWARE",
4601
- TROJAN = "TROJAN",
4602
- VIRUS = "VIRUS",
4603
- WORM = "WORM"
4604
- }
4609
+ export type MalwareState = (typeof MalwareState)[keyof typeof MalwareState];
4610
+ /**
4611
+ * @public
4612
+ * @enum
4613
+ */
4614
+ export declare const MalwareType: {
4615
+ readonly ADWARE: "ADWARE";
4616
+ readonly BLENDED_THREAT: "BLENDED_THREAT";
4617
+ readonly BOTNET_AGENT: "BOTNET_AGENT";
4618
+ readonly COIN_MINER: "COIN_MINER";
4619
+ readonly EXPLOIT_KIT: "EXPLOIT_KIT";
4620
+ readonly KEYLOGGER: "KEYLOGGER";
4621
+ readonly MACRO: "MACRO";
4622
+ readonly POTENTIALLY_UNWANTED: "POTENTIALLY_UNWANTED";
4623
+ readonly RANSOMWARE: "RANSOMWARE";
4624
+ readonly REMOTE_ACCESS: "REMOTE_ACCESS";
4625
+ readonly ROOTKIT: "ROOTKIT";
4626
+ readonly SPYWARE: "SPYWARE";
4627
+ readonly TROJAN: "TROJAN";
4628
+ readonly VIRUS: "VIRUS";
4629
+ readonly WORM: "WORM";
4630
+ };
4631
+ /**
4632
+ * @public
4633
+ */
4634
+ export type MalwareType = (typeof MalwareType)[keyof typeof MalwareType];
4605
4635
  /**
4606
4636
  * @public
4607
4637
  * <p>A list of malware related to a finding.</p>
@@ -4626,11 +4656,16 @@ export interface Malware {
4626
4656
  }
4627
4657
  /**
4628
4658
  * @public
4659
+ * @enum
4629
4660
  */
4630
- export declare enum NetworkDirection {
4631
- IN = "IN",
4632
- OUT = "OUT"
4633
- }
4661
+ export declare const NetworkDirection: {
4662
+ readonly IN: "IN";
4663
+ readonly OUT: "OUT";
4664
+ };
4665
+ /**
4666
+ * @public
4667
+ */
4668
+ export type NetworkDirection = (typeof NetworkDirection)[keyof typeof NetworkDirection];
4634
4669
  /**
4635
4670
  * @public
4636
4671
  * <p>A range of ports.</p>
@@ -4879,11 +4914,16 @@ export interface ProcessDetails {
4879
4914
  }
4880
4915
  /**
4881
4916
  * @public
4917
+ * @enum
4882
4918
  */
4883
- export declare enum RecordState {
4884
- ACTIVE = "ACTIVE",
4885
- ARCHIVED = "ARCHIVED"
4886
- }
4919
+ export declare const RecordState: {
4920
+ readonly ACTIVE: "ACTIVE";
4921
+ readonly ARCHIVED: "ARCHIVED";
4922
+ };
4923
+ /**
4924
+ * @public
4925
+ */
4926
+ export type RecordState = (typeof RecordState)[keyof typeof RecordState];
4887
4927
  /**
4888
4928
  * @public
4889
4929
  * <p>A recommendation on how to remediate the issue identified in a finding.</p>
@@ -6892,12 +6932,17 @@ export interface ResourceDetails {
6892
6932
  }
6893
6933
  /**
6894
6934
  * @public
6935
+ * @enum
6895
6936
  */
6896
- export declare enum Partition {
6897
- AWS = "aws",
6898
- AWS_CN = "aws-cn",
6899
- AWS_US_GOV = "aws-us-gov"
6900
- }
6937
+ export declare const Partition: {
6938
+ readonly AWS: "aws";
6939
+ readonly AWS_CN: "aws-cn";
6940
+ readonly AWS_US_GOV: "aws-us-gov";
6941
+ };
6942
+ /**
6943
+ * @public
6944
+ */
6945
+ export type Partition = (typeof Partition)[keyof typeof Partition];
6901
6946
  /**
6902
6947
  * @public
6903
6948
  * <p>A resource related to a finding.</p>
@@ -7047,31 +7092,41 @@ export interface Severity {
7047
7092
  }
7048
7093
  /**
7049
7094
  * @public
7095
+ * @enum
7050
7096
  */
7051
- export declare enum ThreatIntelIndicatorCategory {
7052
- BACKDOOR = "BACKDOOR",
7053
- CARD_STEALER = "CARD_STEALER",
7054
- COMMAND_AND_CONTROL = "COMMAND_AND_CONTROL",
7055
- DROP_SITE = "DROP_SITE",
7056
- EXPLOIT_SITE = "EXPLOIT_SITE",
7057
- KEYLOGGER = "KEYLOGGER"
7058
- }
7097
+ export declare const ThreatIntelIndicatorCategory: {
7098
+ readonly BACKDOOR: "BACKDOOR";
7099
+ readonly CARD_STEALER: "CARD_STEALER";
7100
+ readonly COMMAND_AND_CONTROL: "COMMAND_AND_CONTROL";
7101
+ readonly DROP_SITE: "DROP_SITE";
7102
+ readonly EXPLOIT_SITE: "EXPLOIT_SITE";
7103
+ readonly KEYLOGGER: "KEYLOGGER";
7104
+ };
7059
7105
  /**
7060
7106
  * @public
7061
7107
  */
7062
- export declare enum ThreatIntelIndicatorType {
7063
- DOMAIN = "DOMAIN",
7064
- EMAIL_ADDRESS = "EMAIL_ADDRESS",
7065
- HASH_MD5 = "HASH_MD5",
7066
- HASH_SHA1 = "HASH_SHA1",
7067
- HASH_SHA256 = "HASH_SHA256",
7068
- HASH_SHA512 = "HASH_SHA512",
7069
- IPV4_ADDRESS = "IPV4_ADDRESS",
7070
- IPV6_ADDRESS = "IPV6_ADDRESS",
7071
- MUTEX = "MUTEX",
7072
- PROCESS = "PROCESS",
7073
- URL = "URL"
7074
- }
7108
+ export type ThreatIntelIndicatorCategory = (typeof ThreatIntelIndicatorCategory)[keyof typeof ThreatIntelIndicatorCategory];
7109
+ /**
7110
+ * @public
7111
+ * @enum
7112
+ */
7113
+ export declare const ThreatIntelIndicatorType: {
7114
+ readonly DOMAIN: "DOMAIN";
7115
+ readonly EMAIL_ADDRESS: "EMAIL_ADDRESS";
7116
+ readonly HASH_MD5: "HASH_MD5";
7117
+ readonly HASH_SHA1: "HASH_SHA1";
7118
+ readonly HASH_SHA256: "HASH_SHA256";
7119
+ readonly HASH_SHA512: "HASH_SHA512";
7120
+ readonly IPV4_ADDRESS: "IPV4_ADDRESS";
7121
+ readonly IPV6_ADDRESS: "IPV6_ADDRESS";
7122
+ readonly MUTEX: "MUTEX";
7123
+ readonly PROCESS: "PROCESS";
7124
+ readonly URL: "URL";
7125
+ };
7126
+ /**
7127
+ * @public
7128
+ */
7129
+ export type ThreatIntelIndicatorType = (typeof ThreatIntelIndicatorType)[keyof typeof ThreatIntelIndicatorType];
7075
7130
  /**
7076
7131
  * @public
7077
7132
  * <p>Details about the threat intelligence related to a finding.</p>
@@ -7163,13 +7218,18 @@ export interface Threat {
7163
7218
  }
7164
7219
  /**
7165
7220
  * @public
7221
+ * @enum
7166
7222
  */
7167
- export declare enum VerificationState {
7168
- BENIGN_POSITIVE = "BENIGN_POSITIVE",
7169
- FALSE_POSITIVE = "FALSE_POSITIVE",
7170
- TRUE_POSITIVE = "TRUE_POSITIVE",
7171
- UNKNOWN = "UNKNOWN"
7172
- }
7223
+ export declare const VerificationState: {
7224
+ readonly BENIGN_POSITIVE: "BENIGN_POSITIVE";
7225
+ readonly FALSE_POSITIVE: "FALSE_POSITIVE";
7226
+ readonly TRUE_POSITIVE: "TRUE_POSITIVE";
7227
+ readonly UNKNOWN: "UNKNOWN";
7228
+ };
7229
+ /**
7230
+ * @public
7231
+ */
7232
+ export type VerificationState = (typeof VerificationState)[keyof typeof VerificationState];
7173
7233
  /**
7174
7234
  * @public
7175
7235
  * <p>CVSS scores from the advisory related to the vulnerability.</p>
@@ -7198,12 +7258,17 @@ export interface Cvss {
7198
7258
  }
7199
7259
  /**
7200
7260
  * @public
7261
+ * @enum
7201
7262
  */
7202
- export declare enum VulnerabilityFixAvailable {
7203
- NO = "NO",
7204
- PARTIAL = "PARTIAL",
7205
- YES = "YES"
7206
- }
7263
+ export declare const VulnerabilityFixAvailable: {
7264
+ readonly NO: "NO";
7265
+ readonly PARTIAL: "PARTIAL";
7266
+ readonly YES: "YES";
7267
+ };
7268
+ /**
7269
+ * @public
7270
+ */
7271
+ export type VulnerabilityFixAvailable = (typeof VulnerabilityFixAvailable)[keyof typeof VulnerabilityFixAvailable];
7207
7272
  /**
7208
7273
  * @public
7209
7274
  * <p>A vendor that generates a vulnerability report.</p>
@@ -7345,13 +7410,18 @@ export interface Vulnerability {
7345
7410
  }
7346
7411
  /**
7347
7412
  * @public
7413
+ * @enum
7348
7414
  */
7349
- export declare enum WorkflowStatus {
7350
- NEW = "NEW",
7351
- NOTIFIED = "NOTIFIED",
7352
- RESOLVED = "RESOLVED",
7353
- SUPPRESSED = "SUPPRESSED"
7354
- }
7415
+ export declare const WorkflowStatus: {
7416
+ readonly NEW: "NEW";
7417
+ readonly NOTIFIED: "NOTIFIED";
7418
+ readonly RESOLVED: "RESOLVED";
7419
+ readonly SUPPRESSED: "SUPPRESSED";
7420
+ };
7421
+ /**
7422
+ * @public
7423
+ */
7424
+ export type WorkflowStatus = (typeof WorkflowStatus)[keyof typeof WorkflowStatus];
7355
7425
  /**
7356
7426
  * @public
7357
7427
  * <p>Provides information about the status of the investigation into a finding.</p>
@@ -7401,14 +7471,19 @@ export interface Workflow {
7401
7471
  }
7402
7472
  /**
7403
7473
  * @public
7474
+ * @enum
7404
7475
  */
7405
- export declare enum WorkflowState {
7406
- ASSIGNED = "ASSIGNED",
7407
- DEFERRED = "DEFERRED",
7408
- IN_PROGRESS = "IN_PROGRESS",
7409
- NEW = "NEW",
7410
- RESOLVED = "RESOLVED"
7411
- }
7476
+ export declare const WorkflowState: {
7477
+ readonly ASSIGNED: "ASSIGNED";
7478
+ readonly DEFERRED: "DEFERRED";
7479
+ readonly IN_PROGRESS: "IN_PROGRESS";
7480
+ readonly NEW: "NEW";
7481
+ readonly RESOLVED: "RESOLVED";
7482
+ };
7483
+ /**
7484
+ * @public
7485
+ */
7486
+ export type WorkflowState = (typeof WorkflowState)[keyof typeof WorkflowState];
7412
7487
  /**
7413
7488
  * @public
7414
7489
  * <p>Provides a consistent format for Security Hub findings.
@@ -7637,13 +7712,18 @@ export interface AwsSecurityFinding {
7637
7712
  }
7638
7713
  /**
7639
7714
  * @public
7715
+ * @enum
7640
7716
  */
7641
- export declare enum StringFilterComparison {
7642
- EQUALS = "EQUALS",
7643
- NOT_EQUALS = "NOT_EQUALS",
7644
- PREFIX = "PREFIX",
7645
- PREFIX_NOT_EQUALS = "PREFIX_NOT_EQUALS"
7646
- }
7717
+ export declare const StringFilterComparison: {
7718
+ readonly EQUALS: "EQUALS";
7719
+ readonly NOT_EQUALS: "NOT_EQUALS";
7720
+ readonly PREFIX: "PREFIX";
7721
+ readonly PREFIX_NOT_EQUALS: "PREFIX_NOT_EQUALS";
7722
+ };
7723
+ /**
7724
+ * @public
7725
+ */
7726
+ export type StringFilterComparison = (typeof StringFilterComparison)[keyof typeof StringFilterComparison];
7647
7727
  /**
7648
7728
  * @public
7649
7729
  * <p>A string filter for querying findings.</p>
@@ -7761,10 +7841,15 @@ export interface NumberFilter {
7761
7841
  }
7762
7842
  /**
7763
7843
  * @public
7844
+ * @enum
7764
7845
  */
7765
- export declare enum DateRangeUnit {
7766
- DAYS = "DAYS"
7767
- }
7846
+ export declare const DateRangeUnit: {
7847
+ readonly DAYS: "DAYS";
7848
+ };
7849
+ /**
7850
+ * @public
7851
+ */
7852
+ export type DateRangeUnit = (typeof DateRangeUnit)[keyof typeof DateRangeUnit];
7768
7853
  /**
7769
7854
  * @public
7770
7855
  * <p>A date range for the date filter.</p>
@@ -7823,11 +7908,16 @@ export interface IpFilter {
7823
7908
  }
7824
7909
  /**
7825
7910
  * @public
7911
+ * @enum
7826
7912
  */
7827
- export declare enum MapFilterComparison {
7828
- EQUALS = "EQUALS",
7829
- NOT_EQUALS = "NOT_EQUALS"
7830
- }
7913
+ export declare const MapFilterComparison: {
7914
+ readonly EQUALS: "EQUALS";
7915
+ readonly NOT_EQUALS: "NOT_EQUALS";
7916
+ };
7917
+ /**
7918
+ * @public
7919
+ */
7920
+ export type MapFilterComparison = (typeof MapFilterComparison)[keyof typeof MapFilterComparison];
7831
7921
  /**
7832
7922
  * @public
7833
7923
  * <p>A map filter for querying findings. Each map filter provides the field to check, the
@@ -8427,21 +8517,31 @@ export interface BatchDisableStandardsRequest {
8427
8517
  }
8428
8518
  /**
8429
8519
  * @public
8520
+ * @enum
8430
8521
  */
8431
- export declare enum StandardsStatus {
8432
- DELETING = "DELETING",
8433
- FAILED = "FAILED",
8434
- INCOMPLETE = "INCOMPLETE",
8435
- PENDING = "PENDING",
8436
- READY = "READY"
8437
- }
8522
+ export declare const StandardsStatus: {
8523
+ readonly DELETING: "DELETING";
8524
+ readonly FAILED: "FAILED";
8525
+ readonly INCOMPLETE: "INCOMPLETE";
8526
+ readonly PENDING: "PENDING";
8527
+ readonly READY: "READY";
8528
+ };
8438
8529
  /**
8439
8530
  * @public
8440
8531
  */
8441
- export declare enum StatusReasonCode {
8442
- INTERNAL_ERROR = "INTERNAL_ERROR",
8443
- NO_AVAILABLE_CONFIGURATION_RECORDER = "NO_AVAILABLE_CONFIGURATION_RECORDER"
8444
- }
8532
+ export type StandardsStatus = (typeof StandardsStatus)[keyof typeof StandardsStatus];
8533
+ /**
8534
+ * @public
8535
+ * @enum
8536
+ */
8537
+ export declare const StatusReasonCode: {
8538
+ readonly INTERNAL_ERROR: "INTERNAL_ERROR";
8539
+ readonly NO_AVAILABLE_CONFIGURATION_RECORDER: "NO_AVAILABLE_CONFIGURATION_RECORDER";
8540
+ };
8541
+ /**
8542
+ * @public
8543
+ */
8544
+ export type StatusReasonCode = (typeof StatusReasonCode)[keyof typeof StatusReasonCode];
8445
8545
  /**
8446
8546
  * @public
8447
8547
  * <p>The reason for the current status of a standard subscription.</p>
@@ -8556,20 +8656,30 @@ export interface BatchGetSecurityControlsRequest {
8556
8656
  }
8557
8657
  /**
8558
8658
  * @public
8659
+ * @enum
8559
8660
  */
8560
- export declare enum ControlStatus {
8561
- DISABLED = "DISABLED",
8562
- ENABLED = "ENABLED"
8563
- }
8661
+ export declare const ControlStatus: {
8662
+ readonly DISABLED: "DISABLED";
8663
+ readonly ENABLED: "ENABLED";
8664
+ };
8564
8665
  /**
8565
8666
  * @public
8566
8667
  */
8567
- export declare enum SeverityRating {
8568
- CRITICAL = "CRITICAL",
8569
- HIGH = "HIGH",
8570
- LOW = "LOW",
8571
- MEDIUM = "MEDIUM"
8572
- }
8668
+ export type ControlStatus = (typeof ControlStatus)[keyof typeof ControlStatus];
8669
+ /**
8670
+ * @public
8671
+ * @enum
8672
+ */
8673
+ export declare const SeverityRating: {
8674
+ readonly CRITICAL: "CRITICAL";
8675
+ readonly HIGH: "HIGH";
8676
+ readonly LOW: "LOW";
8677
+ readonly MEDIUM: "MEDIUM";
8678
+ };
8679
+ /**
8680
+ * @public
8681
+ */
8682
+ export type SeverityRating = (typeof SeverityRating)[keyof typeof SeverityRating];
8573
8683
  /**
8574
8684
  * @public
8575
8685
  * <p>
@@ -8626,13 +8736,18 @@ export interface SecurityControl {
8626
8736
  }
8627
8737
  /**
8628
8738
  * @public
8739
+ * @enum
8629
8740
  */
8630
- export declare enum UnprocessedErrorCode {
8631
- ACCESS_DENIED = "ACCESS_DENIED",
8632
- INVALID_INPUT = "INVALID_INPUT",
8633
- LIMIT_EXCEEDED = "LIMIT_EXCEEDED",
8634
- NOT_FOUND = "NOT_FOUND"
8635
- }
8741
+ export declare const UnprocessedErrorCode: {
8742
+ readonly ACCESS_DENIED: "ACCESS_DENIED";
8743
+ readonly INVALID_INPUT: "INVALID_INPUT";
8744
+ readonly LIMIT_EXCEEDED: "LIMIT_EXCEEDED";
8745
+ readonly NOT_FOUND: "NOT_FOUND";
8746
+ };
8747
+ /**
8748
+ * @public
8749
+ */
8750
+ export type UnprocessedErrorCode = (typeof UnprocessedErrorCode)[keyof typeof UnprocessedErrorCode];
8636
8751
  /**
8637
8752
  * @public
8638
8753
  * <p> Provides details about a security control for which a response couldn't be returned. </p>
@@ -9258,11 +9373,16 @@ export interface BatchUpdateStandardsControlAssociationsResponse {
9258
9373
  }
9259
9374
  /**
9260
9375
  * @public
9376
+ * @enum
9261
9377
  */
9262
- export declare enum ControlFindingGenerator {
9263
- SECURITY_CONTROL = "SECURITY_CONTROL",
9264
- STANDARD_CONTROL = "STANDARD_CONTROL"
9265
- }
9378
+ export declare const ControlFindingGenerator: {
9379
+ readonly SECURITY_CONTROL: "SECURITY_CONTROL";
9380
+ readonly STANDARD_CONTROL: "STANDARD_CONTROL";
9381
+ };
9382
+ /**
9383
+ * @public
9384
+ */
9385
+ export type ControlFindingGenerator = (typeof ControlFindingGenerator)[keyof typeof ControlFindingGenerator];
9266
9386
  /**
9267
9387
  * @public
9268
9388
  */
@@ -301,12 +301,17 @@ export interface DescribeProductsRequest {
301
301
  }
302
302
  /**
303
303
  * @public
304
+ * @enum
304
305
  */
305
- export declare enum IntegrationType {
306
- RECEIVE_FINDINGS_FROM_SECURITY_HUB = "RECEIVE_FINDINGS_FROM_SECURITY_HUB",
307
- SEND_FINDINGS_TO_SECURITY_HUB = "SEND_FINDINGS_TO_SECURITY_HUB",
308
- UPDATE_FINDINGS_IN_SECURITY_HUB = "UPDATE_FINDINGS_IN_SECURITY_HUB"
309
- }
306
+ export declare const IntegrationType: {
307
+ readonly RECEIVE_FINDINGS_FROM_SECURITY_HUB: "RECEIVE_FINDINGS_FROM_SECURITY_HUB";
308
+ readonly SEND_FINDINGS_TO_SECURITY_HUB: "SEND_FINDINGS_TO_SECURITY_HUB";
309
+ readonly UPDATE_FINDINGS_IN_SECURITY_HUB: "UPDATE_FINDINGS_IN_SECURITY_HUB";
310
+ };
311
+ /**
312
+ * @public
313
+ */
314
+ export type IntegrationType = (typeof IntegrationType)[keyof typeof IntegrationType];
310
315
  /**
311
316
  * @public
312
317
  * <p>Contains details about a product.</p>
@@ -798,11 +803,16 @@ export interface GetFindingAggregatorResponse {
798
803
  }
799
804
  /**
800
805
  * @public
806
+ * @enum
801
807
  */
802
- export declare enum SortOrder {
803
- ASCENDING = "asc",
804
- DESCENDING = "desc"
805
- }
808
+ export declare const SortOrder: {
809
+ readonly ASCENDING: "asc";
810
+ readonly DESCENDING: "desc";
811
+ };
812
+ /**
813
+ * @public
814
+ */
815
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
806
816
  /**
807
817
  * @public
808
818
  * <p>A collection of finding attributes used to sort findings.</p>
@@ -1309,11 +1319,16 @@ export interface ListSecurityControlDefinitionsRequest {
1309
1319
  }
1310
1320
  /**
1311
1321
  * @public
1322
+ * @enum
1312
1323
  */
1313
- export declare enum RegionAvailabilityStatus {
1314
- AVAILABLE = "AVAILABLE",
1315
- UNAVAILABLE = "UNAVAILABLE"
1316
- }
1324
+ export declare const RegionAvailabilityStatus: {
1325
+ readonly AVAILABLE: "AVAILABLE";
1326
+ readonly UNAVAILABLE: "UNAVAILABLE";
1327
+ };
1328
+ /**
1329
+ * @public
1330
+ */
1331
+ export type RegionAvailabilityStatus = (typeof RegionAvailabilityStatus)[keyof typeof RegionAvailabilityStatus];
1317
1332
  /**
1318
1333
  * @public
1319
1334
  * <p>