Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
xinsong-cui committed Jan 13, 2025
1 parent 8b0e850 commit 23c8033
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ class AwsServiceConfigIntegration : KotlinIntegration {
baseClass = AwsRuntimeTypes.Config.AwsSdkClientConfig
useNestedBuilderBaseClass()
documentation = """
The region to sign with and make requests to.
The AWS region to sign with and make requests to. When specified, this static region configuration
takes precedence over other region resolution methods.
The AWS region (e.g. `us-west-2`) to make requests to. See about AWS
[global infrastructure](https://aws.amazon.com/about-aws/global-infrastructure/regions_az/) for more information.
When specified, this static region configuration takes precedence over other region resolution methods.
The region resolution order is:
1. Static region (if specified)
Expand Down Expand Up @@ -73,7 +73,7 @@ class AwsServiceConfigIntegration : KotlinIntegration {
"override val #1L: #2T = builder.#1L ?: #3T()",
prop.propertyName,
prop.symbol,
AwsRuntimeTypes.Config.Region.DefaultRegionProviderChain
AwsRuntimeTypes.Config.Region.DefaultRegionProviderChain,
)
},
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ class AwsServiceConfigIntegrationTest {

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

0 comments on commit 23c8033

Please sign in to comment.