import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataCrowdstrikeCloudAwsAccountConfig extends cdktf.TerraformMetaArguments { /** * Filter the results to a specific AWS Account ID. When specified, returns details for the matching AWS account. Can be used together with organization_id filter for OR matching * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/cloud_aws_account#account_id DataCrowdstrikeCloudAwsAccount#account_id} */ readonly accountId?: string; /** * Filter the results to accounts within a specific AWS Organization. When specified, returns all AWS accounts associated with this organization ID. Can be used together with account_id filter for OR matching * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/cloud_aws_account#organization_id DataCrowdstrikeCloudAwsAccount#organization_id} */ readonly organizationId?: string; } export interface DataCrowdstrikeCloudAwsAccountAccounts { /** * The prefix to be added to all resource names * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/cloud_aws_account#resource_name_prefix DataCrowdstrikeCloudAwsAccount#resource_name_prefix} */ readonly resourceNamePrefix?: string; /** * The suffix to be added to all resource names * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/cloud_aws_account#resource_name_suffix DataCrowdstrikeCloudAwsAccount#resource_name_suffix} */ readonly resourceNameSuffix?: string; } export declare function dataCrowdstrikeCloudAwsAccountAccountsToTerraform(struct?: DataCrowdstrikeCloudAwsAccountAccounts): any; export declare function dataCrowdstrikeCloudAwsAccountAccountsToHclTerraform(struct?: DataCrowdstrikeCloudAwsAccountAccounts): any; export declare class DataCrowdstrikeCloudAwsAccountAccountsOutputReference 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(): DataCrowdstrikeCloudAwsAccountAccounts | undefined; set internalValue(value: DataCrowdstrikeCloudAwsAccountAccounts | undefined); get accountId(): any; get accountType(): any; get agentlessScanningRoleName(): any; get assetInventoryEnabled(): any; get cloudtrailBucketName(): any; get cloudtrailRegion(): any; get dspmEnabled(): any; get dspmRoleArn(): any; get dspmRoleName(): any; get eventbusArn(): any; get eventbusName(): any; get externalId(): any; get iamRoleArn(): any; get iamRoleName(): any; get idpEnabled(): any; get intermediateRoleArn(): any; get isOrganizationManagementAccount(): any; get organizationId(): any; get realtimeVisibilityEnabled(): any; private _resourceNamePrefix?; get resourceNamePrefix(): string; set resourceNamePrefix(value: string); resetResourceNamePrefix(): void; get resourceNamePrefixInput(): string; private _resourceNameSuffix?; get resourceNameSuffix(): string; set resourceNameSuffix(value: string); resetResourceNameSuffix(): void; get resourceNameSuffixInput(): string; get sensorManagementEnabled(): any; get targetOus(): any; get vulnerabilityScanningEnabled(): any; get vulnerabilityScanningRoleArn(): any; get vulnerabilityScanningRoleName(): any; } export declare class DataCrowdstrikeCloudAwsAccountAccountsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: DataCrowdstrikeCloudAwsAccountAccounts[] | cdktf.IResolvable; /** * @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): DataCrowdstrikeCloudAwsAccountAccountsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/cloud_aws_account crowdstrike_cloud_aws_account} */ export declare class DataCrowdstrikeCloudAwsAccount extends cdktf.TerraformDataSource { static readonly tfResourceType = "crowdstrike_cloud_aws_account"; /** * Generates CDKTF code for importing a DataCrowdstrikeCloudAwsAccount 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 DataCrowdstrikeCloudAwsAccount to import * @param importFromId The id of the existing DataCrowdstrikeCloudAwsAccount that should be imported. Refer to the {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/cloud_aws_account#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataCrowdstrikeCloudAwsAccount 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_aws_account crowdstrike_cloud_aws_account} 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 DataCrowdstrikeCloudAwsAccountConfig = {} */ constructor(scope: Construct, id: string, config?: DataCrowdstrikeCloudAwsAccountConfig); private _accountId?; get accountId(): string; set accountId(value: string); resetAccountId(): void; get accountIdInput(): string; private _accounts; get accounts(): DataCrowdstrikeCloudAwsAccountAccountsList; private _organizationId?; get organizationId(): string; set organizationId(value: string); resetOrganizationId(): void; get organizationIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }