Skip to content

Commit 23c8033

Browse files
committed
lint
1 parent 8b0e850 commit 23c8033

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

codegen/aws-sdk-codegen/src/main/kotlin/aws/sdk/kotlin/codegen/AwsServiceConfigIntegration.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ class AwsServiceConfigIntegration : KotlinIntegration {
2727
baseClass = AwsRuntimeTypes.Config.AwsSdkClientConfig
2828
useNestedBuilderBaseClass()
2929
documentation = """
30-
The region to sign with and make requests to.
31-
The AWS region to sign with and make requests to. When specified, this static region configuration
32-
takes precedence over other region resolution methods.
30+
The AWS region (e.g. `us-west-2`) to make requests to. See about AWS
31+
[global infrastructure](https://aws.amazon.com/about-aws/global-infrastructure/regions_az/) for more information.
32+
When specified, this static region configuration takes precedence over other region resolution methods.
3333
3434
The region resolution order is:
3535
1. Static region (if specified)
@@ -73,7 +73,7 @@ class AwsServiceConfigIntegration : KotlinIntegration {
7373
"override val #1L: #2T = builder.#1L ?: #3T()",
7474
prop.propertyName,
7575
prop.symbol,
76-
AwsRuntimeTypes.Config.Region.DefaultRegionProviderChain
76+
AwsRuntimeTypes.Config.Region.DefaultRegionProviderChain,
7777
)
7878
},
7979
)

codegen/aws-sdk-codegen/src/test/kotlin/aws/sdk/kotlin/codegen/AwsServiceConfigIntegrationTest.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ class AwsServiceConfigIntegrationTest {
5353

5454
val expectedImpl = """
5555
/**
56-
* The region to sign with and make requests to.
57-
* The AWS region to sign with and make requests to. When specified, this static region configuration
58-
* takes precedence over other region resolution methods.
56+
* The AWS region (e.g. `us-west-2`) to make requests to. See about AWS
57+
* [global infrastructure](https://aws.amazon.com/about-aws/global-infrastructure/regions_az/) for more information.
58+
* When specified, this static region configuration takes precedence over other region resolution methods.
5959
*
6060
* The region resolution order is:
6161
* 1. Static region (if specified)

0 commit comments

Comments
 (0)