namespace Amazon.AwsToolkit.Telemetry.Events.Core
{
public class MetadataValue
{
///
/// Metadata property is not relevant to a metric
///
public const string NotApplicable = "n/a";
///
/// The value for a metric property has not been set
/// (For example, there are no active credentials, so we don't know the Account ID)
///
public const string NotSet = "not-set";
///
/// The value for a metric property could not be obtained due to error
///
public const string Invalid = "invalid";
}
}