@aws-sdk/client-guardduty 3.292.0 → 3.294.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/dist-cjs/models/models_0.js +111 -6
- package/dist-cjs/pagination/DescribeOrganizationConfigurationPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +226 -0
- package/dist-es/models/models_0.js +93 -0
- package/dist-es/pagination/DescribeOrganizationConfigurationPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +226 -0
- package/dist-types/GuardDuty.d.ts +2 -1
- package/dist-types/commands/CreateFilterCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +400 -5
- package/dist-types/pagination/DescribeOrganizationConfigurationPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +163 -2
- package/dist-types/ts3.4/pagination/DescribeOrganizationConfigurationPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/package.json +7 -7
|
@@ -175,6 +175,28 @@ export interface DataSourcesFreeTrial {
|
|
|
175
175
|
*/
|
|
176
176
|
MalwareProtection?: MalwareProtectionDataSourceFreeTrial;
|
|
177
177
|
}
|
|
178
|
+
export declare enum FreeTrialFeatureResult {
|
|
179
|
+
CLOUD_TRAIL = "CLOUD_TRAIL",
|
|
180
|
+
DNS_LOGS = "DNS_LOGS",
|
|
181
|
+
EBS_MALWARE_PROTECTION = "EBS_MALWARE_PROTECTION",
|
|
182
|
+
EKS_AUDIT_LOGS = "EKS_AUDIT_LOGS",
|
|
183
|
+
FLOW_LOGS = "FLOW_LOGS",
|
|
184
|
+
RDS_LOGIN_EVENTS = "RDS_LOGIN_EVENTS",
|
|
185
|
+
S3_DATA_EVENTS = "S3_DATA_EVENTS"
|
|
186
|
+
}
|
|
187
|
+
/**
|
|
188
|
+
* <p>Contains information about the free trial period for a feature.</p>
|
|
189
|
+
*/
|
|
190
|
+
export interface FreeTrialFeatureConfigurationResult {
|
|
191
|
+
/**
|
|
192
|
+
* <p>The name of the feature for which the free trial is configured.</p>
|
|
193
|
+
*/
|
|
194
|
+
Name?: FreeTrialFeatureResult | string;
|
|
195
|
+
/**
|
|
196
|
+
* <p>The number of the remaining free trial days for the feature.</p>
|
|
197
|
+
*/
|
|
198
|
+
FreeTrialDaysRemaining?: number;
|
|
199
|
+
}
|
|
178
200
|
/**
|
|
179
201
|
* <p>Provides details of the GuardDuty member account that uses a free trial service.</p>
|
|
180
202
|
*/
|
|
@@ -184,9 +206,15 @@ export interface AccountFreeTrialInfo {
|
|
|
184
206
|
*/
|
|
185
207
|
AccountId?: string;
|
|
186
208
|
/**
|
|
209
|
+
* @deprecated
|
|
210
|
+
*
|
|
187
211
|
* <p>Describes the data source enabled for the GuardDuty member account.</p>
|
|
188
212
|
*/
|
|
189
213
|
DataSources?: DataSourcesFreeTrial;
|
|
214
|
+
/**
|
|
215
|
+
* <p>A list of features enabled for the GuardDuty account.</p>
|
|
216
|
+
*/
|
|
217
|
+
Features?: FreeTrialFeatureConfigurationResult[];
|
|
190
218
|
}
|
|
191
219
|
/**
|
|
192
220
|
* <p>Contains information on how the bucker owner's S3 Block Public Access settings are being
|
|
@@ -513,6 +541,43 @@ export interface PortProbeAction {
|
|
|
513
541
|
*/
|
|
514
542
|
PortProbeDetails?: PortProbeDetail[];
|
|
515
543
|
}
|
|
544
|
+
/**
|
|
545
|
+
* <p>Information about the login attempts.</p>
|
|
546
|
+
*/
|
|
547
|
+
export interface LoginAttribute {
|
|
548
|
+
/**
|
|
549
|
+
* <p>Indicates the user name which attempted to log in.</p>
|
|
550
|
+
*/
|
|
551
|
+
User?: string;
|
|
552
|
+
/**
|
|
553
|
+
* <p>Indicates the application name used to attempt log in.</p>
|
|
554
|
+
*/
|
|
555
|
+
Application?: string;
|
|
556
|
+
/**
|
|
557
|
+
* <p>Represents the sum of failed (unsuccessful) login attempts made to establish a connection
|
|
558
|
+
* to the database instance.</p>
|
|
559
|
+
*/
|
|
560
|
+
FailedLoginAttempts?: number;
|
|
561
|
+
/**
|
|
562
|
+
* <p>Represents the sum of successful connections (a correct combination of login attributes)
|
|
563
|
+
* made to the database instance by the actor.</p>
|
|
564
|
+
*/
|
|
565
|
+
SuccessfulLoginAttempts?: number;
|
|
566
|
+
}
|
|
567
|
+
/**
|
|
568
|
+
* <p>Indicates that a login attempt was made to the potentially compromised database from
|
|
569
|
+
* a remote IP address.</p>
|
|
570
|
+
*/
|
|
571
|
+
export interface RdsLoginAttemptAction {
|
|
572
|
+
/**
|
|
573
|
+
* <p>Contains information about the remote IP address of the connection.</p>
|
|
574
|
+
*/
|
|
575
|
+
RemoteIpDetails?: RemoteIpDetails;
|
|
576
|
+
/**
|
|
577
|
+
* <p>Indicates the login attributes used in the login attempt.</p>
|
|
578
|
+
*/
|
|
579
|
+
LoginAttributes?: LoginAttribute[];
|
|
580
|
+
}
|
|
516
581
|
/**
|
|
517
582
|
* <p>Contains information about actions.</p>
|
|
518
583
|
*/
|
|
@@ -541,6 +606,10 @@ export interface Action {
|
|
|
541
606
|
* <p>Information about the Kubernetes API call action described in this finding.</p>
|
|
542
607
|
*/
|
|
543
608
|
KubernetesApiCallAction?: KubernetesApiCallAction;
|
|
609
|
+
/**
|
|
610
|
+
* <p>Information about <code>RDS_LOGIN_ATTEMPT</code> action described in this finding.</p>
|
|
611
|
+
*/
|
|
612
|
+
RdsLoginAttemptAction?: RdsLoginAttemptAction;
|
|
544
613
|
}
|
|
545
614
|
export declare enum AdminStatus {
|
|
546
615
|
DISABLE_IN_PROGRESS = "DISABLE_IN_PROGRESS",
|
|
@@ -836,6 +905,29 @@ export interface DataSourceConfigurations {
|
|
|
836
905
|
*/
|
|
837
906
|
MalwareProtection?: MalwareProtectionConfiguration;
|
|
838
907
|
}
|
|
908
|
+
export declare enum DetectorFeature {
|
|
909
|
+
EBS_MALWARE_PROTECTION = "EBS_MALWARE_PROTECTION",
|
|
910
|
+
EKS_AUDIT_LOGS = "EKS_AUDIT_LOGS",
|
|
911
|
+
RDS_LOGIN_EVENTS = "RDS_LOGIN_EVENTS",
|
|
912
|
+
S3_DATA_EVENTS = "S3_DATA_EVENTS"
|
|
913
|
+
}
|
|
914
|
+
export declare enum FeatureStatus {
|
|
915
|
+
DISABLED = "DISABLED",
|
|
916
|
+
ENABLED = "ENABLED"
|
|
917
|
+
}
|
|
918
|
+
/**
|
|
919
|
+
* <p>Contains information about a GuardDuty feature.</p>
|
|
920
|
+
*/
|
|
921
|
+
export interface DetectorFeatureConfiguration {
|
|
922
|
+
/**
|
|
923
|
+
* <p>The name of the feature.</p>
|
|
924
|
+
*/
|
|
925
|
+
Name?: DetectorFeature | string;
|
|
926
|
+
/**
|
|
927
|
+
* <p>The status of the feature.</p>
|
|
928
|
+
*/
|
|
929
|
+
Status?: FeatureStatus | string;
|
|
930
|
+
}
|
|
839
931
|
export declare enum FindingPublishingFrequency {
|
|
840
932
|
FIFTEEN_MINUTES = "FIFTEEN_MINUTES",
|
|
841
933
|
ONE_HOUR = "ONE_HOUR",
|
|
@@ -855,6 +947,8 @@ export interface CreateDetectorRequest {
|
|
|
855
947
|
*/
|
|
856
948
|
FindingPublishingFrequency?: FindingPublishingFrequency | string;
|
|
857
949
|
/**
|
|
950
|
+
* @deprecated
|
|
951
|
+
*
|
|
858
952
|
* <p>Describes which data sources will be enabled for the detector.</p>
|
|
859
953
|
* <p>There might be regional differences because some data sources might not be
|
|
860
954
|
* available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more
|
|
@@ -865,6 +959,10 @@ export interface CreateDetectorRequest {
|
|
|
865
959
|
* <p>The tags to be added to a new detector resource.</p>
|
|
866
960
|
*/
|
|
867
961
|
Tags?: Record<string, string>;
|
|
962
|
+
/**
|
|
963
|
+
* <p>A list of features that will be configured for the detector.</p>
|
|
964
|
+
*/
|
|
965
|
+
Features?: DetectorFeatureConfiguration[];
|
|
868
966
|
}
|
|
869
967
|
/**
|
|
870
968
|
* <p>Describes the configuration of scanning EBS volumes as a data source.</p>
|
|
@@ -948,9 +1046,8 @@ export interface CreateFilterRequest {
|
|
|
948
1046
|
Name: string | undefined;
|
|
949
1047
|
/**
|
|
950
1048
|
* <p>The description of the filter. Valid characters include alphanumeric characters, and special
|
|
951
|
-
* characters such as
|
|
952
|
-
* <code>( )</code
|
|
953
|
-
* <code>\r</code>, <code>_</code>, and whitespace.</p>
|
|
1049
|
+
* characters such as hyphen, period, colon, underscore, parentheses (<code>{ }</code>, <code>[ ]</code>, and
|
|
1050
|
+
* <code>( )</code>), forward slash, horizontal tab, vertical tab, newline, form feed, return, and whitespace.</p>
|
|
954
1051
|
*/
|
|
955
1052
|
Description?: string;
|
|
956
1053
|
/**
|
|
@@ -1788,6 +1885,18 @@ export interface DescribeOrganizationConfigurationRequest {
|
|
|
1788
1885
|
* from.</p>
|
|
1789
1886
|
*/
|
|
1790
1887
|
DetectorId: string | undefined;
|
|
1888
|
+
/**
|
|
1889
|
+
* <p>You can use this parameter to indicate the maximum number of items
|
|
1890
|
+
* that you want in the response.</p>
|
|
1891
|
+
*/
|
|
1892
|
+
MaxResults?: number;
|
|
1893
|
+
/**
|
|
1894
|
+
* <p>You can use this parameter when paginating results. Set the value of this parameter to null on your
|
|
1895
|
+
* first call to the list action. For subsequent calls to the action, fill <code>nextToken</code>
|
|
1896
|
+
* in the request with the
|
|
1897
|
+
* value of <code>NextToken</code> from the previous response to continue listing data.</p>
|
|
1898
|
+
*/
|
|
1899
|
+
NextToken?: string;
|
|
1791
1900
|
}
|
|
1792
1901
|
/**
|
|
1793
1902
|
* <p>The current configuration of Kubernetes audit logs as a data source for the organization.</p>
|
|
@@ -1863,6 +1972,35 @@ export interface OrganizationDataSourceConfigurationsResult {
|
|
|
1863
1972
|
*/
|
|
1864
1973
|
MalwareProtection?: OrganizationMalwareProtectionConfigurationResult;
|
|
1865
1974
|
}
|
|
1975
|
+
export declare enum OrgFeatureStatus {
|
|
1976
|
+
NEW = "NEW",
|
|
1977
|
+
NONE = "NONE"
|
|
1978
|
+
}
|
|
1979
|
+
export declare enum OrgFeature {
|
|
1980
|
+
EBS_MALWARE_PROTECTION = "EBS_MALWARE_PROTECTION",
|
|
1981
|
+
EKS_AUDIT_LOGS = "EKS_AUDIT_LOGS",
|
|
1982
|
+
RDS_LOGIN_EVENTS = "RDS_LOGIN_EVENTS",
|
|
1983
|
+
S3_DATA_EVENTS = "S3_DATA_EVENTS"
|
|
1984
|
+
}
|
|
1985
|
+
/**
|
|
1986
|
+
* <p>A list of features which will be configured for the organization.</p>
|
|
1987
|
+
*/
|
|
1988
|
+
export interface OrganizationFeatureConfigurationResult {
|
|
1989
|
+
/**
|
|
1990
|
+
* <p>The name of the feature that is configured for the member accounts within the
|
|
1991
|
+
* organization.</p>
|
|
1992
|
+
*/
|
|
1993
|
+
Name?: OrgFeature | string;
|
|
1994
|
+
/**
|
|
1995
|
+
* <p>Describes how The status of the feature that are configured for the member accounts within the
|
|
1996
|
+
* organization.</p>
|
|
1997
|
+
* <p>If you set <code>AutoEnable</code> to <code>NEW</code>, a feature will be configured for
|
|
1998
|
+
* only the new accounts when they join the organization.</p>
|
|
1999
|
+
* <p>If you set <code>AutoEnable</code> to <code>NONE</code>, no feature will be configured for
|
|
2000
|
+
* the accounts when they join the organization.</p>
|
|
2001
|
+
*/
|
|
2002
|
+
AutoEnable?: OrgFeatureStatus | string;
|
|
2003
|
+
}
|
|
1866
2004
|
export interface DescribeOrganizationConfigurationResponse {
|
|
1867
2005
|
/**
|
|
1868
2006
|
* <p>Indicates whether GuardDuty is automatically enabled for accounts added to the
|
|
@@ -1875,10 +2013,20 @@ export interface DescribeOrganizationConfigurationResponse {
|
|
|
1875
2013
|
*/
|
|
1876
2014
|
MemberAccountLimitReached: boolean | undefined;
|
|
1877
2015
|
/**
|
|
2016
|
+
* @deprecated
|
|
2017
|
+
*
|
|
1878
2018
|
* <p>Describes which data sources are enabled automatically for member
|
|
1879
2019
|
* accounts.</p>
|
|
1880
2020
|
*/
|
|
1881
2021
|
DataSources?: OrganizationDataSourceConfigurationsResult;
|
|
2022
|
+
/**
|
|
2023
|
+
* <p>A list of features that are configured for this organization.</p>
|
|
2024
|
+
*/
|
|
2025
|
+
Features?: OrganizationFeatureConfigurationResult[];
|
|
2026
|
+
/**
|
|
2027
|
+
* <p>The pagination parameter to be used on the next list operation to retrieve more items.</p>
|
|
2028
|
+
*/
|
|
2029
|
+
NextToken?: string;
|
|
1882
2030
|
}
|
|
1883
2031
|
export interface DescribePublishingDestinationRequest {
|
|
1884
2032
|
/**
|
|
@@ -1941,6 +2089,32 @@ export interface Destination {
|
|
|
1941
2089
|
*/
|
|
1942
2090
|
Status: PublishingStatus | string | undefined;
|
|
1943
2091
|
}
|
|
2092
|
+
export declare enum DetectorFeatureResult {
|
|
2093
|
+
CLOUD_TRAIL = "CLOUD_TRAIL",
|
|
2094
|
+
DNS_LOGS = "DNS_LOGS",
|
|
2095
|
+
EBS_MALWARE_PROTECTION = "EBS_MALWARE_PROTECTION",
|
|
2096
|
+
EKS_AUDIT_LOGS = "EKS_AUDIT_LOGS",
|
|
2097
|
+
FLOW_LOGS = "FLOW_LOGS",
|
|
2098
|
+
RDS_LOGIN_EVENTS = "RDS_LOGIN_EVENTS",
|
|
2099
|
+
S3_DATA_EVENTS = "S3_DATA_EVENTS"
|
|
2100
|
+
}
|
|
2101
|
+
/**
|
|
2102
|
+
* <p>Contains information about a GuardDuty feature.</p>
|
|
2103
|
+
*/
|
|
2104
|
+
export interface DetectorFeatureConfigurationResult {
|
|
2105
|
+
/**
|
|
2106
|
+
* <p>Indicates the name of the feature that can be enabled for the detector.</p>
|
|
2107
|
+
*/
|
|
2108
|
+
Name?: DetectorFeatureResult | string;
|
|
2109
|
+
/**
|
|
2110
|
+
* <p>Indicates the status of the feature that is enabled for the detector.</p>
|
|
2111
|
+
*/
|
|
2112
|
+
Status?: FeatureStatus | string;
|
|
2113
|
+
/**
|
|
2114
|
+
* <p>The timestamp at which the feature object was updated.</p>
|
|
2115
|
+
*/
|
|
2116
|
+
UpdatedAt?: Date;
|
|
2117
|
+
}
|
|
1944
2118
|
export declare enum DetectorStatus {
|
|
1945
2119
|
DISABLED = "DISABLED",
|
|
1946
2120
|
ENABLED = "ENABLED"
|
|
@@ -2563,6 +2737,63 @@ export interface KubernetesDetails {
|
|
|
2563
2737
|
*/
|
|
2564
2738
|
KubernetesWorkloadDetails?: KubernetesWorkloadDetails;
|
|
2565
2739
|
}
|
|
2740
|
+
/**
|
|
2741
|
+
* <p>Contains information about the resource type <code>RDSDBInstance</code> involved in a GuardDuty
|
|
2742
|
+
* finding.</p>
|
|
2743
|
+
*/
|
|
2744
|
+
export interface RdsDbInstanceDetails {
|
|
2745
|
+
/**
|
|
2746
|
+
* <p>The identifier associated to the database instance that was involved in the finding.</p>
|
|
2747
|
+
*/
|
|
2748
|
+
DbInstanceIdentifier?: string;
|
|
2749
|
+
/**
|
|
2750
|
+
* <p>The database engine of the database instance involved in the finding.</p>
|
|
2751
|
+
*/
|
|
2752
|
+
Engine?: string;
|
|
2753
|
+
/**
|
|
2754
|
+
* <p>The version of the database engine that was involved in the finding.</p>
|
|
2755
|
+
*/
|
|
2756
|
+
EngineVersion?: string;
|
|
2757
|
+
/**
|
|
2758
|
+
* <p>The identifier of the database cluster that contains the database instance ID involved in the
|
|
2759
|
+
* finding.</p>
|
|
2760
|
+
*/
|
|
2761
|
+
DbClusterIdentifier?: string;
|
|
2762
|
+
/**
|
|
2763
|
+
* <p>The Amazon Resource Name (ARN) that identifies the database instance involved in the finding.</p>
|
|
2764
|
+
*/
|
|
2765
|
+
DbInstanceArn?: string;
|
|
2766
|
+
/**
|
|
2767
|
+
* <p>Instance tag key-value pairs associated with the database instance ID.</p>
|
|
2768
|
+
*/
|
|
2769
|
+
Tags?: Tag[];
|
|
2770
|
+
}
|
|
2771
|
+
/**
|
|
2772
|
+
* <p>Contains information about the user and authentication details for a database instance
|
|
2773
|
+
* involved in the finding.</p>
|
|
2774
|
+
*/
|
|
2775
|
+
export interface RdsDbUserDetails {
|
|
2776
|
+
/**
|
|
2777
|
+
* <p>The user name used in the anomalous login attempt.</p>
|
|
2778
|
+
*/
|
|
2779
|
+
User?: string;
|
|
2780
|
+
/**
|
|
2781
|
+
* <p>The application name used in the anomalous login attempt.</p>
|
|
2782
|
+
*/
|
|
2783
|
+
Application?: string;
|
|
2784
|
+
/**
|
|
2785
|
+
* <p>The name of the database instance involved in the anomalous login attempt.</p>
|
|
2786
|
+
*/
|
|
2787
|
+
Database?: string;
|
|
2788
|
+
/**
|
|
2789
|
+
* <p>The version of the Secure Socket Layer (SSL) used for the network.</p>
|
|
2790
|
+
*/
|
|
2791
|
+
Ssl?: string;
|
|
2792
|
+
/**
|
|
2793
|
+
* <p>The authentication method used by the user involved in the finding.</p>
|
|
2794
|
+
*/
|
|
2795
|
+
AuthMethod?: string;
|
|
2796
|
+
}
|
|
2566
2797
|
/**
|
|
2567
2798
|
* <p>Contains information on the owner of the bucket.</p>
|
|
2568
2799
|
*/
|
|
@@ -2682,6 +2913,14 @@ export interface Resource {
|
|
|
2682
2913
|
* <p>Details of a container.</p>
|
|
2683
2914
|
*/
|
|
2684
2915
|
ContainerDetails?: Container;
|
|
2916
|
+
/**
|
|
2917
|
+
* <p>Contains information about the database instance to which an anomalous login attempt was made.</p>
|
|
2918
|
+
*/
|
|
2919
|
+
RdsDbInstanceDetails?: RdsDbInstanceDetails;
|
|
2920
|
+
/**
|
|
2921
|
+
* <p>Contains information about the user details through which anomalous login attempt was made.</p>
|
|
2922
|
+
*/
|
|
2923
|
+
RdsDbUserDetails?: RdsDbUserDetails;
|
|
2685
2924
|
}
|
|
2686
2925
|
/**
|
|
2687
2926
|
* <p>Additional information about the generated finding.</p>
|
|
@@ -2874,6 +3113,8 @@ export interface GetDetectorResponse {
|
|
|
2874
3113
|
*/
|
|
2875
3114
|
UpdatedAt?: string;
|
|
2876
3115
|
/**
|
|
3116
|
+
* @deprecated
|
|
3117
|
+
*
|
|
2877
3118
|
* <p>Describes which data sources are enabled for the detector.</p>
|
|
2878
3119
|
*/
|
|
2879
3120
|
DataSources?: DataSourceConfigurationsResult;
|
|
@@ -2881,6 +3122,10 @@ export interface GetDetectorResponse {
|
|
|
2881
3122
|
* <p>The tags of the detector resource.</p>
|
|
2882
3123
|
*/
|
|
2883
3124
|
Tags?: Record<string, string>;
|
|
3125
|
+
/**
|
|
3126
|
+
* <p>Describes the features that have been enabled for the detector.</p>
|
|
3127
|
+
*/
|
|
3128
|
+
Features?: DetectorFeatureConfigurationResult[];
|
|
2884
3129
|
}
|
|
2885
3130
|
export interface GetFilterRequest {
|
|
2886
3131
|
/**
|
|
@@ -3112,6 +3357,23 @@ export interface GetMemberDetectorsRequest {
|
|
|
3112
3357
|
*/
|
|
3113
3358
|
AccountIds: string[] | undefined;
|
|
3114
3359
|
}
|
|
3360
|
+
/**
|
|
3361
|
+
* <p>Contains information about the features for the member account.</p>
|
|
3362
|
+
*/
|
|
3363
|
+
export interface MemberFeaturesConfigurationResult {
|
|
3364
|
+
/**
|
|
3365
|
+
* <p>Indicates the name of the feature that is enabled for the detector.</p>
|
|
3366
|
+
*/
|
|
3367
|
+
Name?: OrgFeature | string;
|
|
3368
|
+
/**
|
|
3369
|
+
* <p>Indicates the status of the feature that is enabled for the detector.</p>
|
|
3370
|
+
*/
|
|
3371
|
+
Status?: FeatureStatus | string;
|
|
3372
|
+
/**
|
|
3373
|
+
* <p>The timestamp at which the feature object was updated.</p>
|
|
3374
|
+
*/
|
|
3375
|
+
UpdatedAt?: Date;
|
|
3376
|
+
}
|
|
3115
3377
|
/**
|
|
3116
3378
|
* <p>Contains information on which data sources are enabled for a member account.</p>
|
|
3117
3379
|
*/
|
|
@@ -3121,9 +3383,15 @@ export interface MemberDataSourceConfiguration {
|
|
|
3121
3383
|
*/
|
|
3122
3384
|
AccountId: string | undefined;
|
|
3123
3385
|
/**
|
|
3386
|
+
* @deprecated
|
|
3387
|
+
*
|
|
3124
3388
|
* <p>Contains information on the status of data sources for the account.</p>
|
|
3125
3389
|
*/
|
|
3126
|
-
DataSources
|
|
3390
|
+
DataSources?: DataSourceConfigurationsResult;
|
|
3391
|
+
/**
|
|
3392
|
+
* <p>Contains information about the status of the features for the member account.</p>
|
|
3393
|
+
*/
|
|
3394
|
+
Features?: MemberFeaturesConfigurationResult[];
|
|
3127
3395
|
}
|
|
3128
3396
|
export interface GetMemberDetectorsResponse {
|
|
3129
3397
|
/**
|
|
@@ -3257,6 +3525,17 @@ export interface GetThreatIntelSetResponse {
|
|
|
3257
3525
|
*/
|
|
3258
3526
|
Tags?: Record<string, string>;
|
|
3259
3527
|
}
|
|
3528
|
+
export declare enum UsageFeature {
|
|
3529
|
+
CLOUD_TRAIL = "CLOUD_TRAIL",
|
|
3530
|
+
DNS_LOGS = "DNS_LOGS",
|
|
3531
|
+
EBS_MALWARE_PROTECTION = "EBS_MALWARE_PROTECTION",
|
|
3532
|
+
EKS_AUDIT_LOGS = "EKS_AUDIT_LOGS",
|
|
3533
|
+
EKS_RUNTIME_MONITORING = "EKS_RUNTIME_MONITORING",
|
|
3534
|
+
FLOW_LOGS = "FLOW_LOGS",
|
|
3535
|
+
LAMBDA_NETWORK_LOGS = "LAMBDA_NETWORK_LOGS",
|
|
3536
|
+
RDS_LOGIN_EVENTS = "RDS_LOGIN_EVENTS",
|
|
3537
|
+
S3_DATA_EVENTS = "S3_DATA_EVENTS"
|
|
3538
|
+
}
|
|
3260
3539
|
/**
|
|
3261
3540
|
* <p>Contains information about the criteria used to query usage statistics.</p>
|
|
3262
3541
|
*/
|
|
@@ -3266,18 +3545,25 @@ export interface UsageCriteria {
|
|
|
3266
3545
|
*/
|
|
3267
3546
|
AccountIds?: string[];
|
|
3268
3547
|
/**
|
|
3548
|
+
* @deprecated
|
|
3549
|
+
*
|
|
3269
3550
|
* <p>The data sources to aggregate usage statistics from.</p>
|
|
3270
3551
|
*/
|
|
3271
|
-
DataSources
|
|
3552
|
+
DataSources?: (DataSource | string)[];
|
|
3272
3553
|
/**
|
|
3273
3554
|
* <p>The resources to aggregate usage statistics from. Only accepts exact resource
|
|
3274
3555
|
* names.</p>
|
|
3275
3556
|
*/
|
|
3276
3557
|
Resources?: string[];
|
|
3558
|
+
/**
|
|
3559
|
+
* <p>The features to aggregate usage statistics from.</p>
|
|
3560
|
+
*/
|
|
3561
|
+
Features?: (UsageFeature | string)[];
|
|
3277
3562
|
}
|
|
3278
3563
|
export declare enum UsageStatisticType {
|
|
3279
3564
|
SUM_BY_ACCOUNT = "SUM_BY_ACCOUNT",
|
|
3280
3565
|
SUM_BY_DATA_SOURCE = "SUM_BY_DATA_SOURCE",
|
|
3566
|
+
SUM_BY_FEATURES = "SUM_BY_FEATURES",
|
|
3281
3567
|
SUM_BY_RESOURCE = "SUM_BY_RESOURCE",
|
|
3282
3568
|
TOP_RESOURCES = "TOP_RESOURCES"
|
|
3283
3569
|
}
|
|
@@ -3351,6 +3637,19 @@ export interface UsageDataSourceResult {
|
|
|
3351
3637
|
*/
|
|
3352
3638
|
Total?: Total;
|
|
3353
3639
|
}
|
|
3640
|
+
/**
|
|
3641
|
+
* <p>Contains information about the result of the total usage based on the feature.</p>
|
|
3642
|
+
*/
|
|
3643
|
+
export interface UsageFeatureResult {
|
|
3644
|
+
/**
|
|
3645
|
+
* <p>The feature that generated the usage cost.</p>
|
|
3646
|
+
*/
|
|
3647
|
+
Feature?: UsageFeature | string;
|
|
3648
|
+
/**
|
|
3649
|
+
* <p>Contains the total usage with the corresponding currency unit for that value.</p>
|
|
3650
|
+
*/
|
|
3651
|
+
Total?: Total;
|
|
3652
|
+
}
|
|
3354
3653
|
/**
|
|
3355
3654
|
* <p>Contains information on the sum of usage based on an Amazon Web Services resource.</p>
|
|
3356
3655
|
*/
|
|
@@ -3386,6 +3685,10 @@ export interface UsageStatistics {
|
|
|
3386
3685
|
* most to least expensive.</p>
|
|
3387
3686
|
*/
|
|
3388
3687
|
TopResources?: UsageResourceResult[];
|
|
3688
|
+
/**
|
|
3689
|
+
* <p>The usage statistic sum organized by feature.</p>
|
|
3690
|
+
*/
|
|
3691
|
+
SumByFeature?: UsageFeatureResult[];
|
|
3389
3692
|
}
|
|
3390
3693
|
export interface GetUsageStatisticsResponse {
|
|
3391
3694
|
/**
|
|
@@ -3968,12 +4271,18 @@ export interface UpdateDetectorRequest {
|
|
|
3968
4271
|
*/
|
|
3969
4272
|
FindingPublishingFrequency?: FindingPublishingFrequency | string;
|
|
3970
4273
|
/**
|
|
4274
|
+
* @deprecated
|
|
4275
|
+
*
|
|
3971
4276
|
* <p>Describes which data sources will be updated.</p>
|
|
3972
4277
|
* <p>There might be regional differences because some data sources might not be
|
|
3973
4278
|
* available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more
|
|
3974
4279
|
* information, see <a href="https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_regions.html">Regions and endpoints</a>.</p>
|
|
3975
4280
|
*/
|
|
3976
4281
|
DataSources?: DataSourceConfigurations;
|
|
4282
|
+
/**
|
|
4283
|
+
* <p>Provides the features that will be updated for the detector.</p>
|
|
4284
|
+
*/
|
|
4285
|
+
Features?: DetectorFeatureConfiguration[];
|
|
3977
4286
|
}
|
|
3978
4287
|
export interface UpdateDetectorResponse {
|
|
3979
4288
|
}
|
|
@@ -4074,6 +4383,19 @@ export interface UpdateMalwareScanSettingsRequest {
|
|
|
4074
4383
|
}
|
|
4075
4384
|
export interface UpdateMalwareScanSettingsResponse {
|
|
4076
4385
|
}
|
|
4386
|
+
/**
|
|
4387
|
+
* <p>Contains information about the features for the member account.</p>
|
|
4388
|
+
*/
|
|
4389
|
+
export interface MemberFeaturesConfiguration {
|
|
4390
|
+
/**
|
|
4391
|
+
* <p>The name of the feature.</p>
|
|
4392
|
+
*/
|
|
4393
|
+
Name?: OrgFeature | string;
|
|
4394
|
+
/**
|
|
4395
|
+
* <p>The status of the feature.</p>
|
|
4396
|
+
*/
|
|
4397
|
+
Status?: FeatureStatus | string;
|
|
4398
|
+
}
|
|
4077
4399
|
export interface UpdateMemberDetectorsRequest {
|
|
4078
4400
|
/**
|
|
4079
4401
|
* <p>The detector ID of the administrator account.</p>
|
|
@@ -4084,9 +4406,15 @@ export interface UpdateMemberDetectorsRequest {
|
|
|
4084
4406
|
*/
|
|
4085
4407
|
AccountIds: string[] | undefined;
|
|
4086
4408
|
/**
|
|
4409
|
+
* @deprecated
|
|
4410
|
+
*
|
|
4087
4411
|
* <p>Describes which data sources will be updated.</p>
|
|
4088
4412
|
*/
|
|
4089
4413
|
DataSources?: DataSourceConfigurations;
|
|
4414
|
+
/**
|
|
4415
|
+
* <p>A list of features that will be updated for the specified member accounts.</p>
|
|
4416
|
+
*/
|
|
4417
|
+
Features?: MemberFeaturesConfiguration[];
|
|
4090
4418
|
}
|
|
4091
4419
|
export interface UpdateMemberDetectorsResponse {
|
|
4092
4420
|
/**
|
|
@@ -4171,6 +4499,19 @@ export interface OrganizationDataSourceConfigurations {
|
|
|
4171
4499
|
*/
|
|
4172
4500
|
MalwareProtection?: OrganizationMalwareProtectionConfiguration;
|
|
4173
4501
|
}
|
|
4502
|
+
/**
|
|
4503
|
+
* <p>A list of features which will be configured for the organization.</p>
|
|
4504
|
+
*/
|
|
4505
|
+
export interface OrganizationFeatureConfiguration {
|
|
4506
|
+
/**
|
|
4507
|
+
* <p>The name of the feature that will be configured for the organization.</p>
|
|
4508
|
+
*/
|
|
4509
|
+
Name?: OrgFeature | string;
|
|
4510
|
+
/**
|
|
4511
|
+
* <p>The status of the feature that will be configured for the organization.</p>
|
|
4512
|
+
*/
|
|
4513
|
+
AutoEnable?: OrgFeatureStatus | string;
|
|
4514
|
+
}
|
|
4174
4515
|
export interface UpdateOrganizationConfigurationRequest {
|
|
4175
4516
|
/**
|
|
4176
4517
|
* <p>The ID of the detector to update the delegated administrator for.</p>
|
|
@@ -4181,9 +4522,15 @@ export interface UpdateOrganizationConfigurationRequest {
|
|
|
4181
4522
|
*/
|
|
4182
4523
|
AutoEnable: boolean | undefined;
|
|
4183
4524
|
/**
|
|
4525
|
+
* @deprecated
|
|
4526
|
+
*
|
|
4184
4527
|
* <p>Describes which data sources will be updated.</p>
|
|
4185
4528
|
*/
|
|
4186
4529
|
DataSources?: OrganizationDataSourceConfigurations;
|
|
4530
|
+
/**
|
|
4531
|
+
* <p>A list of features that will be configured for the organization.</p>
|
|
4532
|
+
*/
|
|
4533
|
+
Features?: OrganizationFeatureConfiguration[];
|
|
4187
4534
|
}
|
|
4188
4535
|
export interface UpdateOrganizationConfigurationResponse {
|
|
4189
4536
|
}
|
|
@@ -4274,6 +4621,10 @@ export declare const MalwareProtectionDataSourceFreeTrialFilterSensitiveLog: (ob
|
|
|
4274
4621
|
* @internal
|
|
4275
4622
|
*/
|
|
4276
4623
|
export declare const DataSourcesFreeTrialFilterSensitiveLog: (obj: DataSourcesFreeTrial) => any;
|
|
4624
|
+
/**
|
|
4625
|
+
* @internal
|
|
4626
|
+
*/
|
|
4627
|
+
export declare const FreeTrialFeatureConfigurationResultFilterSensitiveLog: (obj: FreeTrialFeatureConfigurationResult) => any;
|
|
4277
4628
|
/**
|
|
4278
4629
|
* @internal
|
|
4279
4630
|
*/
|
|
@@ -4350,6 +4701,14 @@ export declare const PortProbeDetailFilterSensitiveLog: (obj: PortProbeDetail) =
|
|
|
4350
4701
|
* @internal
|
|
4351
4702
|
*/
|
|
4352
4703
|
export declare const PortProbeActionFilterSensitiveLog: (obj: PortProbeAction) => any;
|
|
4704
|
+
/**
|
|
4705
|
+
* @internal
|
|
4706
|
+
*/
|
|
4707
|
+
export declare const LoginAttributeFilterSensitiveLog: (obj: LoginAttribute) => any;
|
|
4708
|
+
/**
|
|
4709
|
+
* @internal
|
|
4710
|
+
*/
|
|
4711
|
+
export declare const RdsLoginAttemptActionFilterSensitiveLog: (obj: RdsLoginAttemptAction) => any;
|
|
4353
4712
|
/**
|
|
4354
4713
|
* @internal
|
|
4355
4714
|
*/
|
|
@@ -4422,6 +4781,10 @@ export declare const S3LogsConfigurationFilterSensitiveLog: (obj: S3LogsConfigur
|
|
|
4422
4781
|
* @internal
|
|
4423
4782
|
*/
|
|
4424
4783
|
export declare const DataSourceConfigurationsFilterSensitiveLog: (obj: DataSourceConfigurations) => any;
|
|
4784
|
+
/**
|
|
4785
|
+
* @internal
|
|
4786
|
+
*/
|
|
4787
|
+
export declare const DetectorFeatureConfigurationFilterSensitiveLog: (obj: DetectorFeatureConfiguration) => any;
|
|
4425
4788
|
/**
|
|
4426
4789
|
* @internal
|
|
4427
4790
|
*/
|
|
@@ -4674,6 +5037,10 @@ export declare const OrganizationS3LogsConfigurationResultFilterSensitiveLog: (o
|
|
|
4674
5037
|
* @internal
|
|
4675
5038
|
*/
|
|
4676
5039
|
export declare const OrganizationDataSourceConfigurationsResultFilterSensitiveLog: (obj: OrganizationDataSourceConfigurationsResult) => any;
|
|
5040
|
+
/**
|
|
5041
|
+
* @internal
|
|
5042
|
+
*/
|
|
5043
|
+
export declare const OrganizationFeatureConfigurationResultFilterSensitiveLog: (obj: OrganizationFeatureConfigurationResult) => any;
|
|
4677
5044
|
/**
|
|
4678
5045
|
* @internal
|
|
4679
5046
|
*/
|
|
@@ -4690,6 +5057,10 @@ export declare const DescribePublishingDestinationResponseFilterSensitiveLog: (o
|
|
|
4690
5057
|
* @internal
|
|
4691
5058
|
*/
|
|
4692
5059
|
export declare const DestinationFilterSensitiveLog: (obj: Destination) => any;
|
|
5060
|
+
/**
|
|
5061
|
+
* @internal
|
|
5062
|
+
*/
|
|
5063
|
+
export declare const DetectorFeatureConfigurationResultFilterSensitiveLog: (obj: DetectorFeatureConfigurationResult) => any;
|
|
4693
5064
|
/**
|
|
4694
5065
|
* @internal
|
|
4695
5066
|
*/
|
|
@@ -4834,6 +5205,14 @@ export declare const KubernetesWorkloadDetailsFilterSensitiveLog: (obj: Kubernet
|
|
|
4834
5205
|
* @internal
|
|
4835
5206
|
*/
|
|
4836
5207
|
export declare const KubernetesDetailsFilterSensitiveLog: (obj: KubernetesDetails) => any;
|
|
5208
|
+
/**
|
|
5209
|
+
* @internal
|
|
5210
|
+
*/
|
|
5211
|
+
export declare const RdsDbInstanceDetailsFilterSensitiveLog: (obj: RdsDbInstanceDetails) => any;
|
|
5212
|
+
/**
|
|
5213
|
+
* @internal
|
|
5214
|
+
*/
|
|
5215
|
+
export declare const RdsDbUserDetailsFilterSensitiveLog: (obj: RdsDbUserDetails) => any;
|
|
4837
5216
|
/**
|
|
4838
5217
|
* @internal
|
|
4839
5218
|
*/
|
|
@@ -4962,6 +5341,10 @@ export declare const GetMasterAccountResponseFilterSensitiveLog: (obj: GetMaster
|
|
|
4962
5341
|
* @internal
|
|
4963
5342
|
*/
|
|
4964
5343
|
export declare const GetMemberDetectorsRequestFilterSensitiveLog: (obj: GetMemberDetectorsRequest) => any;
|
|
5344
|
+
/**
|
|
5345
|
+
* @internal
|
|
5346
|
+
*/
|
|
5347
|
+
export declare const MemberFeaturesConfigurationResultFilterSensitiveLog: (obj: MemberFeaturesConfigurationResult) => any;
|
|
4965
5348
|
/**
|
|
4966
5349
|
* @internal
|
|
4967
5350
|
*/
|
|
@@ -5018,6 +5401,10 @@ export declare const UsageAccountResultFilterSensitiveLog: (obj: UsageAccountRes
|
|
|
5018
5401
|
* @internal
|
|
5019
5402
|
*/
|
|
5020
5403
|
export declare const UsageDataSourceResultFilterSensitiveLog: (obj: UsageDataSourceResult) => any;
|
|
5404
|
+
/**
|
|
5405
|
+
* @internal
|
|
5406
|
+
*/
|
|
5407
|
+
export declare const UsageFeatureResultFilterSensitiveLog: (obj: UsageFeatureResult) => any;
|
|
5021
5408
|
/**
|
|
5022
5409
|
* @internal
|
|
5023
5410
|
*/
|
|
@@ -5202,6 +5589,10 @@ export declare const UpdateMalwareScanSettingsRequestFilterSensitiveLog: (obj: U
|
|
|
5202
5589
|
* @internal
|
|
5203
5590
|
*/
|
|
5204
5591
|
export declare const UpdateMalwareScanSettingsResponseFilterSensitiveLog: (obj: UpdateMalwareScanSettingsResponse) => any;
|
|
5592
|
+
/**
|
|
5593
|
+
* @internal
|
|
5594
|
+
*/
|
|
5595
|
+
export declare const MemberFeaturesConfigurationFilterSensitiveLog: (obj: MemberFeaturesConfiguration) => any;
|
|
5205
5596
|
/**
|
|
5206
5597
|
* @internal
|
|
5207
5598
|
*/
|
|
@@ -5238,6 +5629,10 @@ export declare const OrganizationS3LogsConfigurationFilterSensitiveLog: (obj: Or
|
|
|
5238
5629
|
* @internal
|
|
5239
5630
|
*/
|
|
5240
5631
|
export declare const OrganizationDataSourceConfigurationsFilterSensitiveLog: (obj: OrganizationDataSourceConfigurations) => any;
|
|
5632
|
+
/**
|
|
5633
|
+
* @internal
|
|
5634
|
+
*/
|
|
5635
|
+
export declare const OrganizationFeatureConfigurationFilterSensitiveLog: (obj: OrganizationFeatureConfiguration) => any;
|
|
5241
5636
|
/**
|
|
5242
5637
|
* @internal
|
|
5243
5638
|
*/
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { DescribeOrganizationConfigurationCommandInput, DescribeOrganizationConfigurationCommandOutput } from "../commands/DescribeOrganizationConfigurationCommand";
|
|
3
|
+
import { GuardDutyPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateDescribeOrganizationConfiguration(config: GuardDutyPaginationConfiguration, input: DescribeOrganizationConfigurationCommandInput, ...additionalArguments: any): Paginator<DescribeOrganizationConfigurationCommandOutput>;
|