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-glue/include/aws/glue/model/BatchDeleteTableResult.h

86 lines
2.4 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/glue/Glue_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/glue/model/TableError.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace Glue
{
namespace Model
{
class AWS_GLUE_API BatchDeleteTableResult
{
public:
BatchDeleteTableResult();
BatchDeleteTableResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
BatchDeleteTableResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>A list of errors encountered in attempting to delete the specified
* tables.</p>
*/
inline const Aws::Vector<TableError>& GetErrors() const{ return m_errors; }
/**
* <p>A list of errors encountered in attempting to delete the specified
* tables.</p>
*/
inline void SetErrors(const Aws::Vector<TableError>& value) { m_errors = value; }
/**
* <p>A list of errors encountered in attempting to delete the specified
* tables.</p>
*/
inline void SetErrors(Aws::Vector<TableError>&& value) { m_errors = std::move(value); }
/**
* <p>A list of errors encountered in attempting to delete the specified
* tables.</p>
*/
inline BatchDeleteTableResult& WithErrors(const Aws::Vector<TableError>& value) { SetErrors(value); return *this;}
/**
* <p>A list of errors encountered in attempting to delete the specified
* tables.</p>
*/
inline BatchDeleteTableResult& WithErrors(Aws::Vector<TableError>&& value) { SetErrors(std::move(value)); return *this;}
/**
* <p>A list of errors encountered in attempting to delete the specified
* tables.</p>
*/
inline BatchDeleteTableResult& AddErrors(const TableError& value) { m_errors.push_back(value); return *this; }
/**
* <p>A list of errors encountered in attempting to delete the specified
* tables.</p>
*/
inline BatchDeleteTableResult& AddErrors(TableError&& value) { m_errors.push_back(std::move(value)); return *this; }
private:
Aws::Vector<TableError> m_errors;
};
} // namespace Model
} // namespace Glue
} // namespace Aws