/** * 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 ListInstanceProfiles request. *

See Also:

AWS * API Reference

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

A list of instance profiles.

*/ inline const Aws::Vector& GetInstanceProfiles() const{ return m_instanceProfiles; } /** *

A list of instance profiles.

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

A list of instance profiles.

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

A list of instance profiles.

*/ inline ListInstanceProfilesResult& WithInstanceProfiles(const Aws::Vector& value) { SetInstanceProfiles(value); return *this;} /** *

A list of instance profiles.

*/ inline ListInstanceProfilesResult& WithInstanceProfiles(Aws::Vector&& value) { SetInstanceProfiles(std::move(value)); return *this;} /** *

A list of instance profiles.

*/ inline ListInstanceProfilesResult& AddInstanceProfiles(const InstanceProfile& value) { m_instanceProfiles.push_back(value); return *this; } /** *

A list of instance profiles.

*/ inline ListInstanceProfilesResult& AddInstanceProfiles(InstanceProfile&& value) { m_instanceProfiles.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 ListInstanceProfilesResult& 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 ListInstanceProfilesResult& 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 ListInstanceProfilesResult& 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 ListInstanceProfilesResult& 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 ListInstanceProfilesResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline ListInstanceProfilesResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::Vector m_instanceProfiles; bool m_isTruncated; Aws::String m_marker; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace IAM } // namespace Aws