/** * Utility functions for constructing AWS service endpoints. */ /** * Gets the data plane endpoint for the Bedrock AgentCore service. * * The endpoint can be overridden using the BEDROCK_AGENTCORE_DATA_PLANE_ENDPOINT * environment variable. Otherwise, it follows the standard AWS endpoint pattern. * * @param region - AWS region (e.g., 'us-west-2', 'us-east-1') * @returns Full HTTPS endpoint URL * * @example * ```typescript * const endpoint = getDataPlaneEndpoint('us-west-2') * // Returns: 'https://bedrock-agentcore.us-west-2.amazonaws.com' * ``` * * @example * With environment variable override: * ```typescript * process.env.BEDROCK_AGENTCORE_DATA_PLANE_ENDPOINT = 'https://custom-endpoint.example.com' * const endpoint = getDataPlaneEndpoint('us-west-2') * // Returns: 'https://custom-endpoint.example.com' * ``` */ export declare function getDataPlaneEndpoint(region: string): string; //# sourceMappingURL=endpoints.d.ts.map