Skip to content

Improve the API reference landing page - #87

Open
jonathan343 wants to merge 5 commits into
developfrom
api-ref-home
Open

Improve the API reference landing page#87
jonathan343 wants to merge 5 commits into
developfrom
api-ref-home

Conversation

@jonathan343

Copy link
Copy Markdown
Contributor

Overview

The API reference currently inherits its landing page from the repository README, which leaves readers without a clear introduction to the SDK or path into the reference documentation.

This PR replaces it with a purpose-built overview and adds a dismissible Developer Preview notice across the docs. The banner ensures that users entering through deep links still see the production-use guidance.

Testing / Preview

  • make docs-install
  • make docs
  • make docs-serve
Screenshot 2026-08-21 at 12 08 01 AM

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

@jonathan343
jonathan343 requested a review from a team as a code owner August 21, 2026 04:08

@Alan4506 Alan4506 left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @jonathan343! Left some comments. Let me know if you have questions.

Comment thread docs/index.md
Comment thread docs/index.md Outdated
Comment thread docs/index.md Outdated
Comment thread docs/index.md
@jonathan343
jonathan343 requested a review from Alan4506 August 23, 2026 03:56
Comment thread docs/index.md

async with AsyncDynamoDBClient(config=config) as client:
response = await client.list_tables(input=ListTablesInput(limit=10))
for table in response.table_names:

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like the or [] was dropped from the line 98 in the latest commit. Without this, pyright now reports error: Object of type "None" cannot be used as iterable value (reportOptionalIterable), since we have table_names: list[str] | None = None defined in ListTablesOutput.

Do we want to change it back to for table in response.table_names or []:?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants