From 253c92d31c71007a52b42f69c9bebef287e064ec Mon Sep 17 00:00:00 2001
From: "Ash.Wani" <149169001+wani-guanxi@users.noreply.github.com>
Date: Sat, 18 Jan 2025 11:47:51 -0500
Subject: [PATCH] Update FeatureFlagProfile.cs - updated comments
Missed updating comments over the course of changes. Fixing that.
Signed-off-by: Ash.Wani <149169001+wani-guanxi@users.noreply.github.com>
---
.../FeatureFlagProfile.cs | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/OpenFeature.Contrib.Providers.AwsAppConfig/FeatureFlagProfile.cs b/src/OpenFeature.Contrib.Providers.AwsAppConfig/FeatureFlagProfile.cs
index 43f9018a..c66277f7 100644
--- a/src/OpenFeature.Contrib.Providers.AwsAppConfig/FeatureFlagProfile.cs
+++ b/src/OpenFeature.Contrib.Providers.AwsAppConfig/FeatureFlagProfile.cs
@@ -18,6 +18,12 @@ public class FeatureFlagProfile
/// This represents the deployment environment (e.g., development, production) in AWS AppConfig.
///
public string EnvironmentIdentifier { get; set; }
+
+ ///
+ /// Gets or sets the AWS AppConfig configuration profile identifier.
+ /// This identifies the specific configuration profile containing the feature flags.
+ ///
+ public string ConfigurationProfileIdentifier { get; set; }
///
/// Gets or sets the minimum polling interval in seconds for AWS AppConfig.
@@ -31,12 +37,6 @@ public class FeatureFlagProfile
///
public int RequiredMinimumPollIntervalInSeconds {get; set;} = 15;
- ///
- /// Gets or sets the AWS AppConfig configuration profile identifier.
- /// This identifies the specific configuration profile containing the feature flags.
- ///
- public string ConfigurationProfileIdentifier { get; set; }
-
///
/// Gets a value indicating whether the profile is valid.
/// A profile is considered valid when all identifiers (Application, Environment, and Configuration Profile)
@@ -48,7 +48,7 @@ public class FeatureFlagProfile
///
/// Returns a string representation of the feature flag profile.
- /// The format is "ApplicationIdentifier+EnvironmentIdentifier+ConfigurationProfileIdentifier".
+ /// The format is "ApplicationIdentifier_EnvironmentIdentifier_ConfigurationProfileIdentifier".
///
/// A string containing all three identifiers concatenated with '+' characters.
public override string ToString()