File: CDK\IResourceWithConstructOfT.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 Constructs; namespace Aspire.Hosting.AWS.CDK; /// <inheritdoc cref="IResourceWithConstruct"/> public interface IResourceWithConstruct<out T> : IResourceWithConstruct where T : IConstruct { /// <inheritdoc cref="IResourceWithConstruct.Construct"/> new T Construct { get; } } |