File: CDK\ConstructOutputDelegate.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; /// <summary> /// Delegate for resolving outputs of a construct. /// </summary> /// <typeparam name="T">Construct type</typeparam> public delegate string ConstructOutputDelegate<in T>(T construct) where T : IConstruct; |