amazonka-pinpoint-2.0: gen/Amazonka/Pinpoint/DeleteJourney.hs
{-# 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.Pinpoint.DeleteJourney
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Deletes a journey from an application.
module Amazonka.Pinpoint.DeleteJourney
( -- * Creating a Request
DeleteJourney (..),
newDeleteJourney,
-- * Request Lenses
deleteJourney_journeyId,
deleteJourney_applicationId,
-- * Destructuring the Response
DeleteJourneyResponse (..),
newDeleteJourneyResponse,
-- * Response Lenses
deleteJourneyResponse_httpStatus,
deleteJourneyResponse_journeyResponse,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.Pinpoint.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | /See:/ 'newDeleteJourney' smart constructor.
data DeleteJourney = DeleteJourney'
{ -- | The unique identifier for the journey.
journeyId :: Prelude.Text,
-- | The unique identifier for the application. This identifier is displayed
-- as the __Project ID__ on the Amazon Pinpoint console.
applicationId :: Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DeleteJourney' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'journeyId', 'deleteJourney_journeyId' - The unique identifier for the journey.
--
-- 'applicationId', 'deleteJourney_applicationId' - The unique identifier for the application. This identifier is displayed
-- as the __Project ID__ on the Amazon Pinpoint console.
newDeleteJourney ::
-- | 'journeyId'
Prelude.Text ->
-- | 'applicationId'
Prelude.Text ->
DeleteJourney
newDeleteJourney pJourneyId_ pApplicationId_ =
DeleteJourney'
{ journeyId = pJourneyId_,
applicationId = pApplicationId_
}
-- | The unique identifier for the journey.
deleteJourney_journeyId :: Lens.Lens' DeleteJourney Prelude.Text
deleteJourney_journeyId = Lens.lens (\DeleteJourney' {journeyId} -> journeyId) (\s@DeleteJourney' {} a -> s {journeyId = a} :: DeleteJourney)
-- | The unique identifier for the application. This identifier is displayed
-- as the __Project ID__ on the Amazon Pinpoint console.
deleteJourney_applicationId :: Lens.Lens' DeleteJourney Prelude.Text
deleteJourney_applicationId = Lens.lens (\DeleteJourney' {applicationId} -> applicationId) (\s@DeleteJourney' {} a -> s {applicationId = a} :: DeleteJourney)
instance Core.AWSRequest DeleteJourney where
type
AWSResponse DeleteJourney =
DeleteJourneyResponse
request overrides =
Request.delete (overrides defaultService)
response =
Response.receiveJSON
( \s h x ->
DeleteJourneyResponse'
Prelude.<$> (Prelude.pure (Prelude.fromEnum s))
Prelude.<*> (Data.eitherParseJSON x)
)
instance Prelude.Hashable DeleteJourney where
hashWithSalt _salt DeleteJourney' {..} =
_salt
`Prelude.hashWithSalt` journeyId
`Prelude.hashWithSalt` applicationId
instance Prelude.NFData DeleteJourney where
rnf DeleteJourney' {..} =
Prelude.rnf journeyId
`Prelude.seq` Prelude.rnf applicationId
instance Data.ToHeaders DeleteJourney where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToPath DeleteJourney where
toPath DeleteJourney' {..} =
Prelude.mconcat
[ "/v1/apps/",
Data.toBS applicationId,
"/journeys/",
Data.toBS journeyId
]
instance Data.ToQuery DeleteJourney where
toQuery = Prelude.const Prelude.mempty
-- | /See:/ 'newDeleteJourneyResponse' smart constructor.
data DeleteJourneyResponse = DeleteJourneyResponse'
{ -- | The response's http status code.
httpStatus :: Prelude.Int,
journeyResponse :: JourneyResponse
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DeleteJourneyResponse' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'httpStatus', 'deleteJourneyResponse_httpStatus' - The response's http status code.
--
-- 'journeyResponse', 'deleteJourneyResponse_journeyResponse' - Undocumented member.
newDeleteJourneyResponse ::
-- | 'httpStatus'
Prelude.Int ->
-- | 'journeyResponse'
JourneyResponse ->
DeleteJourneyResponse
newDeleteJourneyResponse
pHttpStatus_
pJourneyResponse_ =
DeleteJourneyResponse'
{ httpStatus = pHttpStatus_,
journeyResponse = pJourneyResponse_
}
-- | The response's http status code.
deleteJourneyResponse_httpStatus :: Lens.Lens' DeleteJourneyResponse Prelude.Int
deleteJourneyResponse_httpStatus = Lens.lens (\DeleteJourneyResponse' {httpStatus} -> httpStatus) (\s@DeleteJourneyResponse' {} a -> s {httpStatus = a} :: DeleteJourneyResponse)
-- | Undocumented member.
deleteJourneyResponse_journeyResponse :: Lens.Lens' DeleteJourneyResponse JourneyResponse
deleteJourneyResponse_journeyResponse = Lens.lens (\DeleteJourneyResponse' {journeyResponse} -> journeyResponse) (\s@DeleteJourneyResponse' {} a -> s {journeyResponse = a} :: DeleteJourneyResponse)
instance Prelude.NFData DeleteJourneyResponse where
rnf DeleteJourneyResponse' {..} =
Prelude.rnf httpStatus
`Prelude.seq` Prelude.rnf journeyResponse