// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
using System.Collections.Generic;
namespace AWS.Deploy.Common.TypeHintData
{
///
/// Represents a list or table of existing AWS resources to allow selecting from
/// a list of existing resources when setting an OptionSettingItem
///
public class TypeHintResourceTable
{
///
/// Columns that should appear above the list of resources when presenting the
/// user a table or grid to select from
///
/// If this is null or empty, it implies that there is only a single column
public List? Columns { get; set; }
///
/// List of AWS resources that the user could select from
///
public List Rows { get; set; } = new List();
}
}