# Convert AWS Lambda Docs to Markdown

**Use case:** 

Convert an AWS Lambda documentation page into Markdown for cloud engineering assistants.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://docs.aws.amazon.com/lambda/latest/dg/welcome.html"
    }
  ],
  "renderMode": "http",
  "maxPages": 1,
  "includeLinks": true,
  "includeImages": false,
  "includeHtml": false,
  "timeoutSecs": 30
}
```

## Output

```json
{
  "url": {
    "label": "Input URL",
    "format": "link"
  },
  "finalUrl": {
    "label": "Final URL",
    "format": "link"
  },
  "statusCode": {
    "label": "Status"
  },
  "title": {
    "label": "Title"
  },
  "description": {
    "label": "Description"
  },
  "markdown": {
    "label": "Markdown",
    "format": "text"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "links": {
    "label": "Links"
  },
  "images": {
    "label": "Images"
  },
  "metadata": {
    "label": "Metadata"
  },
  "renderModeUsed": {
    "label": "Render mode"
  },
  "html": {
    "label": "HTML",
    "format": "text"
  },
  "error": {
    "label": "Error"
  }
}
```

## About this Actor

This example demonstrates how to use [Web Page to Markdown Extractor](https://apify.com/fetch_cat/web-page-to-markdown-extractor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fetch_cat/web-page-to-markdown-extractor) to learn more, explore other use cases, and run it yourself.