You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AddAwsRuntimeConfig.java
+10-8
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@
43
43
* <li>credentialDefaultProvider: Provides credentials if no credentials
44
44
* are explicitly provided.</li>
45
45
* <li>region: The AWS region to which this client will send requests</li>
46
-
* <li>maxAttempts: Provides value for how many times a request will be
46
+
* <li>maxAttempts: Provides value for how many times a request will be
47
47
* made at most in case of retry.</li>
48
48
* </ul>
49
49
*
@@ -53,7 +53,7 @@
53
53
* <li>signingName: Sets this to the signing name derived from the model.</li>
54
54
* <li>credentialDefaultProvider: Uses the default credential provider that
55
55
* checks things like environment variables and the AWS config file.</li>
56
-
* <li>region: Uses the default region provider that checks things like
56
+
* <li>region: Uses the default region provider that checks things like
57
57
* environment variables and the AWS config file.</li>
58
58
* <li>maxAttempts: Uses the default maxAttempts provider that checks things
59
59
* like environment variables and the AWS config file.</li>
Copy file name to clipboardExpand all lines: codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AddS3Config.java
+2-1
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,8 @@ public void addConfigInterfaceFields(TypeScriptSettings settings, Model model, S
44
44
writer.writeDocs("Whether to escape request path when signing the request.")
45
45
.write("signingEscapePath?: boolean;\n");
46
46
writer.writeDocs(
47
-
"Whether to override the request region with the region inferred from requested resource's ARN. Defaults to false.")
47
+
"Whether to override the request region with the region inferred from requested resource's ARN."
Copy file name to clipboardExpand all lines: codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/EndpointGenerator.java
0 commit comments