/** * 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 { namespace IAM { namespace Model { /** */ class ListPoliciesGrantingServiceAccessRequest : public IAMRequest { public: AWS_IAM_API ListPoliciesGrantingServiceAccessRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "ListPoliciesGrantingServiceAccess"; } AWS_IAM_API Aws::String SerializePayload() const override; protected: AWS_IAM_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

Use this parameter only when paginating results and only after you receive a * response indicating that the results are truncated. Set it to the value of the * Marker element in the response that you received to indicate where * the next call should start.

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

Use this parameter only when paginating results and only after you receive a * response indicating that the results are truncated. Set it to the value of the * Marker element in the response that you received to indicate where * the next call should start.

*/ inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; } /** *

Use this parameter only when paginating results and only after you receive a * response indicating that the results are truncated. Set it to the value of the * Marker element in the response that you received to indicate where * the next call should start.

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

Use this parameter only when paginating results and only after you receive a * response indicating that the results are truncated. Set it to the value of the * Marker element in the response that you received to indicate where * the next call should start.

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

Use this parameter only when paginating results and only after you receive a * response indicating that the results are truncated. Set it to the value of the * Marker element in the response that you received to indicate where * the next call should start.

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

Use this parameter only when paginating results and only after you receive a * response indicating that the results are truncated. Set it to the value of the * Marker element in the response that you received to indicate where * the next call should start.

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

Use this parameter only when paginating results and only after you receive a * response indicating that the results are truncated. Set it to the value of the * Marker element in the response that you received to indicate where * the next call should start.

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

Use this parameter only when paginating results and only after you receive a * response indicating that the results are truncated. Set it to the value of the * Marker element in the response that you received to indicate where * the next call should start.

*/ inline ListPoliciesGrantingServiceAccessRequest& WithMarker(const char* value) { SetMarker(value); return *this;} /** *

The ARN of the IAM identity (user, group, or role) whose policies you want to * list.

*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *

The ARN of the IAM identity (user, group, or role) whose policies you want to * list.

*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *

The ARN of the IAM identity (user, group, or role) whose policies you want to * list.

*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *

The ARN of the IAM identity (user, group, or role) whose policies you want to * list.

*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *

The ARN of the IAM identity (user, group, or role) whose policies you want to * list.

*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *

The ARN of the IAM identity (user, group, or role) whose policies you want to * list.

*/ inline ListPoliciesGrantingServiceAccessRequest& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *

The ARN of the IAM identity (user, group, or role) whose policies you want to * list.

*/ inline ListPoliciesGrantingServiceAccessRequest& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *

The ARN of the IAM identity (user, group, or role) whose policies you want to * list.

