74 lines
2.0 KiB
C++
74 lines
2.0 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/dynamodb/DynamoDB_EXPORTS.h>
|
|
#include <aws/dynamodb/model/TableDescription.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace DynamoDB
|
|
{
|
|
namespace Model
|
|
{
|
|
/**
|
|
* <p>Represents the output of a <code>DeleteTable</code> operation.</p><p><h3>See
|
|
* Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/DeleteTableOutput">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_DYNAMODB_API DeleteTableResult
|
|
{
|
|
public:
|
|
DeleteTableResult();
|
|
DeleteTableResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
DeleteTableResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>Represents the properties of a table.</p>
|
|
*/
|
|
inline const TableDescription& GetTableDescription() const{ return m_tableDescription; }
|
|
|
|
/**
|
|
* <p>Represents the properties of a table.</p>
|
|
*/
|
|
inline void SetTableDescription(const TableDescription& value) { m_tableDescription = value; }
|
|
|
|
/**
|
|
* <p>Represents the properties of a table.</p>
|
|
*/
|
|
inline void SetTableDescription(TableDescription&& value) { m_tableDescription = std::move(value); }
|
|
|
|
/**
|
|
* <p>Represents the properties of a table.</p>
|
|
*/
|
|
inline DeleteTableResult& WithTableDescription(const TableDescription& value) { SetTableDescription(value); return *this;}
|
|
|
|
/**
|
|
* <p>Represents the properties of a table.</p>
|
|
*/
|
|
inline DeleteTableResult& WithTableDescription(TableDescription&& value) { SetTableDescription(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
TableDescription m_tableDescription;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace DynamoDB
|
|
} // namespace Aws
|