File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
codegen/aws-sdk-codegen/src
main/kotlin/aws/sdk/kotlin/codegen
test/kotlin/aws/sdk/kotlin/codegen Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments