/** * @public * @enum */ export declare const AccessType: { readonly LAKEFORMATION: "LAKEFORMATION"; readonly S3: "S3"; }; /** * @public */ export type AccessType = (typeof AccessType)[keyof typeof AccessType]; /** * @public * @enum */ export declare const AwsLogSourceName: { readonly CLOUD_TRAIL_MGMT: "CLOUD_TRAIL_MGMT"; readonly EKS_AUDIT: "EKS_AUDIT"; readonly LAMBDA_EXECUTION: "LAMBDA_EXECUTION"; readonly ROUTE53: "ROUTE53"; readonly S3_DATA: "S3_DATA"; readonly SH_FINDINGS: "SH_FINDINGS"; readonly VPC_FLOW: "VPC_FLOW"; readonly WAF: "WAF"; }; /** * @public */ export type AwsLogSourceName = (typeof AwsLogSourceName)[keyof typeof AwsLogSourceName]; /** * @public * @enum */ export declare const DataLakeStatus: { readonly COMPLETED: "COMPLETED"; readonly FAILED: "FAILED"; readonly INITIALIZED: "INITIALIZED"; readonly PENDING: "PENDING"; }; /** * @public */ export type DataLakeStatus = (typeof DataLakeStatus)[keyof typeof DataLakeStatus]; /** * @public * @enum */ export declare const SubscriberStatus: { readonly ACTIVE: "ACTIVE"; readonly DEACTIVATED: "DEACTIVATED"; readonly PENDING: "PENDING"; readonly READY: "READY"; }; /** * @public */ export type SubscriberStatus = (typeof SubscriberStatus)[keyof typeof SubscriberStatus]; /** * @public * @enum */ export declare const HttpMethod: { readonly POST: "POST"; readonly PUT: "PUT"; }; /** * @public */ export type HttpMethod = (typeof HttpMethod)[keyof typeof HttpMethod]; /** * @public * @enum */ export declare const SourceCollectionStatus: { readonly COLLECTING: "COLLECTING"; readonly MISCONFIGURED: "MISCONFIGURED"; readonly NOT_COLLECTING: "NOT_COLLECTING"; }; /** * @public */ export type SourceCollectionStatus = (typeof SourceCollectionStatus)[keyof typeof SourceCollectionStatus];