// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
using System.Threading.Tasks;
namespace AWS.Deploy.Common.Recipes.Validation
{
///
/// This interface outlines the framework for recipe validators.
/// Validators such as implement this interface
/// and provide custom validation logic on recipes.
///
public interface IRecipeValidator
{
Task Validate(Recommendation recommendation, IDeployToolValidationContext deployValidationContext);
}
}