@aws-sdk/client-guardduty 3.1085.0 → 3.1087.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.
@@ -1,4 +1,4 @@
1
- import type { AdminStatus, AutoEnableMembers, CloudProvider, ClusterStatus, Confidence, CoverageFilterCriterionKey, CoverageSortKey, CoverageStatisticsType, CoverageStatus, CriterionKey, DataSourceStatus, DestinationType, DetectionSource, DetectorFeature, DetectorFeatureResult, DetectorStatus, EcsClusterStatus, EcsLaunchType, FeatureAdditionalConfiguration, FeatureStatus, FilterAction, FindingPublishingFrequency, FindingResourceType, FindingStatisticType, FreeTrialFeatureResult, GroupByType, IndicatorType, InvestigationStatus, IpSetFormat, IpSetStatus, KubernetesResourcesTypes, MalwareProtectionPlanStatus, MalwareProtectionPlanTaggingActionStatus, MalwareProtectionResourceType, MalwareProtectionScanStatus, MalwareProtectionScanType, ManagementType, MfaStatus, NetworkDirection, OrderBy, OrgFeature, OrgFeatureAdditionalConfiguration, OrgFeatureStatus, ProfileSubtype, ProfileType, PublicAccessStatus, PublicAclIgnoreBehavior, PublicBucketRestrictBehavior, PublishingStatus, ResourceType, RiskLevel, ScanCategory, ScanResult, ScanResultStatus, ScanStatus, ScanStatusReason, ScanType, SignalType, ThreatEntitySetFormat, ThreatIntelSetFormat, TriggerType, TrustedEntitySetFormat } from "./enums";
1
+ import type { AdminStatus, AutoEnableMembers, CloudProvider, ClusterStatus, Confidence, ConfidenceLevel, ContentPolicyFilterAction, ContentPolicyFilterType, CoverageFilterCriterionKey, CoverageSortKey, CoverageStatisticsType, CoverageStatus, CriterionKey, DataSourceStatus, DestinationType, DetectorFeature, DetectorFeatureResult, DetectorStatus, EcsClusterStatus, EcsLaunchType, FeatureAdditionalConfiguration, FeatureStatus, FilterAction, FindingPublishingFrequency, FindingResourceType, FindingStatisticType, FreeTrialFeatureResult, GroupByType, GuardrailAction, GuardrailSource, IndicatorType, InvestigationStatus, IpSetFormat, IpSetStatus, KubernetesResourcesTypes, MalwareProtectionPlanStatus, MalwareProtectionPlanTaggingActionStatus, MalwareProtectionScanType, ManagementType, MfaStatus, NetworkDirection, OrderBy, OrgFeature, OrgFeatureAdditionalConfiguration, OrgFeatureStatus, ProfileSubtype, ProfileType, PublicAccessStatus, PublicAclIgnoreBehavior, PublicBucketRestrictBehavior, PublishingStatus, ResourceType, RiskLevel, ScanCategory, ScanResult, ScanStatus, ScanType, SignalType, ThreatEntitySetFormat, ThreatIntelSetFormat, TriggerType, TrustedEntitySetFormat } from "./enums";
2
2
  /**
3
3
  * @public
4
4
  */
@@ -1093,6 +1093,11 @@ export interface Observations {
1093
1093
  * @public
1094
1094
  */
1095
1095
  Text?: string[] | undefined;
1096
+ /**
1097
+ * <p>The numeric values that were unusual.</p>
1098
+ * @public
1099
+ */
1100
+ Number?: number[] | undefined;
1096
1101
  }
1097
1102
  /**
1098
1103
  * <p>Contains information about the unusual anomalies.</p>
@@ -1189,6 +1194,83 @@ export interface AutoscalingAutoScalingGroup {
1189
1194
  */
1190
1195
  Ec2InstanceUids?: string[] | undefined;
1191
1196
  }
