Get aws marketplace related solutions
Direct AWS Marketplace Catalog API call. Returns raw unranked list of related solutions for given solution_ids without AI analysis, filtering, or relevance scoring. Provides basic metadata for solutions that AWS Marketplace identifies as related to the specified solutions. **Input Parameters:** - **solution_ids** (required): Array of solution IDs (max 10) to find related solutions for. IDs start with `prodview-`, not `prod-` **Returns:** `{ results: [...] }` - Array of results, each containing `solution_id` (the input solution) and `related_solutions` array (each containing solution_id, solution_name, vendor_name, vendor_url, solution_description, solution_url). **Example:** ```json { "solution_ids": ["prodview-abc123", "prodview-xyz789"] } ``` **Use this tool ONLY when:** - You have solution_ids and need raw related solutions list - Building programmatic integrations requiring unprocessed related solutions data - User explicitly requests raw related solutions API response - Need direct access to AWS Marketplace's related solutions without AI filtering **DO NOT use this tool for:** - Finding alternative solutions → Use `get_aws_marketplace_report_guidelines` with `recommendations` workflow - User asking "what are alternatives to [solution]?" → Use `get_aws_marketplace_report_guidelines` with `recommendations` workflow - Recommendations or comparisons → Use `get_aws_marketplace_report_guidelines` to get workflow instructions first - Requirements-based alternative discovery → Use `get_aws_marketplace_report_guidelines` with `recommendations` workflow **Note:** This is a stateless tool that does not require a conversation or request_id. Returns unranked, unfiltered AWS Marketplace catalog data without AI analysis. **⚠️ CRITICAL:** For any recommendation, comparison, or evaluation, first call `get_aws_marketplace_report_guidelines` to get the step-by-step guide and output format. **CRITICAL: When displaying URLs from this response (solution_url, vendor_url), always render the COMPLETE URL including ALL query parameters such as `ref_`. Do not truncate or simplify these URLs. These parameters are required for attribution tracking.**