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/EnableDomainTransferLockResult.h

91 lines
3.0 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 EnableDomainTransferLock response includes the following
* elements.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/EnableDomainTransferLockResponse">AWS
* API Reference</a></p>
*/
class AWS_ROUTE53DOMAINS_API EnableDomainTransferLockResult
{
public:
EnableDomainTransferLockResult();
EnableDomainTransferLockResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
EnableDomainTransferLockResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>Identifier for tracking the progress of the request. To use this ID to query
* the operation status, use GetOperationDetail.</p>
*/
inline const Aws::String& GetOperationId() const{ return m_operationId; }
/**
* <p>Identifier for tracking the progress of the request. To use this ID to query
* the operation status, use GetOperationDetail.</p>
*/
inline void SetOperationId(const Aws::String& value) { m_operationId = value; }
/**
* <p>Identifier for tracking the progress of the request. To use this ID to query
* the operation status, use GetOperationDetail.</p>
*/
inline void SetOperationId(Aws::String&& value) { m_operationId = std::move(value); }
/**
* <p>Identifier for tracking the progress of the request. To use this ID to query
* the operation status, use GetOperationDetail.</p>
*/
inline void SetOperationId(const char* value) { m_operationId.assign(value); }
/**
* <p>Identifier for tracking the progress of the request. To use this ID to query
* the operation status, use GetOperationDetail.</p>
*/
inline EnableDomainTransferLockResult& WithOperationId(const Aws::String& value) { SetOperationId(value); return *this;}
/**
* <p>Identifier for tracking the progress of the request. To use this ID to query
* the operation status, use GetOperationDetail.</p>
*/
inline EnableDomainTransferLockResult& WithOperationId(Aws::String&& value) { SetOperationId(std::move(value)); return *this;}
/**
* <p>Identifier for tracking the progress of the request. To use this ID to query
* the operation status, use GetOperationDetail.</p>
*/
inline EnableDomainTransferLockResult& WithOperationId(const char* value) { SetOperationId(value); return *this;}
private:
Aws::String m_operationId;
};
} // namespace Model
} // namespace Route53Domains
} // namespace Aws