1197
+ /**
1198
+ * <p>Contains information about a Bedrock guardrail associated with a finding.</p>
1199
+ * @public
1200
+ */
1201
+ export interface BedrockGuardrail {
1202
+ /**
1203
+ * <p>The ARN of the Bedrock guardrail.</p>
1204
+ * @public
1205
+ */
1206
+ Arn?: string | undefined;
1207
+ /**
1208
+ * <p>The version of the Bedrock guardrail.</p>
1209
+ * @public
1210
+ */
1211
+ Version?: string | undefined;
1212
+ }
1213
+ /**
1214
+ * <p>Contains information about a content policy filter that matched during a guardrail evaluation.</p>
1215
+ * @public
1216
+ */
1217
+ export interface ContentPolicyFilter {
1218
+ /**
1219
+ * <p>The type of content that was filtered by the guardrail.</p>
1220
+ * @public
1221
+ */
1222
+ Type?: ContentPolicyFilterType | undefined;
1223
+ /**
1224
+ * <p>The confidence level that the content matched the filter.</p>
1225
+ * @public
1226
+ */
1227
+ Confidence?: ConfidenceLevel | undefined;
1228
+ /**
1229
+ * <p>The action taken by the guardrail filter.</p>
1230
+ * @public
1231
+ */
1232
+ Action?: ContentPolicyFilterAction | undefined;
1233
+ }
1234
+ /**
1235
+ * <p>Contains information about the Bedrock guardrail that was involved in a finding.</p>
1236
+ * @public
1237
+ */
1238
+ export interface BedrockGuardrailDetails {
1239
+ /**
1240
+ * <p>The ARN of the Bedrock guardrail. This field is deprecated. Use the <code>guardrails</code> list instead.</p>
1241
+ *
1242
+ * @deprecated (since 2026-07-13) Use guardrails list instead.
1243
+ * @public
1244
+ */
1245
+ GuardrailArn?: string | undefined;
1246
+ /**
1247
+ * <p>The version of the Bedrock guardrail. This field is deprecated. Use the <code>guardrails</code> list instead.</p>
1248
+ *
1249
+ * @deprecated (since 2026-07-13) Use guardrails list instead.
1250
+ * @public
1251
+ */
1252
+ GuardrailVersion?: string | undefined;
1253
+ /**
1254
+ * <p>The list of Bedrock guardrails associated with the finding.</p>
1255
+ * @public
1256
+ */
1257
+ Guardrails?: BedrockGuardrail[] | undefined;
1258
+ /**
1259
+ * <p>Indicates whether the guardrail intervened or not.</p>
1260
+ * @public
1261
+ */
1262
+ GuardrailAction?: GuardrailAction | undefined;
1263
+ /**
1264
+ * <p>Indicates whether the guardrail was applied on the input or output of the model invocation.</p>
1265
+ * @public
1266
+ */
1267
+ GuardrailSource?: GuardrailSource | undefined;
1268
+ /**
1269
+ * <p>The list of content policy filters that matched during the guardrail evaluation.</p>
1270
+ * @public
1271
+ */
1272
+ ContentPolicyFilters?: ContentPolicyFilter[] | undefined;
1273
+ }
1192
1274
  /**
1193
1275
  * <p>Contains information on the current bucket policies for the S3 bucket.</p>
1194
1276
  * @public
@@ -5019,6 +5101,17 @@ export interface LambdaDetails {
5019
5101
  */
5020
5102
  Tags?: Tag[] | undefined;
5021
5103
  }
5104
+ /**
5105
+ * <p>Contains information about the AI model involved in a finding.</p>
5106
+ * @public
5107
+ */
5108
+ export interface ModelDetail {
5109
+ /**
5110
+ * <p>The identifier of the AI model.</p>
5111
+ * @public
5112
+ */
5113
+ ModelId?: string | undefined;
5114
+ }
5022
5115
  /**
5023
5116
  * <p>Contains information about the resource type <code>RDSDBInstance</code> involved in a GuardDuty finding.</p>
5024
5117
  * @public
@@ -5132,6 +5225,22 @@ export interface RdsLimitlessDbDetails {
5132
5225
  */
