/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include
#include
#include
#include
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace S3
{
namespace Model
{
/**
* Container for the objects to delete.
See Also:
AWS API
* Reference
*/
class Delete
{
public:
AWS_S3_API Delete();
AWS_S3_API Delete(const Aws::Utils::Xml::XmlNode& xmlNode);
AWS_S3_API Delete& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
AWS_S3_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
///@{
/**
* The object to delete.
Directory buckets - For directory
* buckets, an object that's composed entirely of whitespace characters is not
* supported by the DeleteObjects API operation. The request will
* receive a 400 Bad Request error and none of the objects in the
* request will be deleted.
*/
inline const Aws::Vector& GetObjects() const{ return m_objects; }
inline bool ObjectsHasBeenSet() const { return m_objectsHasBeenSet; }
inline void SetObjects(const Aws::Vector& value) { m_objectsHasBeenSet = true; m_objects = value; }
inline void SetObjects(Aws::Vector&& value) { m_objectsHasBeenSet = true; m_objects = std::move(value); }
inline Delete& WithObjects(const Aws::Vector& value) { SetObjects(value); return *this;}
inline Delete& WithObjects(Aws::Vector&& value) { SetObjects(std::move(value)); return *this;}
inline Delete& AddObjects(const ObjectIdentifier& value) { m_objectsHasBeenSet = true; m_objects.push_back(value); return *this; }
inline Delete& AddObjects(ObjectIdentifier&& value) { m_objectsHasBeenSet = true; m_objects.push_back(std::move(value)); return *this; }
///@}
///@{
/**
* Element to enable quiet mode for the request. When you add this element, you
* must set its value to true.
*/
inline bool GetQuiet() const{ return m_quiet; }
inline bool QuietHasBeenSet() const { return m_quietHasBeenSet; }
inline void SetQuiet(bool value) { m_quietHasBeenSet = true; m_quiet = value; }
inline Delete& WithQuiet(bool value) { SetQuiet(value); return *this;}
///@}
private:
Aws::Vector m_objects;
bool m_objectsHasBeenSet = false;
bool m_quiet;
bool m_quietHasBeenSet = false;
};
} // namespace Model
} // namespace S3
} // namespace Aws