// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
using System;
using System.IO;
namespace AWS.Deploy.Constants
{
    internal static class CDK
    {
        /// 
        /// Default version of CDK CLI
        /// 
        public static readonly Version DefaultCDKVersion = Version.Parse("2.13.0");
        /// 
        /// The name of the CDK bootstrap CloudFormation stack
        /// 
        public const string CDKBootstrapStackName = "CDKToolkit";
    }
}