5133
5226
  Tags?: Tag[] | undefined;
5134
5227
  }
5228
+ /**
5229
+ * <p>Contains information about the time range within the continuous backup in Amazon Web Services Backup that was scanned for a point-in-time recovery resource.</p>
5230
+ * @public
5231
+ */
5232
+ export interface ScanConfigurationContinuousScanDetails {
5233
+ /**
5234
+ * <p>The timestamp representing the start of the time range that was scanned.</p>
5235
+ * @public
5236
+ */
5237
+ StartTime?: Date | undefined;
5238
+ /**
5239
+ * <p>The timestamp representing the end of the time range that was scanned.</p>
5240
+ * @public
5241
+ */
5242
+ EndTime: Date | undefined;
5243
+ }
5135
5244
  /**
5136
5245
  * <p>Contains details about the backup recovery point.</p>
5137
5246
  * @public
@@ -5147,6 +5256,11 @@ export interface RecoveryPointDetails {
5147
5256
  * @public
5148
5257
  */
5149
5258
  BackupVaultName?: string | undefined;
5259
+ /**
5260
+ * <p>Contains information about the time range within the continuous backup in Amazon Web Services Backup that was scanned for a point-in-time recovery resource.</p>
5261
+ * @public
5262
+ */
5263
+ ContinuousScanDetails?: ScanConfigurationContinuousScanDetails | undefined;
5150
5264
  }
5151
5265
  /**
5152
5266
  * <p>Contains information on the owner of the bucket.</p>
@@ -5358,6 +5472,16 @@ export interface Resource {
5358
5472
  * @public
5359
5473
  */
5360
5474
  RecoveryPointDetails?: RecoveryPointDetails | undefined;
5475
+ /**
5476
+ * <p>Contains information about the Bedrock guardrail that was involved in a finding.</p>
5477
+ * @public
5478
+ */
5479
+ BedrockGuardrailDetails?: BedrockGuardrailDetails | undefined;
5480
+ /**
5481
+ * <p>Contains information about the AI models involved in a finding.</p>
5482
+ * @public
5483
+ */
5484
+ ModelDetails?: ModelDetail[] | undefined;
5361
5485
  }
5362
5486
  /**
5363
5487
  * <p>Additional information about the generated finding.</p>
@@ -6596,22 +6720,6 @@ export interface GetMalwareScanRequest {
6596
6720
  */
6597
6721
  ScanId: string | undefined;
6598
6722
  }
6599
- /**
6600
- * <p>Contains information about the time range within the continuous backup in Amazon Web Services Backup that was scanned for a point-in-time recovery resource.</p>
6601
- * @public
6602
- */
6603
- export interface ScanConfigurationContinuousScanDetails {
6604
- /**
6605
- * <p>The timestamp representing the start of the time range that was scanned.</p>
6606
- * @public
6607
- */
6608
- StartTime?: Date | undefined;
6609
- /**
6610
- * <p>The timestamp representing the end of the time range that was scanned.</p>
6611
- * @public
6612
- */
6613
- EndTime: Date | undefined;
6614
- }
6615
6723
  /**
6616
6724
  * <p>Contains information about the recovery point configuration used in the scan.</p>
6617
6725
  * @public
@@ -6654,127 +6762,3 @@ export interface ScanConfiguration {
6654
6762
  */
6655
6763
  RecoveryPoint?: ScanConfigurationRecoveryPoint | undefined;
6656
6764
  }
