This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-dynamodb/include/aws/dynamodb/model/DescribeTableResult.h

74 lines
1.8 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>DescribeTable</code>
* operation.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/DescribeTableOutput">AWS
* API Reference</a></p>
*/
class AWS_DYNAMODB_API DescribeTableResult
{
public:
DescribeTableResult();
DescribeTableResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
DescribeTableResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The properties of the table.</p>
*/
inline const TableDescription& GetTable() const{ return m_table; }
/**
* <p>The properties of the table.</p>
*/
inline void SetTable(const TableDescription& value) { m_table = value; }
/**
* <p>The properties of the table.</p>
*/
inline void SetTable(TableDescription&& value) { m_table = std::move(value); }
/**
* <p>The properties of the table.</p>
*/
inline DescribeTableResult& WithTable(const TableDescription& value) { SetTable(value); return *this;}
/**
* <p>The properties of the table.</p>
*/
inline DescribeTableResult& WithTable(TableDescription&& value) { SetTable(std::move(value)); return *this;}
private:
TableDescription m_table;
};
} // namespace Model
} // namespace DynamoDB
} // namespace Aws