{-# 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.AccessAnalyzer.CancelPolicyGeneration -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Cancels the requested policy generation. module Amazonka.AccessAnalyzer.CancelPolicyGeneration ( -- * Creating a Request CancelPolicyGeneration (..), newCancelPolicyGeneration, -- * Request Lenses cancelPolicyGeneration_jobId, -- * Destructuring the Response CancelPolicyGenerationResponse (..), newCancelPolicyGenerationResponse, -- * Response Lenses cancelPolicyGenerationResponse_httpStatus, ) where import Amazonka.AccessAnalyzer.Types 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 -- | /See:/ 'newCancelPolicyGeneration' smart constructor. data CancelPolicyGeneration = CancelPolicyGeneration' { -- | The @JobId@ that is returned by the @StartPolicyGeneration@ operation. -- The @JobId@ can be used with @GetGeneratedPolicy@ to retrieve the -- generated policies or used with @CancelPolicyGeneration@ to cancel the -- policy generation request. jobId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'CancelPolicyGeneration' 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: -- -- 'jobId', 'cancelPolicyGeneration_jobId' - The @JobId@ that is returned by the @StartPolicyGeneration@ operation. -- The @JobId@ can be used with @GetGeneratedPolicy@ to retrieve the -- generated policies or used with @CancelPolicyGeneration@ to cancel the -- policy generation request. newCancelPolicyGeneration :: -- | 'jobId' Prelude.Text -> CancelPolicyGeneration newCancelPolicyGeneration pJobId_ = CancelPolicyGeneration' {jobId = pJobId_} -- | The @JobId@ that is returned by the @StartPolicyGeneration@ operation. -- The @JobId@ can be used with @GetGeneratedPolicy@ to retrieve the -- generated policies or used with @CancelPolicyGeneration@ to cancel the -- policy generation request. cancelPolicyGeneration_jobId :: Lens.Lens' CancelPolicyGeneration Prelude.Text cancelPolicyGeneration_jobId = Lens.lens (\CancelPolicyGeneration' {jobId} -> jobId) (\s@CancelPolicyGeneration' {} a -> s {jobId = a} :: CancelPolicyGeneration) instance Core.AWSRequest CancelPolicyGeneration where type AWSResponse CancelPolicyGeneration = CancelPolicyGenerationResponse request overrides = Request.putJSON (overrides defaultService) response = Response.receiveEmpty ( \s h x -> CancelPolicyGenerationResponse' Prelude.<$> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable CancelPolicyGeneration where hashWithSalt _salt CancelPolicyGeneration' {..} = _salt `Prelude.hashWithSalt` jobId instance Prelude.NFData CancelPolicyGeneration where rnf CancelPolicyGeneration' {..} = Prelude.rnf jobId instance Data.ToHeaders CancelPolicyGeneration where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON CancelPolicyGeneration where toJSON = Prelude.const (Data.Object Prelude.mempty) instance Data.ToPath CancelPolicyGeneration where toPath CancelPolicyGeneration' {..} = Prelude.mconcat ["/policy/generation/", Data.toBS jobId] instance Data.ToQuery CancelPolicyGeneration where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newCancelPolicyGenerationResponse' smart constructor. data CancelPolicyGenerationResponse = CancelPolicyGenerationResponse' { -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'CancelPolicyGenerationResponse' 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', 'cancelPolicyGenerationResponse_httpStatus' - The response's http status code. newCancelPolicyGenerationResponse :: -- | 'httpStatus' Prelude.Int -> CancelPolicyGenerationResponse newCancelPolicyGenerationResponse pHttpStatus_ = CancelPolicyGenerationResponse' { httpStatus = pHttpStatus_ } -- | The response's http status code. cancelPolicyGenerationResponse_httpStatus :: Lens.Lens' CancelPolicyGenerationResponse Prelude.Int cancelPolicyGenerationResponse_httpStatus = Lens.lens (\CancelPolicyGenerationResponse' {httpStatus} -> httpStatus) (\s@CancelPolicyGenerationResponse' {} a -> s {httpStatus = a} :: CancelPolicyGenerationResponse) instance Prelude.NFData CancelPolicyGenerationResponse where rnf CancelPolicyGenerationResponse' {..} = Prelude.rnf httpStatus