Skip to content

Commit

Permalink
Update FeatureFlagProfile.cs - updated comments
Browse files Browse the repository at this point in the history
Missed updating comments over the course of changes. Fixing that.

Signed-off-by: Ash.Wani <149169001+wani-guanxi@users.noreply.github.com>
  • Loading branch information
wani-guanxi committed Jan 21, 2025
1 parent 40921b7 commit 253c92d
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ public class FeatureFlagProfile
/// This represents the deployment environment (e.g., development, production) in AWS AppConfig.
/// </summary>
public string EnvironmentIdentifier { get; set; }

/// <summary>
/// Gets or sets the AWS AppConfig configuration profile identifier.
/// This identifies the specific configuration profile containing the feature flags.
/// </summary>
public string ConfigurationProfileIdentifier { get; set; }

/// <summary>
/// Gets or sets the minimum polling interval in seconds for AWS AppConfig.
Expand All @@ -31,12 +37,6 @@ public class FeatureFlagProfile
/// </remarks>
public int RequiredMinimumPollIntervalInSeconds {get; set;} = 15;

/// <summary>
/// Gets or sets the AWS AppConfig configuration profile identifier.
/// This identifies the specific configuration profile containing the feature flags.
/// </summary>
public string ConfigurationProfileIdentifier { get; set; }

/// <summary>
/// Gets a value indicating whether the profile is valid.
/// A profile is considered valid when all identifiers (Application, Environment, and Configuration Profile)
Expand All @@ -48,7 +48,7 @@ public class FeatureFlagProfile

/// <summary>
/// Returns a string representation of the feature flag profile.
/// The format is "ApplicationIdentifier+EnvironmentIdentifier+ConfigurationProfileIdentifier".
/// The format is "ApplicationIdentifier_EnvironmentIdentifier_ConfigurationProfileIdentifier".
/// </summary>
/// <returns>A string containing all three identifiers concatenated with '+' characters.</returns>
public override string ToString()
Expand Down

0 comments on commit 253c92d

Please sign in to comment.