// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r
// SPDX-License-Identifier: Apache-2.0
using AWS.Deploy.Common.Recipes;
namespace AWS.Deploy.Common.TypeHintData
{
///
/// Holds additional data for processing.
///
public class S3BucketNameTypeHintData
{
///
/// Determines whether to allow no value or not.
///
public bool AllowNoValue { get; set; }
public S3BucketNameTypeHintData(bool allowNoValue)
{
AllowNoValue = allowNoValue;
}
}
}