// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
namespace AWS.Deploy.Common.Recipes
{
///
/// The effect to apply for the test run.
///
public class RuleEffect
{
///
/// The effects to run if all the test pass.
///
public EffectOptions? Pass { get; set; }
///
/// The effects to run if all the test fail.
///
public EffectOptions? Fail { get; set; }
}
}