// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; using AWS.Deploy.Common.Recipes; namespace AWS.Deploy.Common { /// /// The container for the deployment bundle used by an application. /// public class DeploymentBundleDefinition { /// /// The type of deployment bundle used by the application. /// public DeploymentBundleTypes Type { get; set; } public List Parameters { get; set; } public DeploymentBundleDefinition(DeploymentBundleTypes type, List parameters) { Type = type; Parameters = parameters; } } }