import type { ConnectorId } from '../../../../schema'; /** * Per-connector defaults the L3 fills in automatically. Users only specify * `connectorId` and (for KB connectors) `knowledgeBaseId`; the L3 picks the * operation name, enabled tool list, and human-readable label from this map. * * The CLI is opinionated per the spec — `enabled`, operation names, and * advanced parameter overrides are not exposed. Advanced users drop to the * SDK / API. */ export interface ConnectorDefaults { /** Operation name used in `Configurations[].Name` and `Enabled[]`. */ readonly operation: string; /** Enabled tool list. Must contain the operation. */ readonly enabled: readonly string[]; /** Human-readable label, used in CFN target descriptions. */ readonly label: string; } export declare const CONNECTOR_DEFAULTS: Record; //# sourceMappingURL=connector-defaults.d.ts.map