File: CDK\IConstructResource.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. using Aspire.Hosting.ApplicationModel; namespace Aspire.Hosting.AWS.CDK; /// <summary> /// Resource representing an AWS CDK construct. /// </summary> public interface IConstructResource : IResourceWithParent<IResourceWithConstruct>, IResourceWithConstruct; |