export declare const ActionGroup: { readonly AGENT_PERMISSIONS: "agentPermissions"; }; export type ActionGroup = (typeof ActionGroup)[keyof typeof ActionGroup]; export declare const EventPublisher: { readonly ANOMALY_DETECTION: "AnomalyDetection"; }; export type EventPublisher = (typeof EventPublisher)[keyof typeof EventPublisher]; export declare const AgentParameterField: { readonly MAX_STACK_DEPTH: "MaxStackDepth"; readonly MEMORY_USAGE_LIMIT_PERCENT: "MemoryUsageLimitPercent"; readonly MINIMUM_TIME_FOR_REPORTING_IN_MILLISECONDS: "MinimumTimeForReportingInMilliseconds"; readonly REPORTING_INTERVAL_IN_MILLISECONDS: "ReportingIntervalInMilliseconds"; readonly SAMPLING_INTERVAL_IN_MILLISECONDS: "SamplingIntervalInMilliseconds"; }; export type AgentParameterField = (typeof AgentParameterField)[keyof typeof AgentParameterField]; export declare const AggregationPeriod: { readonly P1D: "P1D"; readonly PT1H: "PT1H"; readonly PT5M: "PT5M"; }; export type AggregationPeriod = (typeof AggregationPeriod)[keyof typeof AggregationPeriod]; export declare const FeedbackType: { readonly Negative: "Negative"; readonly Positive: "Positive"; }; export type FeedbackType = (typeof FeedbackType)[keyof typeof FeedbackType]; export declare const MetricType: { readonly AggregatedRelativeTotalTime: "AggregatedRelativeTotalTime"; }; export type MetricType = (typeof MetricType)[keyof typeof MetricType]; export declare const MetadataField: { readonly AGENT_ID: "AgentId"; readonly AWS_REQUEST_ID: "AwsRequestId"; readonly COMPUTE_PLATFORM: "ComputePlatform"; readonly EXECUTION_ENVIRONMENT: "ExecutionEnvironment"; readonly LAMBDA_FUNCTION_ARN: "LambdaFunctionArn"; readonly LAMBDA_MEMORY_LIMIT_IN_MB: "LambdaMemoryLimitInMB"; readonly LAMBDA_PREVIOUS_EXECUTION_TIME_IN_MILLISECONDS: "LambdaPreviousExecutionTimeInMilliseconds"; readonly LAMBDA_REMAINING_TIME_IN_MILLISECONDS: "LambdaRemainingTimeInMilliseconds"; readonly LAMBDA_TIME_GAP_BETWEEN_INVOKES_IN_MILLISECONDS: "LambdaTimeGapBetweenInvokesInMilliseconds"; }; export type MetadataField = (typeof MetadataField)[keyof typeof MetadataField]; export declare const ComputePlatform: { readonly AWSLAMBDA: "AWSLambda"; readonly DEFAULT: "Default"; }; export type ComputePlatform = (typeof ComputePlatform)[keyof typeof ComputePlatform]; export declare const OrderBy: { readonly TIMESTAMP_ASCENDING: "TimestampAscending"; readonly TIMESTAMP_DESCENDING: "TimestampDescending"; }; export type OrderBy = (typeof OrderBy)[keyof typeof OrderBy];