// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r
// SPDX-License-Identifier: Apache-2.0
using System.Collections.Generic;
using AWS.Deploy.Common.Recipes;
namespace AWS.Deploy.CLI.TypeHintResponses
{
///
/// type hint response
///
public class ElasticBeanstalkVpcTypeHintResponse : IDisplayable
{
public bool UseVPC { get; set; }
public bool CreateNew { get; set; }
public string? VpcId { get; set; }
public SortedSet Subnets { get; set; } = new SortedSet();
public SortedSet SecurityGroups { get; set; } = new SortedSet();
public string? ToDisplayString() => null;
}
}