*/ inline ListPoliciesGrantingServiceAccessRequest& WithArn(const char* value) { SetArn(value); return *this;} /** *

The service namespace for the Amazon Web Services services whose policies you * want to list.

To learn the service namespace for a service, see Actions, * resources, and condition keys for Amazon Web Services services in the IAM * User Guide. Choose the name of the service to view details for that service. * In the first paragraph, find the service prefix. For example, (service * prefix: a4b). For more information about service namespaces, see Amazon * Web Services service namespaces in the Amazon Web Services General * Reference.

*/ inline const Aws::Vector& GetServiceNamespaces() const{ return m_serviceNamespaces; } /** *

The service namespace for the Amazon Web Services services whose policies you * want to list.

To learn the service namespace for a service, see Actions, * resources, and condition keys for Amazon Web Services services in the IAM * User Guide. Choose the name of the service to view details for that service. * In the first paragraph, find the service prefix. For example, (service * prefix: a4b). For more information about service namespaces, see Amazon * Web Services service namespaces in the Amazon Web Services General * Reference.

*/ inline bool ServiceNamespacesHasBeenSet() const { return m_serviceNamespacesHasBeenSet; } /** *

The service namespace for the Amazon Web Services services whose policies you * want to list.

To learn the service namespace for a service, see Actions, * resources, and condition keys for Amazon Web Services services in the IAM * User Guide. Choose the name of the service to view details for that service. * In the first paragraph, find the service prefix. For example, (service * prefix: a4b). For more information about service namespaces, see Amazon * Web Services service namespaces in the Amazon Web Services General * Reference.

*/ inline void SetServiceNamespaces(const Aws::Vector& value) { m_serviceNamespacesHasBeenSet = true; m_serviceNamespaces = value; } /** *

The service namespace for the Amazon Web Services services whose policies you * want to list.

To learn the service namespace for a service, see Actions, * resources, and condition keys for Amazon Web Services services in the IAM * User Guide. Choose the name of the service to view details for that service. * In the first paragraph, find the service prefix. For example, (service * prefix: a4b). For more information about service namespaces, see Amazon * Web Services service namespaces in the Amazon Web Services General * Reference.

*/ inline void SetServiceNamespaces(Aws::Vector&& value) { m_serviceNamespacesHasBeenSet = true; m_serviceNamespaces = std::move(value); } /** *

The service namespace for the Amazon Web Services services whose policies you * want to list.

To learn the service namespace for a service, see Actions, * resources, and condition keys for Amazon Web Services services in the IAM * User Guide. Choose the name of the service to view details for that service. * In the first paragraph, find the service prefix. For example, (service * prefix: a4b). For more information about service namespaces, see Amazon * Web Services service namespaces in the Amazon Web Services General * Reference.

*/ inline ListPoliciesGrantingServiceAccessRequest& WithServiceNamespaces(const Aws::Vector& value) { SetServiceNamespaces(value); return *this;} /** *

The service namespace for the Amazon Web Services services whose policies you * want to list.

To learn the service namespace for a service, see Actions, * resources, and condition keys for Amazon Web Services services in the IAM * User Guide. Choose the name of the service to view details for that service. * In the first paragraph, find the service prefix. For example, (service * prefix: a4b). For more information about service namespaces, see Amazon * Web Services service namespaces in the Amazon Web Services General * Reference.

*/ inline ListPoliciesGrantingServiceAccessRequest& WithServiceNamespaces(Aws::Vector&& value) { SetServiceNamespaces(std::move(value)); return *this;} /** *

The service namespace for the Amazon Web Services services whose policies you * want to list.

To learn the service namespace for a service, see Actions, * resources, and condition keys for Amazon Web Services services in the IAM * User Guide. Choose the name of the service to view details for that service. * In the first paragraph, find the service prefix. For example, (service * prefix: a4b). For more information about service namespaces, see Amazon * Web Services service namespaces in the Amazon Web Services General * Reference.

*/ inline ListPoliciesGrantingServiceAccessRequest& AddServiceNamespaces(const Aws::String& value) { m_serviceNamespacesHasBeenSet = true; m_serviceNamespaces.push_back(value); return *this; } /** *

The service namespace for the Amazon Web Services services whose policies you * want to list.

To learn the service namespace for a service, see Actions, * resources, and condition keys for Amazon Web Services services in the IAM * User Guide. Choose the name of the service to view details for that service. * In the first paragraph, find the service prefix. For example, (service * prefix: a4b). For more information about service namespaces, see Amazon * Web Services service namespaces in the Amazon Web Services General * Reference.

*/ inline ListPoliciesGrantingServiceAccessRequest& AddServiceNamespaces(Aws::String&& value) { m_serviceNamespacesHasBeenSet = true; m_serviceNamespaces.push_back(std::move(value)); return *this; } /** *

The service namespace for the Amazon Web Services services whose policies you * want to list.

To learn the service namespace for a service, see Actions, * resources, and condition keys for Amazon Web Services services in the IAM * User Guide. Choose the name of the service to view details for that service. * In the first paragraph, find the service prefix. For example, (service * prefix: a4b). For more information about service namespaces, see Amazon * Web Services service namespaces in the Amazon Web Services General * Reference.

*/ inline ListPoliciesGrantingServiceAccessRequest& AddServiceNamespaces(const char* value) { m_serviceNamespacesHasBeenSet = true; m_serviceNamespaces.push_back(value); return *this; } private: Aws::String m_marker; bool m_markerHasBeenSet = false; Aws::String m_arn; bool m_arnHasBeenSet = false; Aws::Vector m_serviceNamespaces; bool m_serviceNamespacesHasBeenSet = false; }; } // namespace Model } // namespace IAM } // namespace Aws