6657
- /**
6658
- * <p>Contains additional information about a resource that was scanned.</p>
6659
- * @public
6660
- */
6661
- export interface ScannedResourceDetails {
6662
- /**
6663
- * <p>Contains information about the EBS volume that was scanned.</p>
6664
- * @public
6665
- */
6666
- EbsVolume?: VolumeDetail | undefined;
6667
- /**
6668
- * <p>Contains information about the EBS snapshot that was scanned.</p>
6669
- * @public
6670
- */
6671
- EbsSnapshot?: EbsSnapshot | undefined;
6672
- }
6673
- /**
6674
- * <p>Contains information about a resource that was scanned as part of the malware scan operation.</p>
6675
- * @public
6676
- */
6677
- export interface ScannedResource {
6678
- /**
6679
- * <p>Amazon Resource Name (ARN) of the scanned resource.</p>
6680
- * @public
6681
- */
6682
- ScannedResourceArn?: string | undefined;
6683
- /**
6684
- * <p>The resource type of the scanned resource.</p>
6685
- * @public
6686
- */
6687
- ScannedResourceType?: MalwareProtectionResourceType | undefined;
6688
- /**
6689
- * <p>The status of the scanned resource.</p>
6690
- * @public
6691
- */
6692
- ScannedResourceStatus?: MalwareProtectionScanStatus | undefined;
6693
- /**
6694
- * <p>The reason for the scan status of this particular resource, if applicable.</p>
6695
- * @public
6696
- */
6697
- ScanStatusReason?: ScanStatusReason | undefined;
6698
- /**
6699
- * <p>Information about the scanned resource.</p>
6700
- * @public
6701
- */
6702
- ResourceDetails?: ScannedResourceDetails | undefined;
6703
- }
6704
- /**
6705
- * <p>Contains information about a specific threat that was detected during the malware scan.</p>
6706
- * @public
6707
- */
6708
- export interface ScanResultThreat {
6709
- /**
6710
- * <p>The name of the detected threat.</p>
6711
- * @public
6712
- */
6713
- Name?: string | undefined;
6714
- /**
6715
- * <p>The source that detected this threat.</p>
6716
- * @public
6717
- */
6718
- Source?: DetectionSource | undefined;
6719
- /**
6720
- * <p>The number of instances of this threat that were detected.</p>
6721
- * @public
6722
- */
6723
- Count?: number | undefined;
6724
- /**
6725
- * <p>The hash value associated with the detected threat.</p>
6726
- * @public
6727
- */
6728
- Hash?: string | undefined;
6729
- /**
6730
- * <p>Additional information about where this threat was detected.</p>
6731
- * @public
6732
- */
6733
- ItemDetails?: ItemDetails[] | undefined;
6734
- }
6735
- /**
6736
- * <p>Contains information about the results of the malware scan.</p>
6737
- * @public
6738
- */
6739
- export interface GetMalwareScanResultDetails {
6740
- /**
6741
- * <p>Status indicating whether threats were found for a completed scan.</p>
6742
- * @public
6743
- */
6744
- ScanResultStatus?: ScanResultStatus | undefined;
6745
- /**
6746
- * <p>The total number of files that were skipped during the scan.</p>
6747
- * @public
6748
- */
6749
- SkippedFileCount?: number | undefined;
6750
- /**
6751
- * <p>The total number of files that failed to be scanned.</p>
6752
- * @public
6753
- */
6754
- FailedFileCount?: number | undefined;
6755
- /**
6756
- * <p>The total number of files in which threats were detected.</p>
6757
- * @public
6758
- */
6759
- ThreatFoundFileCount?: number | undefined;
6760
- /**
6761
- * <p>The total number of files that were processed during the scan.</p>
6762
- * @public
6763
- */
6764
- TotalFileCount?: number | undefined;
6765
- /**
6766
- * <p>The total number of bytes that were scanned.</p>
6767
- * @public
6768
- */
6769
- TotalBytes?: number | undefined;
6770
- /**
6771
- * <p>The total number of unique threats that were detected during the scan.</p>
6772
- * @public
6773
- */
6774
- UniqueThreatCount?: number | undefined;
6775
- /**
6776
- * <p>The threats that were detected during the malware scan.</p>
6777
- * @public
6778
- */
6779
- Threats?: ScanResultThreat[] | undefined;
6780
- }
@@ -1,5 +1,129 @@
1
- import type { AutoEnableMembers, Confidence, DataSource, EbsSnapshotPreservation, FeatureStatus, Feedback, FilterAction, FindingPublishingFrequency, InvestigationSortField, InvestigationStatus, ListMalwareScansCriterionKey, MalwareProtectionResourceType, MalwareProtectionScanStatus, MalwareProtectionScanType, OrderBy, OrgFeature, OrgFeatureAdditionalConfiguration, OrgFeatureStatus, RiskLevel, ScanCategory, ScanCriterionKey, ScanResultStatus, ScanStatusReason, ThreatEntitySetFormat, ThreatEntitySetStatus, ThreatIntelSetFormat, ThreatIntelSetStatus, TrustedEntitySetFormat, TrustedEntitySetStatus, UsageFeature, UsageStatisticType } from "./enums";
2
- import type { AccountFreeTrialInfo, AdminAccount, ContinuousScanDetails, CoverageFilterCriteria, CoverageResource, CoverageSortCriteria, DataSourceConfigurations, DataSourceConfigurationsResult, Destination, DestinationProperties, DetectorFeatureConfiguration, FilterCondition, FindingCriteria, GetMalwareScanResultDetails, IncrementalScanDetails, MalwareProtectionPlanActions, ScanConfiguration, ScannedResource, SortCriteria, UnprocessedAccount } from "./models_0";
1
+ import type { AutoEnableMembers, Confidence, DataSource, DetectionSource, EbsSnapshotPreservation, FeatureStatus, Feedback, FilterAction, FindingPublishingFrequency, InvestigationSortField, InvestigationStatus, ListMalwareScansCriterionKey, MalwareProtectionResourceType, MalwareProtectionScanStatus, MalwareProtectionScanType, OrderBy, OrgFeature, OrgFeatureAdditionalConfiguration, OrgFeatureStatus, RiskLevel, ScanCategory, ScanCriterionKey, ScanResultStatus, ScanStatusReason, ThreatEntitySetFormat, ThreatEntitySetStatus, ThreatIntelSetFormat, ThreatIntelSetStatus, TrustedEntitySetFormat, TrustedEntitySetStatus, UsageFeature, UsageStatisticType } from "./enums";
2
+ import type { AccountFreeTrialInfo, AdminAccount, ContinuousScanDetails, CoverageFilterCriteria, CoverageResource, CoverageSortCriteria, DataSourceConfigurations, DataSourceConfigurationsResult, Destination, DestinationProperties, DetectorFeatureConfiguration, EbsSnapshot, FilterCondition, FindingCriteria, IncrementalScanDetails, ItemDetails, MalwareProtectionPlanActions, ScanConfiguration, SortCriteria, UnprocessedAccount, VolumeDetail } from "./models_0";
3
+ /**
4
+ * <p>Contains additional information about a resource that was scanned.</p>
5
+ * @public
6
+ */
7
+ export interface ScannedResourceDetails {
8
+ /**
9
+ * <p>Contains information about the EBS volume that was scanned.</p>
10
+ * @public
11
+ */
12
+ EbsVolume?: VolumeDetail | undefined;
13
+ /**
14
+ * <p>Contains information about the EBS snapshot that was scanned.</p>
15
+ * @public
16
+ */
17
+ EbsSnapshot?: EbsSnapshot | undefined;
18
+ }
19
+ /**
20
+ * <p>Contains information about a resource that was scanned as part of the malware scan operation.</p>
21
+ * @public
22
+ */
23
+ export interface ScannedResource {
24
+ /**
25
+ * <p>Amazon Resource Name (ARN) of the scanned resource.</p>
26
+ * @public
27
+ */
28
+ ScannedResourceArn?: string | undefined;
29
+ /**
30
+ * <p>The resource type of the scanned resource.</p>
31
+ * @public
32
+ */
33
+ ScannedResourceType?: MalwareProtectionResourceType | undefined;
34
+ /**
35
+ * <p>The status of the scanned resource.</p>
36
+ * @public
37
+ */
38
+ ScannedResourceStatus?: MalwareProtectionScanStatus | undefined;
39
+ /**
40
+ * <p>The reason for the scan status of this particular resource, if applicable.</p>
41
+ * @public
42
+ */
43
+ ScanStatusReason?: ScanStatusReason | undefined;
44
+ /**
45
+ * <p>Information about the scanned resource.</p>
46
+ * @public
47
+ */
48
+ ResourceDetails?: ScannedResourceDetails | undefined;
49
+ }
50
+ /**
51
+ * <p>Contains information about a specific threat that was detected during the malware scan.</p>
52
+ * @public
53
+ */
54
+ export interface ScanResultThreat {
55
+ /**
56
+ * <p>The name of the detected threat.</p>
57
+ * @public
58
+ */
59
+ Name?: string | undefined;
60
+ /**
61
+ * <p>The source that detected this threat.</p>
62
+ * @public
63
+ */
64
+ Source?: DetectionSource | undefined;
65
+ /**
66
+ * <p>The number of instances of this threat that were detected.</p>
67
+ * @public
68
+ */
69
+ Count?: number | undefined;
70
+ /**
71
+ * <p>The hash value associated with the detected threat.</p>
72
+ * @public
73
+ */
74
+ Hash?: string | undefined;
75
+ /**
76
+ * <p>Additional information about where this threat was detected.</p>
77
+ * @public
78
+ */
79
+ ItemDetails?: ItemDetails[] | undefined;
80
+ }
81
+ /**
82
+ * <p>Contains information about the results of the malware scan.</p>
83
+ * @public
84
+ */
85
+ export interface GetMalwareScanResultDetails {
86
+ /**
87
+ * <p>Status indicating whether threats were found for a completed scan.</p>
88
+ * @public
89
+ */
90
+ ScanResultStatus?: ScanResultStatus | undefined;
91
+ /**
92
+ * <p>The total number of files that were skipped during the scan.</p>
93
+ * @public
94
+ */
95
+ SkippedFileCount?: number | undefined;
96
+ /**
97
+ * <p>The total number of files that failed to be scanned.</p>
98
+ * @public
99
+ */
100
+ FailedFileCount?: number | undefined;
101
+ /**
102
+ * <p>The total number of files in which threats were detected.</p>
103
+ * @public
104
+ */
105
+ ThreatFoundFileCount?: number | undefined;
106
+ /**
107
+ * <p>The total number of files that were processed during the scan.</p>
108
+ * @public
109
+ */
110
+ TotalFileCount?: number | undefined;
111
+ /**
112
+ * <p>The total number of bytes that were scanned.</p>
113
+ * @public
114
+ */
115
+ TotalBytes?: number | undefined;
116
+ /**
117
+ * <p>The total number of unique threats that were detected during the scan.</p>
118
+ * @public
119
+ */
120
+ UniqueThreatCount?: number | undefined;
121
+ /**
122
+ * <p>The threats that were detected during the malware scan.</p>
123
+ * @public
124
+ */
125
+ Threats?: ScanResultThreat[] | undefined;
126
+ }
3
127
  /**
4
128
  * @public
5
129
  */
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: GuardDutyClientConfig) => {
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
9
9
  authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
10
10
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
- credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
11
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
12
12
  defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
13
13
  maxAttempts: number | import("@smithy/types").Provider<number>;
14
14
  region: string | import("@smithy/types").Provider<string>;
@@ -40,6 +40,8 @@ export declare var ArchiveFindingsResponse$: StaticStructureSchema;
40
40
  export declare var AutonomousSystem$: StaticStructureSchema;
41
41
  export declare var AutoscalingAutoScalingGroup$: StaticStructureSchema;
42
42
  export declare var AwsApiCallAction$: StaticStructureSchema;
43
+ export declare var BedrockGuardrail$: StaticStructureSchema;
44
+ export declare var BedrockGuardrailDetails$: StaticStructureSchema;
43
45
  export declare var BlockPublicAccess$: StaticStructureSchema;
44
46
  export declare var BucketLevelPermissions$: StaticStructureSchema;
45
47
  export declare var BucketPolicy$: StaticStructureSchema;
@@ -51,6 +53,7 @@ export declare var Condition$: StaticStructureSchema;
51
53
  export declare var Container$: StaticStructureSchema;
52
54
  export declare var ContainerFindingResource$: StaticStructureSchema;
53
55
  export declare var ContainerInstanceDetails$: StaticStructureSchema;
56
+ export declare var ContentPolicyFilter$: StaticStructureSchema;
54
57
  export declare var ContinuousScanDetails$: StaticStructureSchema;
55
58
  export declare var Country$: StaticStructureSchema;
56
59
  export declare var CoverageEc2InstanceDetails$: StaticStructureSchema;
@@ -297,6 +300,7 @@ export declare var MemberAdditionalConfigurationResult$: StaticStructureSchema;
297
300
  export declare var MemberDataSourceConfiguration$: StaticStructureSchema;
298
301
  export declare var MemberFeaturesConfiguration$: StaticStructureSchema;
299
302
  export declare var MemberFeaturesConfigurationResult$: StaticStructureSchema;
303
+ export declare var ModelDetail$: StaticStructureSchema;
300
304
  export declare var NetworkConnection$: StaticStructureSchema;
301
305
  export declare var NetworkConnectionAction$: StaticStructureSchema;
302
306
  export declare var NetworkEndpoint$: StaticStructureSchema;
@@ -1,4 +1,5 @@
1
1
  export declare const FreeTrialFeatureResult: {
2
+ readonly AI_PROTECTION: "AI_PROTECTION";
2
3
  readonly CLOUD_TRAIL: "CLOUD_TRAIL";
3
4
  readonly DNS_LOGS: "DNS_LOGS";
4
5
  readonly EBS_MALWARE_PROTECTION: "EBS_MALWARE_PROTECTION";
@@ -24,6 +25,8 @@ export declare const AdminStatus: {
24
25
  };
25
26
  export type AdminStatus = (typeof AdminStatus)[keyof typeof AdminStatus];
26
27
  export declare const ProfileSubtype: {
28
+ readonly AVERAGE: "AVERAGE";
29
+ readonly COUNT: "COUNT";
27
30
  readonly FREQUENT: "FREQUENT";
28
31
  readonly INFREQUENT: "INFREQUENT";
29
32
  readonly RARE: "RARE";
@@ -33,6 +36,7 @@ export type ProfileSubtype =
33
36
  (typeof ProfileSubtype)[keyof typeof ProfileSubtype];
34
37
  export declare const ProfileType: {
35
38
  readonly FREQUENCY: "FREQUENCY";
39
+ readonly VOLUME: "VOLUME";
36
40
  };
37
41
  export type ProfileType = (typeof ProfileType)[keyof typeof ProfileType];
38
42
  export declare const AutoEnableMembers: {
@@ -42,6 +46,43 @@ export declare const AutoEnableMembers: {
42
46
  };
43
47
  export type AutoEnableMembers =
44
48
  (typeof AutoEnableMembers)[keyof typeof AutoEnableMembers];
49
+ export declare const ContentPolicyFilterAction: {
50
+ readonly BLOCKED: "BLOCKED";
51
+ readonly NONE: "NONE";
52
+ };
53
+ export type ContentPolicyFilterAction =
54
+ (typeof ContentPolicyFilterAction)[keyof typeof ContentPolicyFilterAction];
55
+ export declare const ConfidenceLevel: {
56
+ readonly HIGH: "HIGH";
57
+ readonly LOW: "LOW";
58
+ readonly MEDIUM: "MEDIUM";
59
+ readonly NONE: "NONE";
60
+ };
61
+ export type ConfidenceLevel =
62
+ (typeof ConfidenceLevel)[keyof typeof ConfidenceLevel];
63
+ export declare const ContentPolicyFilterType: {
64
+ readonly HATE: "HATE";
65
+ readonly INSULTS: "INSULTS";
66
+ readonly JAILBREAK: "JAILBREAK";
67
+ readonly MISCONDUCT: "MISCONDUCT";
68
+ readonly PROMPT_ATTACK: "PROMPT_ATTACK";
69
+ readonly SEXUAL: "SEXUAL";
70
+ readonly VIOLENCE: "VIOLENCE";
71
+ };
72
+ export type ContentPolicyFilterType =
73
+ (typeof ContentPolicyFilterType)[keyof typeof ContentPolicyFilterType];
74
+ export declare const GuardrailAction: {
75
+ readonly GUARDRAIL_INTERVENED: "GUARDRAIL_INTERVENED";
76
+ readonly NONE: "NONE";
77
+ };
78
+ export type GuardrailAction =
79
+ (typeof GuardrailAction)[keyof typeof GuardrailAction];
80
+ export declare const GuardrailSource: {
81
+ readonly INPUT: "INPUT";
82
+ readonly OUTPUT: "OUTPUT";
83
+ };
84
+ export type GuardrailSource =
85
+ (typeof GuardrailSource)[keyof typeof GuardrailSource];
45
86
  export declare const CloudProvider: {
46
87
  readonly AWS: "AWS";
47
88
  };
@@ -140,6 +181,7 @@ export declare const FeatureStatus: {
140
181
  export type FeatureStatus = (typeof FeatureStatus)[keyof typeof FeatureStatus];
141
182
  export declare const DetectorFeature: {
142
183
  readonly AI_ANALYST: "AI_ANALYST";
184
+ readonly AI_PROTECTION: "AI_PROTECTION";
143
185
  readonly EBS_MALWARE_PROTECTION: "EBS_MALWARE_PROTECTION";
144
186
  readonly EKS_AUDIT_LOGS: "EKS_AUDIT_LOGS";
145
187
  readonly EKS_RUNTIME_MONITORING: "EKS_RUNTIME_MONITORING";
@@ -268,6 +310,7 @@ export declare const OrgFeatureAdditionalConfiguration: {
268
310
  export type OrgFeatureAdditionalConfiguration =
269
311
  (typeof OrgFeatureAdditionalConfiguration)[keyof typeof OrgFeatureAdditionalConfiguration];
270
312
  export declare const OrgFeature: {
313
+ readonly AI_PROTECTION: "AI_PROTECTION";
271
314
  readonly EBS_MALWARE_PROTECTION: "EBS_MALWARE_PROTECTION";
272
315
  readonly EKS_AUDIT_LOGS: "EKS_AUDIT_LOGS";
273
316
  readonly EKS_RUNTIME_MONITORING: "EKS_RUNTIME_MONITORING";
@@ -398,6 +441,7 @@ export type DetectionSource =
398
441
  (typeof DetectionSource)[keyof typeof DetectionSource];
399
442
  export declare const DetectorFeatureResult: {
400
443
  readonly AI_ANALYST: "AI_ANALYST";
444
+ readonly AI_PROTECTION: "AI_PROTECTION";
401
445
  readonly CLOUD_TRAIL: "CLOUD_TRAIL";
402
446
  readonly DNS_LOGS: "DNS_LOGS";
403
447
  readonly EBS_MALWARE_PROTECTION: "EBS_MALWARE_PROTECTION";
@@ -573,6 +617,7 @@ export declare const TrustedEntitySetStatus: {
573
617
  export type TrustedEntitySetStatus =
574
618
  (typeof TrustedEntitySetStatus)[keyof typeof TrustedEntitySetStatus];
575
619
  export declare const UsageFeature: {
620
+ readonly AI_PROTECTION: "AI_PROTECTION";
576
621
  readonly CLOUD_TRAIL: "CLOUD_TRAIL";
577
622
  readonly DNS_LOGS: "DNS_LOGS";
578
623
  readonly EBS_MALWARE_PROTECTION: "EBS_MALWARE_PROTECTION";