// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
namespace AWS.Deploy.Common.Recipes
{
    public class DisplayedResource
    {
        /// 
        /// The CloudFormation ID that represents a resource.
        /// 
        public string LogicalId { get; set; }
        /// 
        /// The Description gives context to the metadata of the CloudFormation resource.
        /// 
        public string Description { get; set; }
        public DisplayedResource(string logicalId, string description)
        {
            LogicalId = logicalId;
            Description = description;
        }
    }
}