/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The GetOperationDetail
* request includes the following element.See Also:
AWS
* API Reference
The identifier for the operation for which you want to get the status. Route * 53 returned the identifier in the response to the original request.
*/ inline const Aws::String& GetOperationId() const{ return m_operationId; } /** *The identifier for the operation for which you want to get the status. Route * 53 returned the identifier in the response to the original request.
*/ inline bool OperationIdHasBeenSet() const { return m_operationIdHasBeenSet; } /** *The identifier for the operation for which you want to get the status. Route * 53 returned the identifier in the response to the original request.
*/ inline void SetOperationId(const Aws::String& value) { m_operationIdHasBeenSet = true; m_operationId = value; } /** *The identifier for the operation for which you want to get the status. Route * 53 returned the identifier in the response to the original request.
*/ inline void SetOperationId(Aws::String&& value) { m_operationIdHasBeenSet = true; m_operationId = std::move(value); } /** *The identifier for the operation for which you want to get the status. Route * 53 returned the identifier in the response to the original request.
*/ inline void SetOperationId(const char* value) { m_operationIdHasBeenSet = true; m_operationId.assign(value); } /** *The identifier for the operation for which you want to get the status. Route * 53 returned the identifier in the response to the original request.
*/ inline GetOperationDetailRequest& WithOperationId(const Aws::String& value) { SetOperationId(value); return *this;} /** *The identifier for the operation for which you want to get the status. Route * 53 returned the identifier in the response to the original request.
*/ inline GetOperationDetailRequest& WithOperationId(Aws::String&& value) { SetOperationId(std::move(value)); return *this;} /** *The identifier for the operation for which you want to get the status. Route * 53 returned the identifier in the response to the original request.
*/ inline GetOperationDetailRequest& WithOperationId(const char* value) { SetOperationId(value); return *this;} private: Aws::String m_operationId; bool m_operationIdHasBeenSet = false; }; } // namespace Model } // namespace Route53Domains } // namespace Aws