File: Provisioning\CloudFormationStackExecutionContext.cs
Web Access
Project: src\src\Aspire.Hosting.AWS\Aspire.Hosting.AWS.csproj (Aspire.Hosting.AWS)
// 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.Provisioning;
 
internal sealed class CloudFormationStackExecutionContext(
    string stackName,
    string template)
{
    public string Template { get; } = template;
 
    public string StackName { get; } = stackName;
 
    public IDictionary<string, string> CloudFormationParameters { get; set; } = new Dictionary<string, string>();
 
    public string? RoleArn { get; set; }
 
    public int StackPollingInterval { get; set; } = 3;
 
    public bool DisableDiffCheck { get; set; }
 
    public IList<string> DisabledCapabilities { get; set; } = [];
}