/** * @public * @enum */ export declare const ValidationExceptionReason: { readonly CANNOT_PARSE: "cannotParse"; readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed"; readonly OTHER: "other"; readonly UNKNOWN_OPERATION: "unknownOperation"; }; /** * @public */ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason]; /** * @public * @enum */ export declare const ChangeDirectionEnum: { readonly DECREASE: "DECREASE"; readonly INCREASE: "INCREASE"; }; /** * @public */ export type ChangeDirectionEnum = (typeof ChangeDirectionEnum)[keyof typeof ChangeDirectionEnum]; /** * @public * @enum */ export declare const ExperimentStatus: { readonly CANCELLED: "CANCELLED"; readonly COMPLETED: "COMPLETED"; readonly CREATED: "CREATED"; readonly RUNNING: "RUNNING"; readonly UPDATING: "UPDATING"; }; /** * @public */ export type ExperimentStatus = (typeof ExperimentStatus)[keyof typeof ExperimentStatus]; /** * @public * @enum */ export declare const ExperimentType: { readonly ONLINE_AB_EXPERIMENT: "aws.evidently.onlineab"; }; /** * @public */ export type ExperimentType = (typeof ExperimentType)[keyof typeof ExperimentType]; /** * @public * @enum */ export declare const FeatureEvaluationStrategy: { readonly ALL_RULES: "ALL_RULES"; readonly DEFAULT_VARIATION: "DEFAULT_VARIATION"; }; /** * @public */ export type FeatureEvaluationStrategy = (typeof FeatureEvaluationStrategy)[keyof typeof FeatureEvaluationStrategy]; /** * @public * @enum */ export declare const FeatureStatus: { readonly AVAILABLE: "AVAILABLE"; readonly UPDATING: "UPDATING"; }; /** * @public */ export type FeatureStatus = (typeof FeatureStatus)[keyof typeof FeatureStatus]; /** * @public * @enum */ export declare const VariationValueType: { readonly BOOLEAN: "BOOLEAN"; readonly DOUBLE: "DOUBLE"; readonly LONG: "LONG"; readonly STRING: "STRING"; }; /** * @public */ export type VariationValueType = (typeof VariationValueType)[keyof typeof VariationValueType]; /** * @public * @enum */ export declare const LaunchStatus: { readonly CANCELLED: "CANCELLED"; readonly COMPLETED: "COMPLETED"; readonly CREATED: "CREATED"; readonly RUNNING: "RUNNING"; readonly UPDATING: "UPDATING"; }; /** * @public */ export type LaunchStatus = (typeof LaunchStatus)[keyof typeof LaunchStatus]; /** * @public * @enum */ export declare const LaunchType: { readonly SCHEDULED_SPLITS_LAUNCH: "aws.evidently.splits"; }; /** * @public */ export type LaunchType = (typeof LaunchType)[keyof typeof LaunchType]; /** * @public * @enum */ export declare const ProjectStatus: { readonly AVAILABLE: "AVAILABLE"; readonly UPDATING: "UPDATING"; }; /** * @public */ export type ProjectStatus = (typeof ProjectStatus)[keyof typeof ProjectStatus]; /** * @public * @enum */ export declare const EventType: { readonly CUSTOM: "aws.evidently.custom"; readonly EVALUATION: "aws.evidently.evaluation"; }; /** * @public */ export type EventType = (typeof EventType)[keyof typeof EventType]; /** * @public * @enum */ export declare const ExperimentBaseStat: { readonly MEAN: "Mean"; }; /** * @public */ export type ExperimentBaseStat = (typeof ExperimentBaseStat)[keyof typeof ExperimentBaseStat]; /** * @public * @enum */ export declare const ExperimentReportName: { readonly BAYESIAN_INFERENCE: "BayesianInference"; }; /** * @public */ export type ExperimentReportName = (typeof ExperimentReportName)[keyof typeof ExperimentReportName]; /** * @public * @enum */ export declare const ExperimentResultRequestType: { readonly BASE_STAT: "BaseStat"; readonly CONFIDENCE_INTERVAL: "ConfidenceInterval"; readonly P_VALUE: "PValue"; readonly TREATMENT_EFFECT: "TreatmentEffect"; }; /** * @public */ export type ExperimentResultRequestType = (typeof ExperimentResultRequestType)[keyof typeof ExperimentResultRequestType]; /** * @public * @enum */ export declare const ExperimentResultResponseType: { readonly CONFIDENCE_INTERVAL_LOWERBOUND: "ConfidenceIntervalLowerBound"; readonly CONFIDENCE_INTERVAL_UPPERBOUND: "ConfidenceIntervalUpperBound"; readonly MEAN: "Mean"; readonly P_VALUE: "PValue"; readonly TREATMENT_EFFECT: "TreatmentEffect"; }; /** * @public */ export type ExperimentResultResponseType = (typeof ExperimentResultResponseType)[keyof typeof ExperimentResultResponseType]; /** * @public * @enum */ export declare const ExperimentStopDesiredState: { readonly CANCELLED: "CANCELLED"; readonly COMPLETED: "COMPLETED"; }; /** * @public */ export type ExperimentStopDesiredState = (typeof ExperimentStopDesiredState)[keyof typeof ExperimentStopDesiredState]; /** * @public * @enum */ export declare const LaunchStopDesiredState: { readonly CANCELLED: "CANCELLED"; readonly COMPLETED: "COMPLETED"; }; /** * @public */ export type LaunchStopDesiredState = (typeof LaunchStopDesiredState)[keyof typeof LaunchStopDesiredState]; /** * @public * @enum */ export declare const SegmentReferenceResourceType: { readonly EXPERIMENT: "EXPERIMENT"; readonly LAUNCH: "LAUNCH"; }; /** * @public */ export type SegmentReferenceResourceType = (typeof SegmentReferenceResourceType)[keyof typeof SegmentReferenceResourceType];