import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataCrowdstrikeCloudRiskFindingsConfig extends cdktf.TerraformMetaArguments { /** * FQL filter string. Supported fields: `account_id`, `account_name`, `asset_gcrn`, `asset_id`, `asset_name`, `asset_region`, `asset_type`, `cloud_group`, `cloud_provider`, `first_seen`, `last_seen`, `resolved_at`, `risk_factor`, `rule_id`, `rule_name`, `service_category`, `severity`, `status`, `suppressed_by`, `suppressed_reason`, `tags`. Example: `severity:'High'+status:'open'` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/cloud_risk_findings#filter DataCrowdstrikeCloudRiskFindings#filter} */ readonly filter?: string; /** * The field to sort on. Use `.asc` or `.desc` suffix to specify sort direction. Supported fields: `account_id`, `account_name`, `asset_id`, `asset_name`, `asset_region`, `asset_type`, `cloud_provider`, `first_seen`, `last_seen`, `resolved_at`, `rule_name`, `service_category`, `severity`, `status`. Example: `first_seen.desc` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/cloud_risk_findings#sort DataCrowdstrikeCloudRiskFindings#sort} */ readonly sort?: string; } export interface DataCrowdstrikeCloudRiskFindingsRisks { } export declare function dataCrowdstrikeCloudRiskFindingsRisksToTerraform(struct?: DataCrowdstrikeCloudRiskFindingsRisks): any; export declare function dataCrowdstrikeCloudRiskFindingsRisksToHclTerraform(struct?: DataCrowdstrikeCloudRiskFindingsRisks): any; export declare class DataCrowdstrikeCloudRiskFindingsRisksOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): DataCrowdstrikeCloudRiskFindingsRisks | undefined; set internalValue(value: DataCrowdstrikeCloudRiskFindingsRisks | undefined); get accountId(): any; get accountName(): any; get assetGcrn(): any; get assetId(): any; get assetName(): any; get assetRegion(): any; get assetTags(): any; get assetType(): any; get cloudGroups(): any; get cloudProvider(): any; get firstSeen(): any; get id(): any; get lastSeen(): any; get resolvedAt(): any; get ruleDescription(): any; get ruleId(): any; get ruleName(): any; get serviceCategory(): any; get severity(): any; get status(): any; } export declare class DataCrowdstrikeCloudRiskFindingsRisksList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): DataCrowdstrikeCloudRiskFindingsRisksOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/cloud_risk_findings crowdstrike_cloud_risk_findings} */ export declare class DataCrowdstrikeCloudRiskFindings extends cdktf.TerraformDataSource { static readonly tfResourceType = "crowdstrike_cloud_risk_findings"; /** * Generates CDKTF code for importing a DataCrowdstrikeCloudRiskFindings resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the DataCrowdstrikeCloudRiskFindings to import * @param importFromId The id of the existing DataCrowdstrikeCloudRiskFindings that should be imported. Refer to the {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/cloud_risk_findings#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataCrowdstrikeCloudRiskFindings to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/cloud_risk_findings crowdstrike_cloud_risk_findings} Data Source * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options DataCrowdstrikeCloudRiskFindingsConfig = {} */ constructor(scope: Construct, id: string, config?: DataCrowdstrikeCloudRiskFindingsConfig); private _filter?; get filter(): string; set filter(value: string); resetFilter(): void; get filterInput(): string; private _risks; get risks(): DataCrowdstrikeCloudRiskFindingsRisksList; private _sort?; get sort(): string; set sort(value: string); resetSort(): void; get sortInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }