public static bool IsAliasedType()

in telemetry/csharp/AwsToolkit.Telemetry.Events.Generator.Core/Utils/MetricTypeExtensionMethods.cs [19:27]


        public static bool IsAliasedType(this MetricType type)
        {
            if (type.allowedValues?.Length > 0)
            {
                return false;
            }

            return AliasedTypes.ContainsKey(type.type);
        }