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: powertools-parameters/src/main/java/software/amazon/lambda/powertools/parameters/ParamManager.java
+7-2
Original file line number
Diff line number
Diff line change
@@ -37,14 +37,19 @@ public final class ParamManager {
37
37
38
38
/**
39
39
* Get a concrete implementation of {@link BaseProvider}.<br/>
40
-
* You can specify {@link SecretsProvider}, {@link SSMProvider}, {@link DynamoDbProvider}, or create your
40
+
* You can specify {@link SecretsProvider}, {@link SSMProvider} or create your
41
41
* custom provider by extending {@link BaseProvider} if you need to integrate with a different parameter store.
42
+
* @deprecated You should not use this method directly but a typed one (getSecretsProvider, getSsmProvider, getDynamoDbProvider, getAppConfigProvider), will be removed in v2
42
43
* @return a {@link SecretsProvider}
43
44
*/
45
+
// TODO in v2: remove public access to this and review how we get providers (it was not designed for DDB and AppConfig in mind initially)
0 commit comments