// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; namespace AWS.Deploy.CLI.ServerMode.Models { /// /// Represents a list or table of options, generally used when selecting from /// a list of existing AWS resources to set an OptionSettingItem /// public class GetConfigSettingResourcesOutput { /// /// Columns that should appear above the list of resources when /// presenting the user a table to select from /// /// /// If this is null or empty, it implies that there is only a single column. /// This may be better suited for a simple dropdown as opposed to a table or modal select. /// public List? Columns { get; set; } /// /// List of resources that the user could select from /// public List? Resources { get; set; } } }