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: src/OpenFeature.Contrib.Providers.AwsAppConfig/README.md
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,12 +47,16 @@ This package maintains the aforementioned structure by supplying values in two d
47
47
48
48
**Stage 1: Setup**
49
49
50
-
During this stage, the Application and Environment are provided at the initiation of the project. It is expected that these two values remain constant throughout the application's lifetime. If a change is necessary, a restart of the application will be required.
50
+
During this stage, the Application and Environment are provided at the initiation of the project. It is expected that these two values remain static during the application's lifetime. If a change is necessary, a restart of the application will be required.
51
+
52
+
Additionally, at this point Required Minimum Polling Interval in seconds can also be configured by supplying integer value of seconds you would like to set. Default is 15 seconds and maximum allowed by AWS id 86400 seconds.
51
53
52
54
**Stage 2: Fetching Value**
53
55
54
56
In this stage, to retrieve the AWS AppConfig feature flag, the key should be supplied in the format `configurationProfileId:flagKey[:attributeKey]`. If the AttributeKey is not included, all attributes will be returned as a structured object.
55
57
58
+
## Important information about the implementation
59
+
As per AWS AppConfig documentation, the recommended way to access AWS AppConfig is by using
56
60
57
61
## Usage
58
62
@@ -89,11 +93,12 @@ namespace OpenFeatureTestApp
89
93
90
94
// Replace these values with your AWS AppConfig settings
91
95
conststringapplication="YourApplication";
92
-
conststringenvironment="YourEnvironment";
96
+
conststringenvironment="YourEnvironment";
97
+
constintpollingIntervalSeconds=60; // default is 15
0 commit comments