/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Route53Domains { namespace Model { /** *

The RejectDomainTransferFromAnotherAwsAccount response includes the following * element.

See Also:

AWS * API Reference

*/ class AWS_ROUTE53DOMAINS_API RejectDomainTransferFromAnotherAwsAccountResult { public: RejectDomainTransferFromAnotherAwsAccountResult(); RejectDomainTransferFromAnotherAwsAccountResult(const Aws::AmazonWebServiceResult& result); RejectDomainTransferFromAnotherAwsAccountResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The identifier that TransferDomainToAnotherAwsAccount returned * to track the progress of the request. Because the transfer request was rejected, * the value is no longer valid, and you can't use GetOperationDetail * to query the operation status.

*/ inline const Aws::String& GetOperationId() const{ return m_operationId; } /** *

The identifier that TransferDomainToAnotherAwsAccount returned * to track the progress of the request. Because the transfer request was rejected, * the value is no longer valid, and you can't use GetOperationDetail * to query the operation status.

*/ inline void SetOperationId(const Aws::String& value) { m_operationId = value; } /** *

The identifier that TransferDomainToAnotherAwsAccount returned * to track the progress of the request. Because the transfer request was rejected, * the value is no longer valid, and you can't use GetOperationDetail * to query the operation status.

*/ inline void SetOperationId(Aws::String&& value) { m_operationId = std::move(value); } /** *

The identifier that TransferDomainToAnotherAwsAccount returned * to track the progress of the request. Because the transfer request was rejected, * the value is no longer valid, and you can't use GetOperationDetail * to query the operation status.

*/ inline void SetOperationId(const char* value) { m_operationId.assign(value); } /** *

The identifier that TransferDomainToAnotherAwsAccount returned * to track the progress of the request. Because the transfer request was rejected, * the value is no longer valid, and you can't use GetOperationDetail * to query the operation status.

*/ inline RejectDomainTransferFromAnotherAwsAccountResult& WithOperationId(const Aws::String& value) { SetOperationId(value); return *this;} /** *

The identifier that TransferDomainToAnotherAwsAccount returned * to track the progress of the request. Because the transfer request was rejected, * the value is no longer valid, and you can't use GetOperationDetail * to query the operation status.

*/ inline RejectDomainTransferFromAnotherAwsAccountResult& WithOperationId(Aws::String&& value) { SetOperationId(std::move(value)); return *this;} /** *

The identifier that TransferDomainToAnotherAwsAccount returned * to track the progress of the request. Because the transfer request was rejected, * the value is no longer valid, and you can't use GetOperationDetail * to query the operation status.

*/ inline RejectDomainTransferFromAnotherAwsAccountResult& WithOperationId(const char* value) { SetOperationId(value); return *this;} private: Aws::String m_operationId; }; } // namespace Model } // namespace Route53Domains } // namespace Aws