/** * 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 RestoreObjectResult { public: RestoreObjectResult(); RestoreObjectResult(const Aws::AmazonWebServiceResult& result); RestoreObjectResult& operator=(const Aws::AmazonWebServiceResult& result); 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 RestoreObjectResult& WithRequestCharged(const RequestCharged& value) { SetRequestCharged(value); return *this;} inline RestoreObjectResult& WithRequestCharged(RequestCharged&& value) { SetRequestCharged(std::move(value)); return *this;} /** *

Indicates the path in the provided S3 output location where Select results * will be restored to.

*/ inline const Aws::String& GetRestoreOutputPath() const{ return m_restoreOutputPath; } /** *

Indicates the path in the provided S3 output location where Select results * will be restored to.

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

Indicates the path in the provided S3 output location where Select results * will be restored to.

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

Indicates the path in the provided S3 output location where Select results * will be restored to.

*/ inline void SetRestoreOutputPath(const char* value) { m_restoreOutputPath.assign(value); } /** *

Indicates the path in the provided S3 output location where Select results * will be restored to.

*/ inline RestoreObjectResult& WithRestoreOutputPath(const Aws::String& value) { SetRestoreOutputPath(value); return *this;} /** *

Indicates the path in the provided S3 output location where Select results * will be restored to.

*/ inline RestoreObjectResult& WithRestoreOutputPath(Aws::String&& value) { SetRestoreOutputPath(std::move(value)); return *this;} /** *

Indicates the path in the provided S3 output location where Select results * will be restored to.

*/ inline RestoreObjectResult& WithRestoreOutputPath(const char* value) { SetRestoreOutputPath(value); return *this;} private: RequestCharged m_requestCharged; Aws::String m_restoreOutputPath; }; } // namespace Model } // namespace S3 } // namespace Aws