/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace S3 { namespace Model { class AWS_S3_API DeleteObjectResult { public: DeleteObjectResult(); DeleteObjectResult(const Aws::AmazonWebServiceResult& result); DeleteObjectResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Specifies whether the versioned object that was permanently deleted was * (true) or was not (false) a delete marker.

*/ inline bool GetDeleteMarker() const{ return m_deleteMarker; } /** *

Specifies whether the versioned object that was permanently deleted was * (true) or was not (false) a delete marker.

*/ inline void SetDeleteMarker(bool value) { m_deleteMarker = value; } /** *

Specifies whether the versioned object that was permanently deleted was * (true) or was not (false) a delete marker.

*/ inline DeleteObjectResult& WithDeleteMarker(bool value) { SetDeleteMarker(value); return *this;} /** *

Returns the version ID of the delete marker created as a result of the DELETE * operation.

*/ inline const Aws::String& GetVersionId() const{ return m_versionId; } /** *

Returns the version ID of the delete marker created as a result of the DELETE * operation.

*/ inline void SetVersionId(const Aws::String& value) { m_versionId = value; } /** *

Returns the version ID of the delete marker created as a result of the DELETE * operation.

*/ inline void SetVersionId(Aws::String&& value) { m_versionId = std::move(value); } /** *

Returns the version ID of the delete marker created as a result of the DELETE * operation.

*/ inline void SetVersionId(const char* value) { m_versionId.assign(value); } /** *

Returns the version ID of the delete marker created as a result of the DELETE * operation.

*/ inline DeleteObjectResult& WithVersionId(const Aws::String& value) { SetVersionId(value); return *this;} /** *

Returns the version ID of the delete marker created as a result of the DELETE * operation.

*/ inline DeleteObjectResult& WithVersionId(Aws::String&& value) { SetVersionId(std::move(value)); return *this;} /** *

Returns the version ID of the delete marker created as a result of the DELETE * operation.

*/ inline DeleteObjectResult& WithVersionId(const char* value) { SetVersionId(value); return *this;} inline const RequestCharged& GetRequestCharged() const{ return m_requestCharged; } inline void SetRequestCharged(const RequestCharged& value) { m_requestCharged = value; } inline void SetRequestCharged(RequestCharged&& value) { m_requestCharged = std::move(value); } inline DeleteObjectResult& WithRequestCharged(const RequestCharged& value) { SetRequestCharged(value); return *this;} inline DeleteObjectResult& WithRequestCharged(RequestCharged&& value) { SetRequestCharged(std::move(value)); return *this;} private: bool m_deleteMarker; Aws::String m_versionId; RequestCharged m_requestCharged; }; } // namespace Model } // namespace S3 } // namespace Aws