// 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 DynamoDBTableTypeHintData { /// /// Determines whether to allow no value or not. /// public bool AllowNoValue { get; set; } public DynamoDBTableTypeHintData(bool allowNoValue) { AllowNoValue = allowNoValue; } } }