DynamoDbEncryption/runtimes/net/Generated/DynamoDbEncryptionTransforms/DeleteItemInputTransformOutput.cs (22 lines of code) (raw):
// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
// Do not modify this file. This file is machine generated, and any changes to it will be overwritten.
using System;
using AWS.Cryptography.DbEncryptionSDK.DynamoDb.Transforms;
namespace AWS.Cryptography.DbEncryptionSDK.DynamoDb.Transforms
{
public class DeleteItemInputTransformOutput
{
private Amazon.DynamoDBv2.Model.DeleteItemRequest _transformedInput;
public Amazon.DynamoDBv2.Model.DeleteItemRequest TransformedInput
{
get { return this._transformedInput; }
set { this._transformedInput = value; }
}
public bool IsSetTransformedInput()
{
return this._transformedInput != null;
}
public void Validate()
{
if (!IsSetTransformedInput()) throw new System.ArgumentException("Missing value for required property 'TransformedInput'");
}
}
}