/** * @public * @enum */ export declare const EncryptionStatus: { readonly ACTIVE: "ACTIVE"; readonly UPDATING: "UPDATING"; }; /** * @public */ export type EncryptionStatus = (typeof EncryptionStatus)[keyof typeof EncryptionStatus]; /** * @public * @enum */ export declare const EncryptionType: { readonly KMS: "KMS"; readonly NONE: "NONE"; }; /** * @public */ export type EncryptionType = (typeof EncryptionType)[keyof typeof EncryptionType]; /** * @public * @enum */ export declare const InsightCategory: { readonly FAULT: "FAULT"; }; /** * @public */ export type InsightCategory = (typeof InsightCategory)[keyof typeof InsightCategory]; /** * @public * @enum */ export declare const InsightState: { readonly ACTIVE: "ACTIVE"; readonly CLOSED: "CLOSED"; }; /** * @public */ export type InsightState = (typeof InsightState)[keyof typeof InsightState]; /** * @public * @enum */ export declare const RetrievalStatus: { readonly CANCELLED: "CANCELLED"; readonly COMPLETE: "COMPLETE"; readonly FAILED: "FAILED"; readonly RUNNING: "RUNNING"; readonly SCHEDULED: "SCHEDULED"; readonly TIMEOUT: "TIMEOUT"; }; /** * @public */ export type RetrievalStatus = (typeof RetrievalStatus)[keyof typeof RetrievalStatus]; /** * @public * @enum */ export declare const TraceSegmentDestination: { readonly CloudWatchLogs: "CloudWatchLogs"; readonly XRay: "XRay"; }; /** * @public */ export type TraceSegmentDestination = (typeof TraceSegmentDestination)[keyof typeof TraceSegmentDestination]; /** * @public * @enum */ export declare const TraceSegmentDestinationStatus: { readonly ACTIVE: "ACTIVE"; readonly PENDING: "PENDING"; }; /** * @public */ export type TraceSegmentDestinationStatus = (typeof TraceSegmentDestinationStatus)[keyof typeof TraceSegmentDestinationStatus]; /** * @public * @enum */ export declare const SamplingStrategyName: { readonly FixedRate: "FixedRate"; readonly PartialScan: "PartialScan"; }; /** * @public */ export type SamplingStrategyName = (typeof SamplingStrategyName)[keyof typeof SamplingStrategyName]; /** * @public * @enum */ export declare const TimeRangeType: { readonly Event: "Event"; readonly Service: "Service"; readonly TraceId: "TraceId"; }; /** * @public */ export type TimeRangeType = (typeof TimeRangeType)[keyof typeof TimeRangeType]; /** * @public * @enum */ export declare const TraceFormatType: { readonly OTEL: "OTEL"; readonly XRAY: "XRAY"; }; /** * @public */ export type TraceFormatType = (typeof TraceFormatType)[keyof typeof TraceFormatType];