- Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathConstants.cs
50 lines (39 loc) · 1.7 KB
/
Constants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
namespaceAspire.Hosting.AWS;
internalstaticclassConstants
{
/// <summary>
/// Error state for Aspire resource dashboard
/// </summary>
publicconststringResourceStateFailedToStart="FailedToStart";
/// <summary>
/// In progress state for Aspire resource dashboard
/// </summary>
publicconststringResourceStateStarting="Starting";
/// <summary>
/// Success state for Aspire resource dashboard
/// </summary>
publicconststringResourceStateRunning="Running";
/// <summary>
/// Default Configuration Section
/// </summary>
publicconststringDefaultConfigSection="AWS:Resources";
internalconststringIsAspireHostedEnvVariable="ASPIRE_HOSTED";
internalconststringLambdaPreviewMessage="Local Lambda development feature is still in active development. Check out the following GitHub issue for status: https://github.com/aws/integrations-on-dotnet-aspire-for-aws/issues/17";
/// <summary>
/// The launch settings profile name prefix
/// </summary>
internalconststringLaunchSettingsNodePrefix="Aspire_";
/// <summary>
/// The launch settings file name
/// </summary>
internalconststringLaunchSettingsFile="launchSettings.json";
/// <summary>
/// The version of RuntimeSupport used in the executable wrapper project
/// </summary>
internalconststringRuntimeSupportPackageVersion="1.13.0";
/// <summary>
/// The default version of Amazon.Lambda.TestTool that will be automatically installed
/// </summary>
internalconststringDefaultLambdaTestToolVersion="0.10.1";
}