// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
namespace AWS.Deploy.Common.Recipes
{
///
/// Test for a rule
///
public class RuleTest
{
///
/// The type of test to run
///
public string Type { get; set; }
///
/// The conditions for the tests
///
public RuleCondition Condition { get; set; }
public RuleTest(
string type,
RuleCondition condition)
{
Type = type;
Condition = condition;
}
}
}