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

The request token associated with the request. You can use this token with DescribeMultiRegionAccessPointOperation * to determine the status of asynchronous requests.

*/ inline const Aws::String& GetRequestTokenARN() const{ return m_requestTokenARN; } /** *

The request token associated with the request. You can use this token with DescribeMultiRegionAccessPointOperation * to determine the status of asynchronous requests.

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

The request token associated with the request. You can use this token with DescribeMultiRegionAccessPointOperation * to determine the status of asynchronous requests.

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

The request token associated with the request. You can use this token with DescribeMultiRegionAccessPointOperation * to determine the status of asynchronous requests.

*/ inline void SetRequestTokenARN(const char* value) { m_requestTokenARN.assign(value); } /** *

The request token associated with the request. You can use this token with DescribeMultiRegionAccessPointOperation * to determine the status of asynchronous requests.

*/ inline DeleteMultiRegionAccessPointResult& WithRequestTokenARN(const Aws::String& value) { SetRequestTokenARN(value); return *this;} /** *

The request token associated with the request. You can use this token with DescribeMultiRegionAccessPointOperation * to determine the status of asynchronous requests.

*/ inline DeleteMultiRegionAccessPointResult& WithRequestTokenARN(Aws::String&& value) { SetRequestTokenARN(std::move(value)); return *this;} /** *

The request token associated with the request. You can use this token with DescribeMultiRegionAccessPointOperation * to determine the status of asynchronous requests.

*/ inline DeleteMultiRegionAccessPointResult& WithRequestTokenARN(const char* value) { SetRequestTokenARN(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DeleteMultiRegionAccessPointResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeleteMultiRegionAccessPointResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeleteMultiRegionAccessPointResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_requestTokenARN; Aws::String m_requestId; }; } // namespace Model } // namespace S3Control } // namespace Aws