// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using AWS.Deploy.CLI.ServerMode.Controllers; namespace AWS.Deploy.CLI.ServerMode.Models { /// /// The response that will be returned by the operation. /// public class GenerateCloudFormationTemplateOutput { /// /// The CloudFormation template of the generated CDK deployment project. /// public string CloudFormationTemplate { get; set; } public GenerateCloudFormationTemplateOutput(string cloudFormationTemplate) { CloudFormationTemplate = cloudFormationTemplate; } } }