Skip to content

Commit 55abc2f

Browse files
authored
Merge pull request #9291 from marcinczeczko/amazon-service-doc-fixes
Amazon services: remove dynamodb mentions from common config beans
2 parents 0a6e09e + d4b9769 commit 55abc2f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

extensions/amazon-services/common/runtime/src/main/java/io/quarkus/amazon/common/runtime/AwsConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ public class AwsConfig {
1111

1212
// @formatter:off
1313
/**
14-
* An Amazon Web Services region that hosts DynamoDB.
14+
* An Amazon Web Services region that hosts the given service.
1515
*
1616
* It overrides region provider chain with static value of
17-
* region with which the DynamoDB client should communicate.
17+
* region with which the service client should communicate.
1818
*
1919
* If not set, region is retrieved via the default providers chain in the following order:
2020
*

extensions/amazon-services/common/runtime/src/main/java/io/quarkus/amazon/common/runtime/NettyHttpClientConfig.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,16 +67,16 @@ public class NettyHttpClientConfig {
6767
/**
6868
* The maximum amount of time that a connection should be allowed to remain open while idle.
6969
* <p>
70-
* Currently has no effect if `quarkus.dynamodb.async-client.use-idle-connection-reaper` is false.
70+
* Currently has no effect if `quarkus.<amazon-service>.async-client.use-idle-connection-reaper` is false.
7171
*/
7272
@ConfigItem(defaultValue = "60S")
7373
public Duration connectionMaxIdleTime;
7474

7575
/**
7676
* Whether the idle connections in the connection pool should be closed.
7777
* <p>
78-
* When enabled, connections left idling for longer than `quarkus.dynamodb.async-client.connection-max-idle-time` will be
79-
* closed. This will not close connections currently in use.
78+
* When enabled, connections left idling for longer than `quarkus.<amazon-service>.async-client.connection-max-idle-time`
79+
* will be closed. This will not close connections currently in use.
8080
*/
8181
@ConfigItem(defaultValue = "true")
8282
public boolean useIdleConnectionReaper;

extensions/amazon-services/common/runtime/src/main/java/io/quarkus/amazon/common/runtime/SdkConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class SdkConfig {
1515
/**
1616
* The endpoint URI with which the SDK should communicate.
1717
* <p>
18-
* If not specified, an appropriate endpoint to be used for DynamoDB service and region.
18+
* If not specified, an appropriate endpoint to be used for the given service and region.
1919
*/
2020
@ConfigItem
2121
public Optional<URI> endpointOverride;

extensions/amazon-services/common/runtime/src/main/java/io/quarkus/amazon/common/runtime/SyncHttpClientConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ public static class ApacheHttpClientConfig {
6868
/**
6969
* Whether the idle connections in the connection pool should be closed asynchronously.
7070
* <p>
71-
* When enabled, connections left idling for longer than `quarkus.dynamodb.sync-client.connection-max-idle-time` will be
72-
* closed.
71+
* When enabled, connections left idling for longer than `quarkus.<amazon-service>.sync-client.connection-max-idle-time`
72+
* will be closed.
7373
* This will not close connections currently in use.
7474
*/
7575
@ConfigItem(defaultValue = "true")

0 commit comments

Comments
 (0)