// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; namespace AWS.Deploy.CLI.ServerMode.Models { public class GetDeploymentDetailsOutput { /// /// The CloudApplication Name /// public string CloudApplicationName { get; set; } /// /// The list of displayed resources based on the recipe definition /// public List DisplayedResources { get; set; } public GetDeploymentDetailsOutput(string cloudApplicationName, List displayedResources) { CloudApplicationName = cloudApplicationName; DisplayedResources = displayedResources; } } }