import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataCrowdstrikeCloudComplianceFrameworkControlsConfig extends cdktf.TerraformMetaArguments { /** * Name of the compliance benchmark in the framework. Examples: `AWS Foundational Security Best Practices v1.*`, `CIS 1.2.0 GCP`, `CIS 1.8.0 GKE` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/cloud_compliance_framework_controls#benchmark DataCrowdstrikeCloudComplianceFrameworkControls#benchmark} */ readonly benchmark?: string; /** * Name of the control. Examples: `Ensure security contact phone is set`, `Ensure that Azure Defender*` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/cloud_compliance_framework_controls#control_name DataCrowdstrikeCloudComplianceFrameworkControls#control_name} */ readonly controlName?: string; /** * Falcon Query Language (FQL) filter for advanced control searches. FQL filter, allowed props: `compliance_control_name`, `compliance_control_authority`, `compliance_control_type`, `compliance_control_section`, `compliance_control_requirement`, `compliance_control_benchmark_name`, `compliance_control_benchmark_version` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/cloud_compliance_framework_controls#fql DataCrowdstrikeCloudComplianceFrameworkControls#fql} */ readonly fql?: string; /** * Requirement of the control(s) within the framework. Examples: `2.*`, `1.1` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/cloud_compliance_framework_controls#requirement DataCrowdstrikeCloudComplianceFrameworkControls#requirement} */ readonly requirement?: string; /** * Section of the benchmark where the control(s) reside. Examples: `Data Protection`, `Data*` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/cloud_compliance_framework_controls#section DataCrowdstrikeCloudComplianceFrameworkControls#section} */ readonly section?: string; } export interface DataCrowdstrikeCloudComplianceFrameworkControlsControls { } export declare function dataCrowdstrikeCloudComplianceFrameworkControlsControlsToTerraform(struct?: DataCrowdstrikeCloudComplianceFrameworkControlsControls): any; export declare function dataCrowdstrikeCloudComplianceFrameworkControlsControlsToHclTerraform(struct?: DataCrowdstrikeCloudComplianceFrameworkControlsControls): any; export declare class DataCrowdstrikeCloudComplianceFrameworkControlsControlsOutputReference 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(): DataCrowdstrikeCloudComplianceFrameworkControlsControls | undefined; set internalValue(value: DataCrowdstrikeCloudComplianceFrameworkControlsControls | undefined); get authority(): any; get benchmark(): any; get code(): any; get id(): any; get name(): any; get requirement(): any; get section(): any; } export declare class DataCrowdstrikeCloudComplianceFrameworkControlsControlsList 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): DataCrowdstrikeCloudComplianceFrameworkControlsControlsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/cloud_compliance_framework_controls crowdstrike_cloud_compliance_framework_controls} */ export declare class DataCrowdstrikeCloudComplianceFrameworkControls extends cdktf.TerraformDataSource { static readonly tfResourceType = "crowdstrike_cloud_compliance_framework_controls"; /** * Generates CDKTF code for importing a DataCrowdstrikeCloudComplianceFrameworkControls 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 DataCrowdstrikeCloudComplianceFrameworkControls to import * @param importFromId The id of the existing DataCrowdstrikeCloudComplianceFrameworkControls that should be imported. Refer to the {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/cloud_compliance_framework_controls#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataCrowdstrikeCloudComplianceFrameworkControls 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_compliance_framework_controls crowdstrike_cloud_compliance_framework_controls} 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 DataCrowdstrikeCloudComplianceFrameworkControlsConfig = {} */ constructor(scope: Construct, id: string, config?: DataCrowdstrikeCloudComplianceFrameworkControlsConfig); private _benchmark?; get benchmark(): string; set benchmark(value: string); resetBenchmark(): void; get benchmarkInput(): string; private _controlName?; get controlName(): string; set controlName(value: string); resetControlName(): void; get controlNameInput(): string; private _controls; get controls(): DataCrowdstrikeCloudComplianceFrameworkControlsControlsList; private _fql?; get fql(): string; set fql(value: string); resetFql(): void; get fqlInput(): string; private _requirement?; get requirement(): string; set requirement(value: string); resetRequirement(): void; get requirementInput(): string; private _section?; get section(): string; set section(value: string); resetSection(): void; get sectionInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }