import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataSafeSecurityAssessmentConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_security_assessment#compartment_id DataSafeSecurityAssessment#compartment_id}
    */
    readonly compartmentId: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_security_assessment#defined_tags DataSafeSecurityAssessment#defined_tags}
    */
    readonly definedTags?: {
        [key: string]: string;
    };
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_security_assessment#description DataSafeSecurityAssessment#description}
    */
    readonly description?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_security_assessment#display_name DataSafeSecurityAssessment#display_name}
    */
    readonly displayName?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_security_assessment#freeform_tags DataSafeSecurityAssessment#freeform_tags}
    */
    readonly freeformTags?: {
        [key: string]: string;
    };
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_security_assessment#id DataSafeSecurityAssessment#id}
    *
    * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
    * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
    */
    readonly id?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_security_assessment#is_assessment_scheduled DataSafeSecurityAssessment#is_assessment_scheduled}
    */
    readonly isAssessmentScheduled?: boolean | cdktf.IResolvable;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_security_assessment#schedule DataSafeSecurityAssessment#schedule}
    */
    readonly schedule?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_security_assessment#target_id DataSafeSecurityAssessment#target_id}
    */
    readonly targetId: string;
    /**
    * timeouts block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_security_assessment#timeouts DataSafeSecurityAssessment#timeouts}
    */
    readonly timeouts?: DataSafeSecurityAssessmentTimeouts;
}
export interface DataSafeSecurityAssessmentStatisticsAdvisory {
}
export declare function dataSafeSecurityAssessmentStatisticsAdvisoryToTerraform(struct?: DataSafeSecurityAssessmentStatisticsAdvisory): any;
export declare function dataSafeSecurityAssessmentStatisticsAdvisoryToHclTerraform(struct?: DataSafeSecurityAssessmentStatisticsAdvisory): any;
export declare class DataSafeSecurityAssessmentStatisticsAdvisoryOutputReference 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(): DataSafeSecurityAssessmentStatisticsAdvisory | undefined;
    set internalValue(value: DataSafeSecurityAssessmentStatisticsAdvisory | undefined);
    get auditingFindingsCount(): number;
    get authorizationControlFindingsCount(): number;
    get dataEncryptionFindingsCount(): number;
    get dbConfigurationFindingsCount(): number;
    get fineGrainedAccessControlFindingsCount(): number;
    get privilegesAndRolesFindingsCount(): number;
    get targetsCount(): number;
    get userAccountsFindingsCount(): number;
}
export declare class DataSafeSecurityAssessmentStatisticsAdvisoryList 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): DataSafeSecurityAssessmentStatisticsAdvisoryOutputReference;
}
export interface DataSafeSecurityAssessmentStatisticsDeferred {
}
export declare function dataSafeSecurityAssessmentStatisticsDeferredToTerraform(struct?: DataSafeSecurityAssessmentStatisticsDeferred): any;
export declare function dataSafeSecurityAssessmentStatisticsDeferredToHclTerraform(struct?: DataSafeSecurityAssessmentStatisticsDeferred): any;
export declare class DataSafeSecurityAssessmentStatisticsDeferredOutputReference 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(): DataSafeSecurityAssessmentStatisticsDeferred | undefined;
    set internalValue(value: DataSafeSecurityAssessmentStatisticsDeferred | undefined);
    get auditingFindingsCount(): number;
    get authorizationControlFindingsCount(): number;
    get dataEncryptionFindingsCount(): number;
    get dbConfigurationFindingsCount(): number;
    get fineGrainedAccessControlFindingsCount(): number;
    get privilegesAndRolesFindingsCount(): number;
    get targetsCount(): number;
    get userAccountsFindingsCount(): number;
}
export declare class DataSafeSecurityAssessmentStatisticsDeferredList 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): DataSafeSecurityAssessmentStatisticsDeferredOutputReference;
}
export interface DataSafeSecurityAssessmentStatisticsEvaluate {
}
export declare function dataSafeSecurityAssessmentStatisticsEvaluateToTerraform(struct?: DataSafeSecurityAssessmentStatisticsEvaluate): any;
export declare function dataSafeSecurityAssessmentStatisticsEvaluateToHclTerraform(struct?: DataSafeSecurityAssessmentStatisticsEvaluate): any;
export declare class DataSafeSecurityAssessmentStatisticsEvaluateOutputReference 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(): DataSafeSecurityAssessmentStatisticsEvaluate | undefined;
    set internalValue(value: DataSafeSecurityAssessmentStatisticsEvaluate | undefined);
    get auditingFindingsCount(): number;
    get authorizationControlFindingsCount(): number;
    get dataEncryptionFindingsCount(): number;
    get dbConfigurationFindingsCount(): number;
    get fineGrainedAccessControlFindingsCount(): number;
    get privilegesAndRolesFindingsCount(): number;
    get targetsCount(): number;
    get userAccountsFindingsCount(): number;
}
export declare class DataSafeSecurityAssessmentStatisticsEvaluateList 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): DataSafeSecurityAssessmentStatisticsEvaluateOutputReference;
}
export interface DataSafeSecurityAssessmentStatisticsHighRisk {
}
export declare function dataSafeSecurityAssessmentStatisticsHighRiskToTerraform(struct?: DataSafeSecurityAssessmentStatisticsHighRisk): any;
export declare function dataSafeSecurityAssessmentStatisticsHighRiskToHclTerraform(struct?: DataSafeSecurityAssessmentStatisticsHighRisk): any;
export declare class DataSafeSecurityAssessmentStatisticsHighRiskOutputReference 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(): DataSafeSecurityAssessmentStatisticsHighRisk | undefined;
    set internalValue(value: DataSafeSecurityAssessmentStatisticsHighRisk | undefined);
    get auditingFindingsCount(): number;
    get authorizationControlFindingsCount(): number;
    get dataEncryptionFindingsCount(): number;
    get dbConfigurationFindingsCount(): number;
    get fineGrainedAccessControlFindingsCount(): number;
    get privilegesAndRolesFindingsCount(): number;
    get targetsCount(): number;
    get userAccountsFindingsCount(): number;
}
export declare class DataSafeSecurityAssessmentStatisticsHighRiskList 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): DataSafeSecurityAssessmentStatisticsHighRiskOutputReference;
}
export interface DataSafeSecurityAssessmentStatisticsLowRisk {
}
export declare function dataSafeSecurityAssessmentStatisticsLowRiskToTerraform(struct?: DataSafeSecurityAssessmentStatisticsLowRisk): any;
export declare function dataSafeSecurityAssessmentStatisticsLowRiskToHclTerraform(struct?: DataSafeSecurityAssessmentStatisticsLowRisk): any;
export declare class DataSafeSecurityAssessmentStatisticsLowRiskOutputReference 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(): DataSafeSecurityAssessmentStatisticsLowRisk | undefined;
    set internalValue(value: DataSafeSecurityAssessmentStatisticsLowRisk | undefined);
    get auditingFindingsCount(): number;
    get authorizationControlFindingsCount(): number;
    get dataEncryptionFindingsCount(): number;
    get dbConfigurationFindingsCount(): number;
    get fineGrainedAccessControlFindingsCount(): number;
    get privilegesAndRolesFindingsCount(): number;
    get targetsCount(): number;
    get userAccountsFindingsCount(): number;
}
export declare class DataSafeSecurityAssessmentStatisticsLowRiskList 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): DataSafeSecurityAssessmentStatisticsLowRiskOutputReference;
}
export interface DataSafeSecurityAssessmentStatisticsMediumRisk {
}
export declare function dataSafeSecurityAssessmentStatisticsMediumRiskToTerraform(struct?: DataSafeSecurityAssessmentStatisticsMediumRisk): any;
export declare function dataSafeSecurityAssessmentStatisticsMediumRiskToHclTerraform(struct?: DataSafeSecurityAssessmentStatisticsMediumRisk): any;
export declare class DataSafeSecurityAssessmentStatisticsMediumRiskOutputReference 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(): DataSafeSecurityAssessmentStatisticsMediumRisk | undefined;
    set internalValue(value: DataSafeSecurityAssessmentStatisticsMediumRisk | undefined);
    get auditingFindingsCount(): number;
    get authorizationControlFindingsCount(): number;
    get dataEncryptionFindingsCount(): number;
    get dbConfigurationFindingsCount(): number;
    get fineGrainedAccessControlFindingsCount(): number;
    get privilegesAndRolesFindingsCount(): number;
    get targetsCount(): number;
    get userAccountsFindingsCount(): number;
}
export declare class DataSafeSecurityAssessmentStatisticsMediumRiskList 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): DataSafeSecurityAssessmentStatisticsMediumRiskOutputReference;
}
export interface DataSafeSecurityAssessmentStatisticsPass {
}
export declare function dataSafeSecurityAssessmentStatisticsPassToTerraform(struct?: DataSafeSecurityAssessmentStatisticsPass): any;
export declare function dataSafeSecurityAssessmentStatisticsPassToHclTerraform(struct?: DataSafeSecurityAssessmentStatisticsPass): any;
export declare class DataSafeSecurityAssessmentStatisticsPassOutputReference 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(): DataSafeSecurityAssessmentStatisticsPass | undefined;
    set internalValue(value: DataSafeSecurityAssessmentStatisticsPass | undefined);
    get auditingFindingsCount(): number;
    get authorizationControlFindingsCount(): number;
    get dataEncryptionFindingsCount(): number;
    get dbConfigurationFindingsCount(): number;
    get fineGrainedAccessControlFindingsCount(): number;
    get privilegesAndRolesFindingsCount(): number;
    get targetsCount(): number;
    get userAccountsFindingsCount(): number;
}
export declare class DataSafeSecurityAssessmentStatisticsPassList 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): DataSafeSecurityAssessmentStatisticsPassOutputReference;
}
export interface DataSafeSecurityAssessmentStatistics {
}
export declare function dataSafeSecurityAssessmentStatisticsToTerraform(struct?: DataSafeSecurityAssessmentStatistics): any;
export declare function dataSafeSecurityAssessmentStatisticsToHclTerraform(struct?: DataSafeSecurityAssessmentStatistics): any;
export declare class DataSafeSecurityAssessmentStatisticsOutputReference 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(): DataSafeSecurityAssessmentStatistics | undefined;
    set internalValue(value: DataSafeSecurityAssessmentStatistics | undefined);
    private _advisory;
    get advisory(): DataSafeSecurityAssessmentStatisticsAdvisoryList;
    private _deferred;
    get deferred(): DataSafeSecurityAssessmentStatisticsDeferredList;
    private _evaluate;
    get evaluate(): DataSafeSecurityAssessmentStatisticsEvaluateList;
    private _highRisk;
    get highRisk(): DataSafeSecurityAssessmentStatisticsHighRiskList;
    private _lowRisk;
    get lowRisk(): DataSafeSecurityAssessmentStatisticsLowRiskList;
    private _mediumRisk;
    get mediumRisk(): DataSafeSecurityAssessmentStatisticsMediumRiskList;
    private _pass;
    get pass(): DataSafeSecurityAssessmentStatisticsPassList;
    get targetsCount(): number;
}
export declare class DataSafeSecurityAssessmentStatisticsList 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): DataSafeSecurityAssessmentStatisticsOutputReference;
}
export interface DataSafeSecurityAssessmentTimeouts {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_security_assessment#create DataSafeSecurityAssessment#create}
    */
    readonly create?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_security_assessment#delete DataSafeSecurityAssessment#delete}
    */
    readonly delete?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_security_assessment#update DataSafeSecurityAssessment#update}
    */
    readonly update?: string;
}
export declare function dataSafeSecurityAssessmentTimeoutsToTerraform(struct?: DataSafeSecurityAssessmentTimeouts | cdktf.IResolvable): any;
export declare function dataSafeSecurityAssessmentTimeoutsToHclTerraform(struct?: DataSafeSecurityAssessmentTimeouts | cdktf.IResolvable): any;
export declare class DataSafeSecurityAssessmentTimeoutsOutputReference extends cdktf.ComplexObject {
    private isEmptyObject;
    private resolvableValue?;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
    get internalValue(): DataSafeSecurityAssessmentTimeouts | cdktf.IResolvable | undefined;
    set internalValue(value: DataSafeSecurityAssessmentTimeouts | cdktf.IResolvable | undefined);
    private _create?;
    get create(): string;
    set create(value: string);
    resetCreate(): void;
    get createInput(): string | undefined;
    private _delete?;
    get delete(): string;
    set delete(value: string);
    resetDelete(): void;
    get deleteInput(): string | undefined;
    private _update?;
    get update(): string;
    set update(value: string);
    resetUpdate(): void;
    get updateInput(): string | undefined;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_security_assessment oci_data_safe_security_assessment}
*/
export declare class DataSafeSecurityAssessment extends cdktf.TerraformResource {
    static readonly tfResourceType = "oci_data_safe_security_assessment";
    /**
    * Generates CDKTF code for importing a DataSafeSecurityAssessment resource upon running "cdktf plan <stack-name>"
    * @param scope The scope in which to define this construct
    * @param importToId The construct id used in the generated config for the DataSafeSecurityAssessment to import
    * @param importFromId The id of the existing DataSafeSecurityAssessment that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_security_assessment#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the DataSafeSecurityAssessment to import is found
    */
    static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource;
    /**
    * Create a new {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_security_assessment oci_data_safe_security_assessment} Resource
    *
    * @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 DataSafeSecurityAssessmentConfig
    */
    constructor(scope: Construct, id: string, config: DataSafeSecurityAssessmentConfig);
    private _compartmentId?;
    get compartmentId(): string;
    set compartmentId(value: string);
    get compartmentIdInput(): string | undefined;
    private _definedTags?;
    get definedTags(): {
        [key: string]: string;
    };
    set definedTags(value: {
        [key: string]: string;
    });
    resetDefinedTags(): void;
    get definedTagsInput(): {
        [key: string]: string;
    } | undefined;
    private _description?;
    get description(): string;
    set description(value: string);
    resetDescription(): void;
    get descriptionInput(): string | undefined;
    private _displayName?;
    get displayName(): string;
    set displayName(value: string);
    resetDisplayName(): void;
    get displayNameInput(): string | undefined;
    private _freeformTags?;
    get freeformTags(): {
        [key: string]: string;
    };
    set freeformTags(value: {
        [key: string]: string;
    });
    resetFreeformTags(): void;
    get freeformTagsInput(): {
        [key: string]: string;
    } | undefined;
    private _id?;
    get id(): string;
    set id(value: string);
    resetId(): void;
    get idInput(): string | undefined;
    get ignoredAssessmentIds(): string[];
    get ignoredTargets(): string[];
    private _isAssessmentScheduled?;
    get isAssessmentScheduled(): boolean | cdktf.IResolvable;
    set isAssessmentScheduled(value: boolean | cdktf.IResolvable);
    resetIsAssessmentScheduled(): void;
    get isAssessmentScheduledInput(): boolean | cdktf.IResolvable | undefined;
    get isBaseline(): cdktf.IResolvable;
    get isDeviatedFromBaseline(): cdktf.IResolvable;
    get lastComparedBaselineId(): string;
    get lifecycleDetails(): string;
    get link(): string;
    private _schedule?;
    get schedule(): string;
    set schedule(value: string);
    resetSchedule(): void;
    get scheduleInput(): string | undefined;
    get scheduleSecurityAssessmentId(): string;
    get state(): string;
    private _statistics;
    get statistics(): DataSafeSecurityAssessmentStatisticsList;
    private _systemTags;
    get systemTags(): cdktf.StringMap;
    private _targetId?;
    get targetId(): string;
    set targetId(value: string);
    get targetIdInput(): string | undefined;
    get targetIds(): string[];
    get targetVersion(): string;
    get timeCreated(): string;
    get timeLastAssessed(): string;
    get timeUpdated(): string;
    get triggeredBy(): string;
    get type(): string;
    private _timeouts;
    get timeouts(): DataSafeSecurityAssessmentTimeoutsOutputReference;
    putTimeouts(value: DataSafeSecurityAssessmentTimeouts): void;
    resetTimeouts(): void;
    get timeoutsInput(): cdktf.IResolvable | DataSafeSecurityAssessmentTimeouts | undefined;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
