// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; namespace AWS.Deploy.Orchestration.DisplayedResources { public class DisplayedResourceItem { /// /// The Physical ID that represents a CloudFormation resource /// public string Id { get; set; } /// /// The description of the resource that is defined in the recipe definition /// public string Description { get; set; } /// /// The CloudFormation resource type /// public string Type { get; set; } /// /// The Key Value pair of additional data unique to this resource type /// public Dictionary Data { get; set; } public DisplayedResourceItem(string id, string description, string type, Dictionary data) { Id = id; Description = description; Type = type; Data = data; } } }