Do you if the package does one API call to AWS per every parameter or just one to get all? #155
-
Parameter store has a limit of 40 requests per second |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
@mwleinad Good afternoon. I'm unsure if I understand your question correctly (perhaps Title needs to be changed and/or description needs to be elaborated about your scenario). Assuming that you have question on how this library loads System Manager parameters, In your code, you would use builder.Configuration.AddSystemsManager($"/dotnet-aws-samples/systems-manager-sample/") to configure this library to load parameters by Path. This would further invoke AmazonSimpleSystemsManagement.GetParametersByPathAsync(). This invokes one service API call to load parameters by path and uses NextToken if the response is paginated. Hope this answers your question. |
Beta Was this translation helpful? Give feedback.
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
@mwleinad Good afternoon. I'm unsure if I understand your question correctly (perhaps Title needs to be changed and/or description needs to be elaborated about your scenario). Assuming that you have question on how this library loads System Manager parameters,
In your code, you would use builder.Configuration.AddSystemsManager($"/dotnet-aws-samples/systems-manager-sample/") to configure this library to load parameters by Path.
Data is loaded by calling SystemsManagerProcessor.GetDataAsync().
This would further invoke AmazonSimpleSystemsManagement.GetParametersByPathAsync(). This invokes one service API call to load parameters by path and uses NextToken if the response is paginated.
Hope t…