/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace IAM { namespace Model { /** *

Contains the response to a successful ListMFADevices request. *

See Also:

AWS * API Reference

*/ class ListMFADevicesResult { public: AWS_IAM_API ListMFADevicesResult(); AWS_IAM_API ListMFADevicesResult(const Aws::AmazonWebServiceResult& result); AWS_IAM_API ListMFADevicesResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A list of MFA devices.

*/ inline const Aws::Vector& GetMFADevices() const{ return m_mFADevices; } /** *

A list of MFA devices.

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

A list of MFA devices.

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

A list of MFA devices.

*/ inline ListMFADevicesResult& WithMFADevices(const Aws::Vector& value) { SetMFADevices(value); return *this;} /** *

A list of MFA devices.

*/ inline ListMFADevicesResult& WithMFADevices(Aws::Vector&& value) { SetMFADevices(std::move(value)); return *this;} /** *

A list of MFA devices.

*/ inline ListMFADevicesResult& AddMFADevices(const MFADevice& value) { m_mFADevices.push_back(value); return *this; } /** *

A list of MFA devices.

*/ inline ListMFADevicesResult& AddMFADevices(MFADevice&& value) { m_mFADevices.push_back(std::move(value)); return *this; } /** *

A flag that indicates whether there are more items to return. If your results * were truncated, you can make a subsequent pagination request using the * Marker request parameter to retrieve more items. Note that IAM * might return fewer than the MaxItems number of results even when * there are more results available. We recommend that you check * IsTruncated after every call to ensure that you receive all your * results.

*/ inline bool GetIsTruncated() const{ return m_isTruncated; } /** *

A flag that indicates whether there are more items to return. If your results * were truncated, you can make a subsequent pagination request using the * Marker request parameter to retrieve more items. Note that IAM * might return fewer than the MaxItems number of results even when * there are more results available. We recommend that you check * IsTruncated after every call to ensure that you receive all your * results.

*/ inline void SetIsTruncated(bool value) { m_isTruncated = value; } /** *

A flag that indicates whether there are more items to return. If your results * were truncated, you can make a subsequent pagination request using the * Marker request parameter to retrieve more items. Note that IAM * might return fewer than the MaxItems number of results even when * there are more results available. We recommend that you check * IsTruncated after every call to ensure that you receive all your * results.

*/ inline ListMFADevicesResult& WithIsTruncated(bool value) { SetIsTruncated(value); return *this;} /** *

When IsTruncated is true, this element is present * and contains the value to use for the Marker parameter in a * subsequent pagination request.

*/ inline const Aws::String& GetMarker() const{ return m_marker; } /** *

When IsTruncated is true, this element is present * and contains the value to use for the Marker parameter in a * subsequent pagination request.

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

When IsTruncated is true, this element is present * and contains the value to use for the Marker parameter in a * subsequent pagination request.

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

When IsTruncated is true, this element is present * and contains the value to use for the Marker parameter in a * subsequent pagination request.

*/ inline void SetMarker(const char* value) { m_marker.assign(value); } /** *

When IsTruncated is true, this element is present * and contains the value to use for the Marker parameter in a * subsequent pagination request.

*/ inline ListMFADevicesResult& WithMarker(const Aws::String& value) { SetMarker(value); return *this;} /** *

When IsTruncated is true, this element is present * and contains the value to use for the Marker parameter in a * subsequent pagination request.

*/ inline ListMFADevicesResult& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;} /** *

When IsTruncated is true, this element is present * and contains the value to use for the Marker parameter in a * subsequent pagination request.

*/ inline ListMFADevicesResult& WithMarker(const char* value) { SetMarker(value); return *this;} inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; } inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; } inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); } inline ListMFADevicesResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline ListMFADevicesResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::Vector m_mFADevices; bool m_isTruncated; Aws::String m_marker; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace IAM } // namespace Aws