/** * 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 { class ListPoliciesGrantingServiceAccessResult { public: AWS_IAM_API ListPoliciesGrantingServiceAccessResult(); AWS_IAM_API ListPoliciesGrantingServiceAccessResult(const Aws::AmazonWebServiceResult& result); AWS_IAM_API ListPoliciesGrantingServiceAccessResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

ListPoliciesGrantingServiceAccess object that contains details * about the permissions policies attached to the specified identity (user, group, * or role).

*/ inline const Aws::Vector& GetPoliciesGrantingServiceAccess() const{ return m_policiesGrantingServiceAccess; } /** *

ListPoliciesGrantingServiceAccess object that contains details * about the permissions policies attached to the specified identity (user, group, * or role).

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

ListPoliciesGrantingServiceAccess object that contains details * about the permissions policies attached to the specified identity (user, group, * or role).

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

ListPoliciesGrantingServiceAccess object that contains details * about the permissions policies attached to the specified identity (user, group, * or role).

*/ inline ListPoliciesGrantingServiceAccessResult& WithPoliciesGrantingServiceAccess(const Aws::Vector& value) { SetPoliciesGrantingServiceAccess(value); return *this;} /** *

ListPoliciesGrantingServiceAccess object that contains details * about the permissions policies attached to the specified identity (user, group, * or role).

*/ inline ListPoliciesGrantingServiceAccessResult& WithPoliciesGrantingServiceAccess(Aws::Vector&& value) { SetPoliciesGrantingServiceAccess(std::move(value)); return *this;} /** *

ListPoliciesGrantingServiceAccess object that contains details * about the permissions policies attached to the specified identity (user, group, * or role).

*/ inline ListPoliciesGrantingServiceAccessResult& AddPoliciesGrantingServiceAccess(const ListPoliciesGrantingServiceAccessEntry& value) { m_policiesGrantingServiceAccess.push_back(value); return *this; } /** *

ListPoliciesGrantingServiceAccess object that contains details * about the permissions policies attached to the specified identity (user, group, * or role).

*/ inline ListPoliciesGrantingServiceAccessResult& AddPoliciesGrantingServiceAccess(ListPoliciesGrantingServiceAccessEntry&& value) { m_policiesGrantingServiceAccess.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. 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. 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. We recommend that * you check IsTruncated after every call to ensure that you receive * all your results.

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