{-# 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.Route53.GetReusableDelegationSet -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Retrieves information about a specified reusable delegation set, -- including the four name servers that are assigned to the delegation set. module Amazonka.Route53.GetReusableDelegationSet ( -- * Creating a Request GetReusableDelegationSet (..), newGetReusableDelegationSet, -- * Request Lenses getReusableDelegationSet_id, -- * Destructuring the Response GetReusableDelegationSetResponse (..), newGetReusableDelegationSetResponse, -- * Response Lenses getReusableDelegationSetResponse_httpStatus, getReusableDelegationSetResponse_delegationSet, ) 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.Route53.Types -- | A request to get information about a specified reusable delegation set. -- -- /See:/ 'newGetReusableDelegationSet' smart constructor. data GetReusableDelegationSet = GetReusableDelegationSet' { -- | The ID of the reusable delegation set that you want to get a list of -- name servers for. id :: ResourceId } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetReusableDelegationSet' 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: -- -- 'id', 'getReusableDelegationSet_id' - The ID of the reusable delegation set that you want to get a list of -- name servers for. newGetReusableDelegationSet :: -- | 'id' ResourceId -> GetReusableDelegationSet newGetReusableDelegationSet pId_ = GetReusableDelegationSet' {id = pId_} -- | The ID of the reusable delegation set that you want to get a list of -- name servers for. getReusableDelegationSet_id :: Lens.Lens' GetReusableDelegationSet ResourceId getReusableDelegationSet_id = Lens.lens (\GetReusableDelegationSet' {id} -> id) (\s@GetReusableDelegationSet' {} a -> s {id = a} :: GetReusableDelegationSet) instance Core.AWSRequest GetReusableDelegationSet where type AWSResponse GetReusableDelegationSet = GetReusableDelegationSetResponse request overrides = Request.get (overrides defaultService) response = Response.receiveXML ( \s h x -> GetReusableDelegationSetResponse' Prelude.<$> (Prelude.pure (Prelude.fromEnum s)) Prelude.<*> (x Data..@ "DelegationSet") ) instance Prelude.Hashable GetReusableDelegationSet where hashWithSalt _salt GetReusableDelegationSet' {..} = _salt `Prelude.hashWithSalt` id instance Prelude.NFData GetReusableDelegationSet where rnf GetReusableDelegationSet' {..} = Prelude.rnf id instance Data.ToHeaders GetReusableDelegationSet where toHeaders = Prelude.const Prelude.mempty instance Data.ToPath GetReusableDelegationSet where toPath GetReusableDelegationSet' {..} = Prelude.mconcat ["/2013-04-01/delegationset/", Data.toBS id] instance Data.ToQuery GetReusableDelegationSet where toQuery = Prelude.const Prelude.mempty -- | A complex type that contains the response to the -- @GetReusableDelegationSet@ request. -- -- /See:/ 'newGetReusableDelegationSetResponse' smart constructor. data GetReusableDelegationSetResponse = GetReusableDelegationSetResponse' { -- | The response's http status code. httpStatus :: Prelude.Int, -- | A complex type that contains information about the reusable delegation -- set. delegationSet :: DelegationSet } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetReusableDelegationSetResponse' 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: -- -- 'httpStatus', 'getReusableDelegationSetResponse_httpStatus' - The response's http status code. -- -- 'delegationSet', 'getReusableDelegationSetResponse_delegationSet' - A complex type that contains information about the reusable delegation -- set. newGetReusableDelegationSetResponse :: -- | 'httpStatus' Prelude.Int -> -- | 'delegationSet' DelegationSet -> GetReusableDelegationSetResponse newGetReusableDelegationSetResponse pHttpStatus_ pDelegationSet_ = GetReusableDelegationSetResponse' { httpStatus = pHttpStatus_, delegationSet = pDelegationSet_ } -- | The response's http status code. getReusableDelegationSetResponse_httpStatus :: Lens.Lens' GetReusableDelegationSetResponse Prelude.Int getReusableDelegationSetResponse_httpStatus = Lens.lens (\GetReusableDelegationSetResponse' {httpStatus} -> httpStatus) (\s@GetReusableDelegationSetResponse' {} a -> s {httpStatus = a} :: GetReusableDelegationSetResponse) -- | A complex type that contains information about the reusable delegation -- set. getReusableDelegationSetResponse_delegationSet :: Lens.Lens' GetReusableDelegationSetResponse DelegationSet getReusableDelegationSetResponse_delegationSet = Lens.lens (\GetReusableDelegationSetResponse' {delegationSet} -> delegationSet) (\s@GetReusableDelegationSetResponse' {} a -> s {delegationSet = a} :: GetReusableDelegationSetResponse) instance Prelude.NFData GetReusableDelegationSetResponse where rnf GetReusableDelegationSetResponse' {..} = Prelude.rnf httpStatus `Prelude.seq` Prelude.rnf delegationSet