Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/appconfig-provider' of https://github.com/wani-…
Browse files Browse the repository at this point in the history
…guanxi/dotnet-sdk-contrib into feature/appconfig-provider

Rebasing
wani-guanxi committed Jan 21, 2025
2 parents 7ce2bab + ca5b6f2 commit ab70ff4
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -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.
@@ -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)
@@ -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()

0 comments on commit ab70ff4

Please sign in to comment.