/** * 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 SSOAdmin { namespace Model { /** */ class ListPermissionSetProvisioningStatusRequest : public SSOAdminRequest { public: AWS_SSOADMIN_API ListPermissionSetProvisioningStatusRequest(); // 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 "ListPermissionSetProvisioningStatus"; } AWS_SSOADMIN_API Aws::String SerializePayload() const override; AWS_SSOADMIN_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The ARN of the IAM Identity Center instance under which the operation will be * executed. For more information about ARNs, see Amazon Resource Names * (ARNs) and AWS Service Namespaces in the AWS General Reference.

*/ inline const Aws::String& GetInstanceArn() const{ return m_instanceArn; } /** *

The ARN of the IAM Identity Center instance under which the operation will be * executed. For more information about ARNs, see Amazon Resource Names * (ARNs) and AWS Service Namespaces in the AWS General Reference.

*/ inline bool InstanceArnHasBeenSet() const { return m_instanceArnHasBeenSet; } /** *

The ARN of the IAM Identity Center instance under which the operation will be * executed. For more information about ARNs, see Amazon Resource Names * (ARNs) and AWS Service Namespaces in the AWS General Reference.

*/ inline void SetInstanceArn(const Aws::String& value) { m_instanceArnHasBeenSet = true; m_instanceArn = value; } /** *

The ARN of the IAM Identity Center instance under which the operation will be * executed. For more information about ARNs, see Amazon Resource Names * (ARNs) and AWS Service Namespaces in the AWS General Reference.

*/ inline void SetInstanceArn(Aws::String&& value) { m_instanceArnHasBeenSet = true; m_instanceArn = std::move(value); } /** *

The ARN of the IAM Identity Center instance under which the operation will be * executed. For more information about ARNs, see Amazon Resource Names * (ARNs) and AWS Service Namespaces in the AWS General Reference.

*/ inline void SetInstanceArn(const char* value) { m_instanceArnHasBeenSet = true; m_instanceArn.assign(value); } /** *

The ARN of the IAM Identity Center instance under which the operation will be * executed. For more information about ARNs, see Amazon Resource Names * (ARNs) and AWS Service Namespaces in the AWS General Reference.

*/ inline ListPermissionSetProvisioningStatusRequest& WithInstanceArn(const Aws::String& value) { SetInstanceArn(value); return *this;} /** *

The ARN of the IAM Identity Center instance under which the operation will be * executed. For more information about ARNs, see Amazon Resource Names * (ARNs) and AWS Service Namespaces in the AWS General Reference.

*/ inline ListPermissionSetProvisioningStatusRequest& WithInstanceArn(Aws::String&& value) { SetInstanceArn(std::move(value)); return *this;} /** *

The ARN of the IAM Identity Center instance under which the operation will be * executed. For more information about ARNs, see Amazon Resource Names * (ARNs) and AWS Service Namespaces in the AWS General Reference.

*/ inline ListPermissionSetProvisioningStatusRequest& WithInstanceArn(const char* value) { SetInstanceArn(value); return *this;} /** *

The maximum number of results to display for the assignment.

*/ inline int GetMaxResults() const{ return m_maxResults; } /** *

The maximum number of results to display for the assignment.

*/ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** *

The maximum number of results to display for the assignment.

*/ inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** *

The maximum number of results to display for the assignment.

*/ inline ListPermissionSetProvisioningStatusRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} /** *

The pagination token for the list API. Initially the value is null. Use the * output of previous API calls to make subsequent calls.

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

The pagination token for the list API. Initially the value is null. Use the * output of previous API calls to make subsequent calls.

*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *

The pagination token for the list API. Initially the value is null. Use the * output of previous API calls to make subsequent calls.

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

The pagination token for the list API. Initially the value is null. Use the * output of previous API calls to make subsequent calls.

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

The pagination token for the list API. Initially the value is null. Use the * output of previous API calls to make subsequent calls.

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

The pagination token for the list API. Initially the value is null. Use the * output of previous API calls to make subsequent calls.

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

The pagination token for the list API. Initially the value is null. Use the * output of previous API calls to make subsequent calls.

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

The pagination token for the list API. Initially the value is null. Use the * output of previous API calls to make subsequent calls.

*/ inline ListPermissionSetProvisioningStatusRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

Filters results based on the passed attribute value.

*/ inline const OperationStatusFilter& GetFilter() const{ return m_filter; } /** *

Filters results based on the passed attribute value.

*/ inline bool FilterHasBeenSet() const { return m_filterHasBeenSet; } /** *

Filters results based on the passed attribute value.

*/ inline void SetFilter(const OperationStatusFilter& value) { m_filterHasBeenSet = true; m_filter = value; } /** *

Filters results based on the passed attribute value.

*/ inline void SetFilter(OperationStatusFilter&& value) { m_filterHasBeenSet = true; m_filter = std::move(value); } /** *

Filters results based on the passed attribute value.

*/ inline ListPermissionSetProvisioningStatusRequest& WithFilter(const OperationStatusFilter& value) { SetFilter(value); return *this;} /** *

Filters results based on the passed attribute value.

*/ inline ListPermissionSetProvisioningStatusRequest& WithFilter(OperationStatusFilter&& value) { SetFilter(std::move(value)); return *this;} private: Aws::String m_instanceArn; bool m_instanceArnHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; OperationStatusFilter m_filter; bool m_filterHasBeenSet = false; }; } // namespace Model } // namespace SSOAdmin } // namespace Aws