Skip to content

Commit

Permalink
add link for retryModes input enum (#962)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuhe authored Sep 26, 2023
1 parent 4528c37 commit 0c9ee9f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .changeset/pink-kings-call.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,10 @@ public void addConfigInterfaceFields(

writer.writeDocs("Value for how many times a request will be made at most in case of retry.")
.write("maxAttempts?: number | __Provider<number>;\n");
writer.writeDocs("Specifies which retry algorithm to use.")
writer.writeDocs("""
Specifies which retry algorithm to use.
@see https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-util-retry/Enum/RETRY_MODES/
""")
.write("retryMode?: string | __Provider<string>;\n");
writer.writeDocs("Optional logger for logging debug/info/warn/error.")
.write("logger?: __Logger;\n");
Expand Down

0 comments on commit 0c9ee9f

Please sign in to comment.