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

The list of Multi-Region Access Points associated with the user.

*/ inline const Aws::Vector& GetAccessPoints() const{ return m_accessPoints; } /** *

The list of Multi-Region Access Points associated with the user.

*/ inline void SetAccessPoints(const Aws::Vector& value) { m_accessPoints = value; } /** *

The list of Multi-Region Access Points associated with the user.

*/ inline void SetAccessPoints(Aws::Vector&& value) { m_accessPoints = std::move(value); } /** *

The list of Multi-Region Access Points associated with the user.

*/ inline ListMultiRegionAccessPointsResult& WithAccessPoints(const Aws::Vector& value) { SetAccessPoints(value); return *this;} /** *

The list of Multi-Region Access Points associated with the user.

*/ inline ListMultiRegionAccessPointsResult& WithAccessPoints(Aws::Vector&& value) { SetAccessPoints(std::move(value)); return *this;} /** *

The list of Multi-Region Access Points associated with the user.

*/ inline ListMultiRegionAccessPointsResult& AddAccessPoints(const MultiRegionAccessPointReport& value) { m_accessPoints.push_back(value); return *this; } /** *

The list of Multi-Region Access Points associated with the user.

*/ inline ListMultiRegionAccessPointsResult& AddAccessPoints(MultiRegionAccessPointReport&& value) { m_accessPoints.push_back(std::move(value)); return *this; } /** *

If the specified bucket has more Multi-Region Access Points than can be * returned in one call to this action, this field contains a continuation token. * You can use this token tin subsequent calls to this action to retrieve * additional Multi-Region Access Points.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

If the specified bucket has more Multi-Region Access Points than can be * returned in one call to this action, this field contains a continuation token. * You can use this token tin subsequent calls to this action to retrieve * additional Multi-Region Access Points.

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

If the specified bucket has more Multi-Region Access Points than can be * returned in one call to this action, this field contains a continuation token. * You can use this token tin subsequent calls to this action to retrieve * additional Multi-Region Access Points.

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

If the specified bucket has more Multi-Region Access Points than can be * returned in one call to this action, this field contains a continuation token. * You can use this token tin subsequent calls to this action to retrieve * additional Multi-Region Access Points.

*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *

If the specified bucket has more Multi-Region Access Points than can be * returned in one call to this action, this field contains a continuation token. * You can use this token tin subsequent calls to this action to retrieve * additional Multi-Region Access Points.

*/ inline ListMultiRegionAccessPointsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

If the specified bucket has more Multi-Region Access Points than can be * returned in one call to this action, this field contains a continuation token. * You can use this token tin subsequent calls to this action to retrieve * additional Multi-Region Access Points.

*/ inline ListMultiRegionAccessPointsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

If the specified bucket has more Multi-Region Access Points than can be * returned in one call to this action, this field contains a continuation token. * You can use this token tin subsequent calls to this action to retrieve * additional Multi-Region Access Points.

*/ inline ListMultiRegionAccessPointsResult& WithNextToken(const char* value) { SetNextToken(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 ListMultiRegionAccessPointsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListMultiRegionAccessPointsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListMultiRegionAccessPointsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_accessPoints; Aws::String m_nextToken; Aws::String m_requestId; }; } // namespace Model } // namespace S3Control } // namespace Aws