{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.Route53Domains.TransferDomainToAnotherAwsAccount -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Transfers a domain from the current Amazon Web Services account to -- another Amazon Web Services account. Note the following: -- -- - The Amazon Web Services account that you\'re transferring the domain -- to must accept the transfer. If the other account doesn\'t accept -- the transfer within 3 days, we cancel the transfer. See -- . -- -- - You can cancel the transfer before the other account accepts it. See -- . -- -- - The other account can reject the transfer. See -- . -- -- When you transfer a domain from one Amazon Web Services account to -- another, Route 53 doesn\'t transfer the hosted zone that is associated -- with the domain. DNS resolution isn\'t affected if the domain and the -- hosted zone are owned by separate accounts, so transferring the hosted -- zone is optional. For information about transferring the hosted zone to -- another Amazon Web Services account, see -- -- in the /Amazon Route 53 Developer Guide/. -- -- Use either -- -- or -- -- to determine whether the operation succeeded. -- -- provides additional information, for example, -- @Domain Transfer from Aws Account 111122223333 has been cancelled@. module Amazonka.Route53Domains.TransferDomainToAnotherAwsAccount ( -- * Creating a Request TransferDomainToAnotherAwsAccount (..), newTransferDomainToAnotherAwsAccount, -- * Request Lenses transferDomainToAnotherAwsAccount_domainName, transferDomainToAnotherAwsAccount_accountId, -- * Destructuring the Response TransferDomainToAnotherAwsAccountResponse (..), newTransferDomainToAnotherAwsAccountResponse, -- * Response Lenses transferDomainToAnotherAwsAccountResponse_operationId, transferDomainToAnotherAwsAccountResponse_password, transferDomainToAnotherAwsAccountResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response import Amazonka.Route53Domains.Types -- | The TransferDomainToAnotherAwsAccount request includes the following -- elements. -- -- /See:/ 'newTransferDomainToAnotherAwsAccount' smart constructor. data TransferDomainToAnotherAwsAccount = TransferDomainToAnotherAwsAccount' { -- | The name of the domain that you want to transfer from the current Amazon -- Web Services account to another account. domainName :: Prelude.Text, -- | The account ID of the Amazon Web Services account that you want to -- transfer the domain to, for example, @111122223333@. accountId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'TransferDomainToAnotherAwsAccount' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'domainName', 'transferDomainToAnotherAwsAccount_domainName' - The name of the domain that you want to transfer from the current Amazon -- Web Services account to another account. -- -- 'accountId', 'transferDomainToAnotherAwsAccount_accountId' - The account ID of the Amazon Web Services account that you want to -- transfer the domain to, for example, @111122223333@. newTransferDomainToAnotherAwsAccount :: -- | 'domainName' Prelude.Text -> -- | 'accountId' Prelude.Text -> TransferDomainToAnotherAwsAccount newTransferDomainToAnotherAwsAccount pDomainName_ pAccountId_ = TransferDomainToAnotherAwsAccount' { domainName = pDomainName_, accountId = pAccountId_ } -- | The name of the domain that you want to transfer from the current Amazon -- Web Services account to another account. transferDomainToAnotherAwsAccount_domainName :: Lens.Lens' TransferDomainToAnotherAwsAccount Prelude.Text transferDomainToAnotherAwsAccount_domainName = Lens.lens (\TransferDomainToAnotherAwsAccount' {domainName} -> domainName) (\s@TransferDomainToAnotherAwsAccount' {} a -> s {domainName = a} :: TransferDomainToAnotherAwsAccount) -- | The account ID of the Amazon Web Services account that you want to -- transfer the domain to, for example, @111122223333@. transferDomainToAnotherAwsAccount_accountId :: Lens.Lens' TransferDomainToAnotherAwsAccount Prelude.Text transferDomainToAnotherAwsAccount_accountId = Lens.lens (\TransferDomainToAnotherAwsAccount' {accountId} -> accountId) (\s@TransferDomainToAnotherAwsAccount' {} a -> s {accountId = a} :: TransferDomainToAnotherAwsAccount) instance Core.AWSRequest TransferDomainToAnotherAwsAccount where type AWSResponse TransferDomainToAnotherAwsAccount = TransferDomainToAnotherAwsAccountResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> TransferDomainToAnotherAwsAccountResponse' Prelude.<$> (x Data..?> "OperationId") Prelude.<*> (x Data..?> "Password") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable TransferDomainToAnotherAwsAccount where hashWithSalt _salt TransferDomainToAnotherAwsAccount' {..} = _salt `Prelude.hashWithSalt` domainName `Prelude.hashWithSalt` accountId instance Prelude.NFData TransferDomainToAnotherAwsAccount where rnf TransferDomainToAnotherAwsAccount' {..} = Prelude.rnf domainName `Prelude.seq` Prelude.rnf accountId instance Data.ToHeaders TransferDomainToAnotherAwsAccount where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "Route53Domains_v20140515.TransferDomainToAnotherAwsAccount" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON TransferDomainToAnotherAwsAccount where toJSON TransferDomainToAnotherAwsAccount' {..} = Data.object ( Prelude.catMaybes [ Prelude.Just ("DomainName" Data..= domainName), Prelude.Just ("AccountId" Data..= accountId) ] ) instance Data.ToPath TransferDomainToAnotherAwsAccount where toPath = Prelude.const "/" instance Data.ToQuery TransferDomainToAnotherAwsAccount where toQuery = Prelude.const Prelude.mempty -- | The @TransferDomainToAnotherAwsAccount@ response includes the following -- elements. -- -- /See:/ 'newTransferDomainToAnotherAwsAccountResponse' smart constructor. data TransferDomainToAnotherAwsAccountResponse = TransferDomainToAnotherAwsAccountResponse' { -- | Identifier for tracking the progress of the request. To query the -- operation status, use -- . operationId :: Prelude.Maybe Prelude.Text, -- | To finish transferring a domain to another Amazon Web Services account, -- the account that the domain is being transferred to must submit an -- -- request. The request must include the value of the @Password@ element -- that was returned in the @TransferDomainToAnotherAwsAccount@ response. password :: Prelude.Maybe Prelude.Text, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'TransferDomainToAnotherAwsAccountResponse' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'operationId', 'transferDomainToAnotherAwsAccountResponse_operationId' - Identifier for tracking the progress of the request. To query the -- operation status, use -- . -- -- 'password', 'transferDomainToAnotherAwsAccountResponse_password' - To finish transferring a domain to another Amazon Web Services account, -- the account that the domain is being transferred to must submit an -- -- request. The request must include the value of the @Password@ element -- that was returned in the @TransferDomainToAnotherAwsAccount@ response. -- -- 'httpStatus', 'transferDomainToAnotherAwsAccountResponse_httpStatus' - The response's http status code. newTransferDomainToAnotherAwsAccountResponse :: -- | 'httpStatus' Prelude.Int -> TransferDomainToAnotherAwsAccountResponse newTransferDomainToAnotherAwsAccountResponse pHttpStatus_ = TransferDomainToAnotherAwsAccountResponse' { operationId = Prelude.Nothing, password = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | Identifier for tracking the progress of the request. To query the -- operation status, use -- . transferDomainToAnotherAwsAccountResponse_operationId :: Lens.Lens' TransferDomainToAnotherAwsAccountResponse (Prelude.Maybe Prelude.Text) transferDomainToAnotherAwsAccountResponse_operationId = Lens.lens (\TransferDomainToAnotherAwsAccountResponse' {operationId} -> operationId) (\s@TransferDomainToAnotherAwsAccountResponse' {} a -> s {operationId = a} :: TransferDomainToAnotherAwsAccountResponse) -- | To finish transferring a domain to another Amazon Web Services account, -- the account that the domain is being transferred to must submit an -- -- request. The request must include the value of the @Password@ element -- that was returned in the @TransferDomainToAnotherAwsAccount@ response. transferDomainToAnotherAwsAccountResponse_password :: Lens.Lens' TransferDomainToAnotherAwsAccountResponse (Prelude.Maybe Prelude.Text) transferDomainToAnotherAwsAccountResponse_password = Lens.lens (\TransferDomainToAnotherAwsAccountResponse' {password} -> password) (\s@TransferDomainToAnotherAwsAccountResponse' {} a -> s {password = a} :: TransferDomainToAnotherAwsAccountResponse) -- | The response's http status code. transferDomainToAnotherAwsAccountResponse_httpStatus :: Lens.Lens' TransferDomainToAnotherAwsAccountResponse Prelude.Int transferDomainToAnotherAwsAccountResponse_httpStatus = Lens.lens (\TransferDomainToAnotherAwsAccountResponse' {httpStatus} -> httpStatus) (\s@TransferDomainToAnotherAwsAccountResponse' {} a -> s {httpStatus = a} :: TransferDomainToAnotherAwsAccountResponse) instance Prelude.NFData TransferDomainToAnotherAwsAccountResponse where rnf TransferDomainToAnotherAwsAccountResponse' {..} = Prelude.rnf operationId `Prelude.seq` Prelude.rnf password `Prelude.seq` Prelude.rnf httpStatus