{-# 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.DirectConnect.ConfirmCustomerAgreement -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- The confirmation of the terms of agreement when creating the -- connection\/link aggregation group (LAG). module Amazonka.DirectConnect.ConfirmCustomerAgreement ( -- * Creating a Request ConfirmCustomerAgreement (..), newConfirmCustomerAgreement, -- * Request Lenses confirmCustomerAgreement_agreementName, -- * Destructuring the Response ConfirmCustomerAgreementResponse (..), newConfirmCustomerAgreementResponse, -- * Response Lenses confirmCustomerAgreementResponse_status, confirmCustomerAgreementResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.DirectConnect.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newConfirmCustomerAgreement' smart constructor. data ConfirmCustomerAgreement = ConfirmCustomerAgreement' { -- | The name of the customer agreement. agreementName :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ConfirmCustomerAgreement' 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: -- -- 'agreementName', 'confirmCustomerAgreement_agreementName' - The name of the customer agreement. newConfirmCustomerAgreement :: ConfirmCustomerAgreement newConfirmCustomerAgreement = ConfirmCustomerAgreement' { agreementName = Prelude.Nothing } -- | The name of the customer agreement. confirmCustomerAgreement_agreementName :: Lens.Lens' ConfirmCustomerAgreement (Prelude.Maybe Prelude.Text) confirmCustomerAgreement_agreementName = Lens.lens (\ConfirmCustomerAgreement' {agreementName} -> agreementName) (\s@ConfirmCustomerAgreement' {} a -> s {agreementName = a} :: ConfirmCustomerAgreement) instance Core.AWSRequest ConfirmCustomerAgreement where type AWSResponse ConfirmCustomerAgreement = ConfirmCustomerAgreementResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> ConfirmCustomerAgreementResponse' Prelude.<$> (x Data..?> "status") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable ConfirmCustomerAgreement where hashWithSalt _salt ConfirmCustomerAgreement' {..} = _salt `Prelude.hashWithSalt` agreementName instance Prelude.NFData ConfirmCustomerAgreement where rnf ConfirmCustomerAgreement' {..} = Prelude.rnf agreementName instance Data.ToHeaders ConfirmCustomerAgreement where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "OvertureService.ConfirmCustomerAgreement" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON ConfirmCustomerAgreement where toJSON ConfirmCustomerAgreement' {..} = Data.object ( Prelude.catMaybes [ ("agreementName" Data..=) Prelude.<$> agreementName ] ) instance Data.ToPath ConfirmCustomerAgreement where toPath = Prelude.const "/" instance Data.ToQuery ConfirmCustomerAgreement where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newConfirmCustomerAgreementResponse' smart constructor. data ConfirmCustomerAgreementResponse = ConfirmCustomerAgreementResponse' { -- | The status of the customer agreement when the connection was created. -- This will be either @signed@ or @unsigned@. status :: 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 'ConfirmCustomerAgreementResponse' 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: -- -- 'status', 'confirmCustomerAgreementResponse_status' - The status of the customer agreement when the connection was created. -- This will be either @signed@ or @unsigned@. -- -- 'httpStatus', 'confirmCustomerAgreementResponse_httpStatus' - The response's http status code. newConfirmCustomerAgreementResponse :: -- | 'httpStatus' Prelude.Int -> ConfirmCustomerAgreementResponse newConfirmCustomerAgreementResponse pHttpStatus_ = ConfirmCustomerAgreementResponse' { status = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | The status of the customer agreement when the connection was created. -- This will be either @signed@ or @unsigned@. confirmCustomerAgreementResponse_status :: Lens.Lens' ConfirmCustomerAgreementResponse (Prelude.Maybe Prelude.Text) confirmCustomerAgreementResponse_status = Lens.lens (\ConfirmCustomerAgreementResponse' {status} -> status) (\s@ConfirmCustomerAgreementResponse' {} a -> s {status = a} :: ConfirmCustomerAgreementResponse) -- | The response's http status code. confirmCustomerAgreementResponse_httpStatus :: Lens.Lens' ConfirmCustomerAgreementResponse Prelude.Int confirmCustomerAgreementResponse_httpStatus = Lens.lens (\ConfirmCustomerAgreementResponse' {httpStatus} -> httpStatus) (\s@ConfirmCustomerAgreementResponse' {} a -> s {httpStatus = a} :: ConfirmCustomerAgreementResponse) instance Prelude.NFData ConfirmCustomerAgreementResponse where rnf ConfirmCustomerAgreementResponse' {..} = Prelude.rnf status `Prelude.seq` Prelude.rnf httpStatus