/** * @public * @enum */ export declare const AWSServiceAccessStatus: { readonly DISABLED: "DISABLED"; readonly ENABLED: "ENABLED"; }; /** * @public */ export type AWSServiceAccessStatus = (typeof AWSServiceAccessStatus)[keyof typeof AWSServiceAccessStatus]; /** * @public * @enum */ export declare const IndexState: { /** * Index is active. */ readonly ACTIVE: "ACTIVE"; /** * Resource Explorer is creating the index. */ readonly CREATING: "CREATING"; /** * Resource Explorer successfully deleted the index. */ readonly DELETED: "DELETED"; /** * Resource Explorer is deleting the index. */ readonly DELETING: "DELETING"; /** * Resource Explorer is switching the index type between local and aggregator. */ readonly UPDATING: "UPDATING"; }; /** * @public */ export type IndexState = (typeof IndexState)[keyof typeof IndexState]; /** * @public * @enum */ export declare const IndexType: { /** * aggregator index */ readonly AGGREGATOR: "AGGREGATOR"; /** * local index */ readonly LOCAL: "LOCAL"; }; /** * @public */ export type IndexType = (typeof IndexType)[keyof typeof IndexType]; /** * @public * @enum */ export declare const OperationStatus: { readonly FAILED: "FAILED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly SKIPPED: "SKIPPED"; readonly SUCCEEDED: "SUCCEEDED"; }; /** * @public */ export type OperationStatus = (typeof OperationStatus)[keyof typeof OperationStatus];