// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
namespace AWS.Deploy.Common.Recipes
{
///
/// The type of effects to apply.
///
public class EffectOptions
{
///
/// When the recipe should be included or not.
///
public bool? Include { get; set; }
///
/// Adjust the priority or the recipe.
///
public int? PriorityAdjustment { get; set; }
}
}