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
feat(parameters): add support for custom AWS SDK v3 clients for providers (#1260)
* feat(parameters): add support for custom sdk client for appconfig provider
* feat(parameters): add support for custom sdk client for secrets manager provider
* feat(parameters): add support for custom sdk client for dynamoDB provider
* feat(parameters): add support for custom sdk client for SSM provider
* Options for the AppConfigProvider class constructor.
48
+
*
49
+
* @type AppConfigProviderOptions
50
+
* @property {string} environment - The environment ID or the environment name.
51
+
* @property {string} [application] - The application ID or the application name.
52
+
* @property {AppConfigDataClientConfig} [clientConfig] - Optional configuration to pass during client initialization, e.g. AWS region. Mutually exclusive with awsSdkV3Client.
53
+
* @property {AppConfigDataClient} [awsSdkV3Client] - Optional AWS SDK v3 client to pass during AppConfigProvider class instantiation. Mutually exclusive with clientConfig.
0 commit comments