// 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 { public class DeploymentConfirmationType { public string DefaultMessage { get; set; } public DeploymentConfirmationType( string defaultMessage) { DefaultMessage = defaultMessage; } } }