// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Aspire.Hosting.AWS;
internal static class Constants
{
/// <summary>
/// Error state for Aspire resource dashboard
/// </summary>
public const string ResourceStateFailedToStart = "FailedToStart";
/// <summary>
/// In progress state for Aspire resource dashboard
/// </summary>
public const string ResourceStateStarting = "Starting";
/// <summary>
/// Success state for Aspire resource dashboard
/// </summary>
public const string ResourceStateRunning = "Running";
/// <summary>
/// Default Configuration Section
/// </summary>
public const string DefaultConfigSection = "AWS:Resources";
}
|