// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
using System;
using System.Collections.Generic;
using System.Text;
namespace AWS.Deploy.Common.Recipes
{
///
/// This enum is used to specify the type of option settings that are retrieved when invoking
///
public enum OptionSettingsType
{
///
/// Theses option settings are part of the individual recipe files.
///
Recipe,
///
/// These option settings are part of the deployment bundle definitions.
///
DeploymentBundle,
///
/// Comprises of all types of option settings
///
All
}
}