{-# 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.Shield.DescribeDRTAccess -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Returns the current role and list of Amazon S3 log buckets used by the -- Shield Response Team (SRT) to access your Amazon Web Services account -- while assisting with attack mitigation. module Amazonka.Shield.DescribeDRTAccess ( -- * Creating a Request DescribeDRTAccess (..), newDescribeDRTAccess, -- * Destructuring the Response DescribeDRTAccessResponse (..), newDescribeDRTAccessResponse, -- * Response Lenses describeDRTAccessResponse_logBucketList, describeDRTAccessResponse_roleArn, describeDRTAccessResponse_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.Shield.Types -- | /See:/ 'newDescribeDRTAccess' smart constructor. data DescribeDRTAccess = DescribeDRTAccess' { } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DescribeDRTAccess' with all optional fields omitted. -- -- Use or to modify other optional fields. newDescribeDRTAccess :: DescribeDRTAccess newDescribeDRTAccess = DescribeDRTAccess' instance Core.AWSRequest DescribeDRTAccess where type AWSResponse DescribeDRTAccess = DescribeDRTAccessResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> DescribeDRTAccessResponse' Prelude.<$> (x Data..?> "LogBucketList" Core..!@ Prelude.mempty) Prelude.<*> (x Data..?> "RoleArn") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable DescribeDRTAccess where hashWithSalt _salt _ = _salt `Prelude.hashWithSalt` () instance Prelude.NFData DescribeDRTAccess where rnf _ = () instance Data.ToHeaders DescribeDRTAccess where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "AWSShield_20160616.DescribeDRTAccess" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON DescribeDRTAccess where toJSON = Prelude.const (Data.Object Prelude.mempty) instance Data.ToPath DescribeDRTAccess where toPath = Prelude.const "/" instance Data.ToQuery DescribeDRTAccess where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newDescribeDRTAccessResponse' smart constructor. data DescribeDRTAccessResponse = DescribeDRTAccessResponse' { -- | The list of Amazon S3 buckets accessed by the SRT. logBucketList :: Prelude.Maybe [Prelude.Text], -- | The Amazon Resource Name (ARN) of the role the SRT used to access your -- Amazon Web Services account. roleArn :: 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 'DescribeDRTAccessResponse' 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: -- -- 'logBucketList', 'describeDRTAccessResponse_logBucketList' - The list of Amazon S3 buckets accessed by the SRT. -- -- 'roleArn', 'describeDRTAccessResponse_roleArn' - The Amazon Resource Name (ARN) of the role the SRT used to access your -- Amazon Web Services account. -- -- 'httpStatus', 'describeDRTAccessResponse_httpStatus' - The response's http status code. newDescribeDRTAccessResponse :: -- | 'httpStatus' Prelude.Int -> DescribeDRTAccessResponse newDescribeDRTAccessResponse pHttpStatus_ = DescribeDRTAccessResponse' { logBucketList = Prelude.Nothing, roleArn = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | The list of Amazon S3 buckets accessed by the SRT. describeDRTAccessResponse_logBucketList :: Lens.Lens' DescribeDRTAccessResponse (Prelude.Maybe [Prelude.Text]) describeDRTAccessResponse_logBucketList = Lens.lens (\DescribeDRTAccessResponse' {logBucketList} -> logBucketList) (\s@DescribeDRTAccessResponse' {} a -> s {logBucketList = a} :: DescribeDRTAccessResponse) Prelude.. Lens.mapping Lens.coerced -- | The Amazon Resource Name (ARN) of the role the SRT used to access your -- Amazon Web Services account. describeDRTAccessResponse_roleArn :: Lens.Lens' DescribeDRTAccessResponse (Prelude.Maybe Prelude.Text) describeDRTAccessResponse_roleArn = Lens.lens (\DescribeDRTAccessResponse' {roleArn} -> roleArn) (\s@DescribeDRTAccessResponse' {} a -> s {roleArn = a} :: DescribeDRTAccessResponse) -- | The response's http status code. describeDRTAccessResponse_httpStatus :: Lens.Lens' DescribeDRTAccessResponse Prelude.Int describeDRTAccessResponse_httpStatus = Lens.lens (\DescribeDRTAccessResponse' {httpStatus} -> httpStatus) (\s@DescribeDRTAccessResponse' {} a -> s {httpStatus = a} :: DescribeDRTAccessResponse) instance Prelude.NFData DescribeDRTAccessResponse where rnf DescribeDRTAccessResponse' {..} = Prelude.rnf logBucketList `Prelude.seq` Prelude.rnf roleArn `Prelude.seq` Prelude.rnf httpStatus