This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-route53domains/include/aws/route53domains/model/UpdateDomainNameserversResult.h

98 lines
3.6 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/route53domains/Route53Domains_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace Route53Domains
{
namespace Model
{
/**
* <p>The UpdateDomainNameservers response includes the following
* element.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/UpdateDomainNameserversResponse">AWS
* API Reference</a></p>
*/
class AWS_ROUTE53DOMAINS_API UpdateDomainNameserversResult
{
public:
UpdateDomainNameserversResult();
UpdateDomainNameserversResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
UpdateDomainNameserversResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>Identifier for tracking the progress of the request. To query the operation
* status, use <a
* href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html">GetOperationDetail</a>.</p>
*/
inline const Aws::String& GetOperationId() const{ return m_operationId; }
/**
* <p>Identifier for tracking the progress of the request. To query the operation
* status, use <a
* href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html">GetOperationDetail</a>.</p>
*/
inline void SetOperationId(const Aws::String& value) { m_operationId = value; }
/**
* <p>Identifier for tracking the progress of the request. To query the operation
* status, use <a
* href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html">GetOperationDetail</a>.</p>
*/
inline void SetOperationId(Aws::String&& value) { m_operationId = std::move(value); }
/**
* <p>Identifier for tracking the progress of the request. To query the operation
* status, use <a
* href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html">GetOperationDetail</a>.</p>
*/
inline void SetOperationId(const char* value) { m_operationId.assign(value); }
/**
* <p>Identifier for tracking the progress of the request. To query the operation
* status, use <a
* href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html">GetOperationDetail</a>.</p>
*/
inline UpdateDomainNameserversResult& WithOperationId(const Aws::String& value) { SetOperationId(value); return *this;}
/**
* <p>Identifier for tracking the progress of the request. To query the operation
* status, use <a
* href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html">GetOperationDetail</a>.</p>
*/
inline UpdateDomainNameserversResult& WithOperationId(Aws::String&& value) { SetOperationId(std::move(value)); return *this;}
/**
* <p>Identifier for tracking the progress of the request. To query the operation
* status, use <a
* href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html">GetOperationDetail</a>.</p>
*/
inline UpdateDomainNameserversResult& WithOperationId(const char* value) { SetOperationId(value); return *this;}
private:
Aws::String m_operationId;
};
} // namespace Model
} // namespace Route53Domains
} // namespace Aws