98 lines
3.6 KiB
C++
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 DisableDomainTransferLock response includes the following
|
|
* element.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DisableDomainTransferLockResponse">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_ROUTE53DOMAINS_API DisableDomainTransferLockResult
|
|
{
|
|
public:
|
|
DisableDomainTransferLockResult();
|
|
DisableDomainTransferLockResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
DisableDomainTransferLockResult& 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 DisableDomainTransferLockResult& 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 DisableDomainTransferLockResult& 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 DisableDomainTransferLockResult& WithOperationId(const char* value) { SetOperationId(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_operationId;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Route53Domains
|
|
} // namespace Aws
|