/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace ServiceQuotas { namespace Model { /** */ class GetRequestedServiceQuotaChangeRequest : public ServiceQuotasRequest { public: AWS_SERVICEQUOTAS_API GetRequestedServiceQuotaChangeRequest(); // 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 "GetRequestedServiceQuotaChange"; } AWS_SERVICEQUOTAS_API Aws::String SerializePayload() const override; AWS_SERVICEQUOTAS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The ID of the quota increase request.

*/ inline const Aws::String& GetRequestId() const{ return m_requestId; } /** *

The ID of the quota increase request.

*/ inline bool RequestIdHasBeenSet() const { return m_requestIdHasBeenSet; } /** *

The ID of the quota increase request.

*/ inline void SetRequestId(const Aws::String& value) { m_requestIdHasBeenSet = true; m_requestId = value; } /** *

The ID of the quota increase request.

*/ inline void SetRequestId(Aws::String&& value) { m_requestIdHasBeenSet = true; m_requestId = std::move(value); } /** *

The ID of the quota increase request.

*/ inline void SetRequestId(const char* value) { m_requestIdHasBeenSet = true; m_requestId.assign(value); } /** *

The ID of the quota increase request.

*/ inline GetRequestedServiceQuotaChangeRequest& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} /** *

The ID of the quota increase request.

*/ inline GetRequestedServiceQuotaChangeRequest& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} /** *

The ID of the quota increase request.

*/ inline GetRequestedServiceQuotaChangeRequest& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_requestId; bool m_requestIdHasBeenSet = false; }; } // namespace Model } // namespace ServiceQuotas } // namespace Aws