{-# 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.KinesisAnalyticsV2.DeleteApplicationReferenceDataSource
-- 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 reference data source configuration from the specified
-- SQL-based Kinesis Data Analytics application\'s configuration.
--
-- If the application is running, Kinesis Data Analytics immediately
-- removes the in-application table that you created using the
-- AddApplicationReferenceDataSource operation.
module Amazonka.KinesisAnalyticsV2.DeleteApplicationReferenceDataSource
  ( -- * Creating a Request
    DeleteApplicationReferenceDataSource (..),
    newDeleteApplicationReferenceDataSource,

    -- * Request Lenses
    deleteApplicationReferenceDataSource_applicationName,
    deleteApplicationReferenceDataSource_currentApplicationVersionId,
    deleteApplicationReferenceDataSource_referenceId,

    -- * Destructuring the Response
    DeleteApplicationReferenceDataSourceResponse (..),
    newDeleteApplicationReferenceDataSourceResponse,

    -- * Response Lenses
    deleteApplicationReferenceDataSourceResponse_applicationARN,
    deleteApplicationReferenceDataSourceResponse_applicationVersionId,
    deleteApplicationReferenceDataSourceResponse_httpStatus,
  )
where

import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.KinesisAnalyticsV2.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response

-- | /See:/ 'newDeleteApplicationReferenceDataSource' smart constructor.
data DeleteApplicationReferenceDataSource = DeleteApplicationReferenceDataSource'
  { -- | The name of an existing application.
    DeleteApplicationReferenceDataSource -> Text
applicationName :: Prelude.Text,
    -- | The current application version. You can use the DescribeApplication
    -- operation to get the current application version. If the version
    -- specified is not the current version, the
    -- @ConcurrentModificationException@ is returned.
    DeleteApplicationReferenceDataSource -> Natural
currentApplicationVersionId :: Prelude.Natural,
    -- | The ID of the reference data source. When you add a reference data
    -- source to your application using the AddApplicationReferenceDataSource,
    -- Kinesis Data Analytics assigns an ID. You can use the
    -- DescribeApplication operation to get the reference ID.
    DeleteApplicationReferenceDataSource -> Text
referenceId :: Prelude.Text
  }
  deriving (DeleteApplicationReferenceDataSource
-> DeleteApplicationReferenceDataSource -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteApplicationReferenceDataSource
-> DeleteApplicationReferenceDataSource -> Bool
$c/= :: DeleteApplicationReferenceDataSource
-> DeleteApplicationReferenceDataSource -> Bool
== :: DeleteApplicationReferenceDataSource
-> DeleteApplicationReferenceDataSource -> Bool
$c== :: DeleteApplicationReferenceDataSource
-> DeleteApplicationReferenceDataSource -> Bool
Prelude.Eq, ReadPrec [DeleteApplicationReferenceDataSource]
ReadPrec DeleteApplicationReferenceDataSource
Int -> ReadS DeleteApplicationReferenceDataSource
ReadS [DeleteApplicationReferenceDataSource]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteApplicationReferenceDataSource]
$creadListPrec :: ReadPrec [DeleteApplicationReferenceDataSource]
readPrec :: ReadPrec DeleteApplicationReferenceDataSource
$creadPrec :: ReadPrec DeleteApplicationReferenceDataSource
readList :: ReadS [DeleteApplicationReferenceDataSource]
$creadList :: ReadS [DeleteApplicationReferenceDataSource]
readsPrec :: Int -> ReadS DeleteApplicationReferenceDataSource
$creadsPrec :: Int -> ReadS DeleteApplicationReferenceDataSource
Prelude.Read, Int -> DeleteApplicationReferenceDataSource -> ShowS
[DeleteApplicationReferenceDataSource] -> ShowS
DeleteApplicationReferenceDataSource -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteApplicationReferenceDataSource] -> ShowS
$cshowList :: [DeleteApplicationReferenceDataSource] -> ShowS
show :: DeleteApplicationReferenceDataSource -> String
$cshow :: DeleteApplicationReferenceDataSource -> String
showsPrec :: Int -> DeleteApplicationReferenceDataSource -> ShowS
$cshowsPrec :: Int -> DeleteApplicationReferenceDataSource -> ShowS
Prelude.Show, forall x.
Rep DeleteApplicationReferenceDataSource x
-> DeleteApplicationReferenceDataSource
forall x.
DeleteApplicationReferenceDataSource
-> Rep DeleteApplicationReferenceDataSource x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep DeleteApplicationReferenceDataSource x
-> DeleteApplicationReferenceDataSource
$cfrom :: forall x.
DeleteApplicationReferenceDataSource
-> Rep DeleteApplicationReferenceDataSource x
Prelude.Generic)

-- |
-- Create a value of 'DeleteApplicationReferenceDataSource' 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:
--
-- 'applicationName', 'deleteApplicationReferenceDataSource_applicationName' - The name of an existing application.
--
-- 'currentApplicationVersionId', 'deleteApplicationReferenceDataSource_currentApplicationVersionId' - The current application version. You can use the DescribeApplication
-- operation to get the current application version. If the version
-- specified is not the current version, the
-- @ConcurrentModificationException@ is returned.
--
-- 'referenceId', 'deleteApplicationReferenceDataSource_referenceId' - The ID of the reference data source. When you add a reference data
-- source to your application using the AddApplicationReferenceDataSource,
-- Kinesis Data Analytics assigns an ID. You can use the
-- DescribeApplication operation to get the reference ID.
newDeleteApplicationReferenceDataSource ::
  -- | 'applicationName'
  Prelude.Text ->
  -- | 'currentApplicationVersionId'
  Prelude.Natural ->
  -- | 'referenceId'
  Prelude.Text ->
  DeleteApplicationReferenceDataSource
newDeleteApplicationReferenceDataSource :: Text -> Natural -> Text -> DeleteApplicationReferenceDataSource
newDeleteApplicationReferenceDataSource
  Text
pApplicationName_
  Natural
pCurrentApplicationVersionId_
  Text
pReferenceId_ =
    DeleteApplicationReferenceDataSource'
      { $sel:applicationName:DeleteApplicationReferenceDataSource' :: Text
applicationName =
          Text
pApplicationName_,
        $sel:currentApplicationVersionId:DeleteApplicationReferenceDataSource' :: Natural
currentApplicationVersionId =
          Natural
pCurrentApplicationVersionId_,
        $sel:referenceId:DeleteApplicationReferenceDataSource' :: Text
referenceId = Text
pReferenceId_
      }

-- | The name of an existing application.
deleteApplicationReferenceDataSource_applicationName :: Lens.Lens' DeleteApplicationReferenceDataSource Prelude.Text
deleteApplicationReferenceDataSource_applicationName :: Lens' DeleteApplicationReferenceDataSource Text
deleteApplicationReferenceDataSource_applicationName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteApplicationReferenceDataSource' {Text
applicationName :: Text
$sel:applicationName:DeleteApplicationReferenceDataSource' :: DeleteApplicationReferenceDataSource -> Text
applicationName} -> Text
applicationName) (\s :: DeleteApplicationReferenceDataSource
s@DeleteApplicationReferenceDataSource' {} Text
a -> DeleteApplicationReferenceDataSource
s {$sel:applicationName:DeleteApplicationReferenceDataSource' :: Text
applicationName = Text
a} :: DeleteApplicationReferenceDataSource)

-- | The current application version. You can use the DescribeApplication
-- operation to get the current application version. If the version
-- specified is not the current version, the
-- @ConcurrentModificationException@ is returned.
deleteApplicationReferenceDataSource_currentApplicationVersionId :: Lens.Lens' DeleteApplicationReferenceDataSource Prelude.Natural
deleteApplicationReferenceDataSource_currentApplicationVersionId :: Lens' DeleteApplicationReferenceDataSource Natural
deleteApplicationReferenceDataSource_currentApplicationVersionId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteApplicationReferenceDataSource' {Natural
currentApplicationVersionId :: Natural
$sel:currentApplicationVersionId:DeleteApplicationReferenceDataSource' :: DeleteApplicationReferenceDataSource -> Natural
currentApplicationVersionId} -> Natural
currentApplicationVersionId) (\s :: DeleteApplicationReferenceDataSource
s@DeleteApplicationReferenceDataSource' {} Natural
a -> DeleteApplicationReferenceDataSource
s {$sel:currentApplicationVersionId:DeleteApplicationReferenceDataSource' :: Natural
currentApplicationVersionId = Natural
a} :: DeleteApplicationReferenceDataSource)

-- | The ID of the reference data source. When you add a reference data
-- source to your application using the AddApplicationReferenceDataSource,
-- Kinesis Data Analytics assigns an ID. You can use the
-- DescribeApplication operation to get the reference ID.
deleteApplicationReferenceDataSource_referenceId :: Lens.Lens' DeleteApplicationReferenceDataSource Prelude.Text
deleteApplicationReferenceDataSource_referenceId :: Lens' DeleteApplicationReferenceDataSource Text
deleteApplicationReferenceDataSource_referenceId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteApplicationReferenceDataSource' {Text
referenceId :: Text
$sel:referenceId:DeleteApplicationReferenceDataSource' :: DeleteApplicationReferenceDataSource -> Text
referenceId} -> Text
referenceId) (\s :: DeleteApplicationReferenceDataSource
s@DeleteApplicationReferenceDataSource' {} Text
a -> DeleteApplicationReferenceDataSource
s {$sel:referenceId:DeleteApplicationReferenceDataSource' :: Text
referenceId = Text
a} :: DeleteApplicationReferenceDataSource)

instance
  Core.AWSRequest
    DeleteApplicationReferenceDataSource
  where
  type
    AWSResponse DeleteApplicationReferenceDataSource =
      DeleteApplicationReferenceDataSourceResponse
  request :: (Service -> Service)
-> DeleteApplicationReferenceDataSource
-> Request DeleteApplicationReferenceDataSource
request Service -> Service
overrides =
    forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON (Service -> Service
overrides Service
defaultService)
  response :: forall (m :: * -> *).
MonadResource m =>
(ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy DeleteApplicationReferenceDataSource
-> ClientResponse ClientBody
-> m (Either
        Error
        (ClientResponse
           (AWSResponse DeleteApplicationReferenceDataSource)))
response =
    forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> Object -> Either String (AWSResponse a))
-> (ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveJSON
      ( \Int
s ResponseHeaders
h Object
x ->
          Maybe Text
-> Maybe Natural
-> Int
-> DeleteApplicationReferenceDataSourceResponse
DeleteApplicationReferenceDataSourceResponse'
            forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x forall a. FromJSON a => Object -> Key -> Either String (Maybe a)
Data..?> Key
"ApplicationARN")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Either String (Maybe a)
Data..?> Key
"ApplicationVersionId")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
      )

instance
  Prelude.Hashable
    DeleteApplicationReferenceDataSource
  where
  hashWithSalt :: Int -> DeleteApplicationReferenceDataSource -> Int
hashWithSalt
    Int
_salt
    DeleteApplicationReferenceDataSource' {Natural
Text
referenceId :: Text
currentApplicationVersionId :: Natural
applicationName :: Text
$sel:referenceId:DeleteApplicationReferenceDataSource' :: DeleteApplicationReferenceDataSource -> Text
$sel:currentApplicationVersionId:DeleteApplicationReferenceDataSource' :: DeleteApplicationReferenceDataSource -> Natural
$sel:applicationName:DeleteApplicationReferenceDataSource' :: DeleteApplicationReferenceDataSource -> Text
..} =
      Int
_salt
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
applicationName
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Natural
currentApplicationVersionId
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
referenceId

instance
  Prelude.NFData
    DeleteApplicationReferenceDataSource
  where
  rnf :: DeleteApplicationReferenceDataSource -> ()
rnf DeleteApplicationReferenceDataSource' {Natural
Text
referenceId :: Text
currentApplicationVersionId :: Natural
applicationName :: Text
$sel:referenceId:DeleteApplicationReferenceDataSource' :: DeleteApplicationReferenceDataSource -> Text
$sel:currentApplicationVersionId:DeleteApplicationReferenceDataSource' :: DeleteApplicationReferenceDataSource -> Natural
$sel:applicationName:DeleteApplicationReferenceDataSource' :: DeleteApplicationReferenceDataSource -> Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Text
applicationName
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Natural
currentApplicationVersionId
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
referenceId

instance
  Data.ToHeaders
    DeleteApplicationReferenceDataSource
  where
  toHeaders :: DeleteApplicationReferenceDataSource -> ResponseHeaders
toHeaders =
    forall a b. a -> b -> a
Prelude.const
      ( forall a. Monoid a => [a] -> a
Prelude.mconcat
          [ HeaderName
"X-Amz-Target"
              forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Data.=# ( ByteString
"KinesisAnalytics_20180523.DeleteApplicationReferenceDataSource" ::
                          Prelude.ByteString
                      ),
            HeaderName
"Content-Type"
              forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Data.=# ( ByteString
"application/x-amz-json-1.1" ::
                          Prelude.ByteString
                      )
          ]
      )

instance
  Data.ToJSON
    DeleteApplicationReferenceDataSource
  where
  toJSON :: DeleteApplicationReferenceDataSource -> Value
toJSON DeleteApplicationReferenceDataSource' {Natural
Text
referenceId :: Text
currentApplicationVersionId :: Natural
applicationName :: Text
$sel:referenceId:DeleteApplicationReferenceDataSource' :: DeleteApplicationReferenceDataSource -> Text
$sel:currentApplicationVersionId:DeleteApplicationReferenceDataSource' :: DeleteApplicationReferenceDataSource -> Natural
$sel:applicationName:DeleteApplicationReferenceDataSource' :: DeleteApplicationReferenceDataSource -> Text
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ forall a. a -> Maybe a
Prelude.Just
              (Key
"ApplicationName" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= Text
applicationName),
            forall a. a -> Maybe a
Prelude.Just
              ( Key
"CurrentApplicationVersionId"
                  forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= Natural
currentApplicationVersionId
              ),
            forall a. a -> Maybe a
Prelude.Just (Key
"ReferenceId" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= Text
referenceId)
          ]
      )

instance
  Data.ToPath
    DeleteApplicationReferenceDataSource
  where
  toPath :: DeleteApplicationReferenceDataSource -> ByteString
toPath = forall a b. a -> b -> a
Prelude.const ByteString
"/"

instance
  Data.ToQuery
    DeleteApplicationReferenceDataSource
  where
  toQuery :: DeleteApplicationReferenceDataSource -> QueryString
toQuery = forall a b. a -> b -> a
Prelude.const forall a. Monoid a => a
Prelude.mempty

-- | /See:/ 'newDeleteApplicationReferenceDataSourceResponse' smart constructor.
data DeleteApplicationReferenceDataSourceResponse = DeleteApplicationReferenceDataSourceResponse'
  { -- | The application Amazon Resource Name (ARN).
    DeleteApplicationReferenceDataSourceResponse -> Maybe Text
applicationARN :: Prelude.Maybe Prelude.Text,
    -- | The updated version ID of the application.
    DeleteApplicationReferenceDataSourceResponse -> Maybe Natural
applicationVersionId :: Prelude.Maybe Prelude.Natural,
    -- | The response's http status code.
    DeleteApplicationReferenceDataSourceResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (DeleteApplicationReferenceDataSourceResponse
-> DeleteApplicationReferenceDataSourceResponse -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteApplicationReferenceDataSourceResponse
-> DeleteApplicationReferenceDataSourceResponse -> Bool
$c/= :: DeleteApplicationReferenceDataSourceResponse
-> DeleteApplicationReferenceDataSourceResponse -> Bool
== :: DeleteApplicationReferenceDataSourceResponse
-> DeleteApplicationReferenceDataSourceResponse -> Bool
$c== :: DeleteApplicationReferenceDataSourceResponse
-> DeleteApplicationReferenceDataSourceResponse -> Bool
Prelude.Eq, ReadPrec [DeleteApplicationReferenceDataSourceResponse]
ReadPrec DeleteApplicationReferenceDataSourceResponse
Int -> ReadS DeleteApplicationReferenceDataSourceResponse
ReadS [DeleteApplicationReferenceDataSourceResponse]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteApplicationReferenceDataSourceResponse]
$creadListPrec :: ReadPrec [DeleteApplicationReferenceDataSourceResponse]
readPrec :: ReadPrec DeleteApplicationReferenceDataSourceResponse
$creadPrec :: ReadPrec DeleteApplicationReferenceDataSourceResponse
readList :: ReadS [DeleteApplicationReferenceDataSourceResponse]
$creadList :: ReadS [DeleteApplicationReferenceDataSourceResponse]
readsPrec :: Int -> ReadS DeleteApplicationReferenceDataSourceResponse
$creadsPrec :: Int -> ReadS DeleteApplicationReferenceDataSourceResponse
Prelude.Read, Int -> DeleteApplicationReferenceDataSourceResponse -> ShowS
[DeleteApplicationReferenceDataSourceResponse] -> ShowS
DeleteApplicationReferenceDataSourceResponse -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteApplicationReferenceDataSourceResponse] -> ShowS
$cshowList :: [DeleteApplicationReferenceDataSourceResponse] -> ShowS
show :: DeleteApplicationReferenceDataSourceResponse -> String
$cshow :: DeleteApplicationReferenceDataSourceResponse -> String
showsPrec :: Int -> DeleteApplicationReferenceDataSourceResponse -> ShowS
$cshowsPrec :: Int -> DeleteApplicationReferenceDataSourceResponse -> ShowS
Prelude.Show, forall x.
Rep DeleteApplicationReferenceDataSourceResponse x
-> DeleteApplicationReferenceDataSourceResponse
forall x.
DeleteApplicationReferenceDataSourceResponse
-> Rep DeleteApplicationReferenceDataSourceResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep DeleteApplicationReferenceDataSourceResponse x
-> DeleteApplicationReferenceDataSourceResponse
$cfrom :: forall x.
DeleteApplicationReferenceDataSourceResponse
-> Rep DeleteApplicationReferenceDataSourceResponse x
Prelude.Generic)

-- |
-- Create a value of 'DeleteApplicationReferenceDataSourceResponse' 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:
--
-- 'applicationARN', 'deleteApplicationReferenceDataSourceResponse_applicationARN' - The application Amazon Resource Name (ARN).
--
-- 'applicationVersionId', 'deleteApplicationReferenceDataSourceResponse_applicationVersionId' - The updated version ID of the application.
--
-- 'httpStatus', 'deleteApplicationReferenceDataSourceResponse_httpStatus' - The response's http status code.
newDeleteApplicationReferenceDataSourceResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  DeleteApplicationReferenceDataSourceResponse
newDeleteApplicationReferenceDataSourceResponse :: Int -> DeleteApplicationReferenceDataSourceResponse
newDeleteApplicationReferenceDataSourceResponse
  Int
pHttpStatus_ =
    DeleteApplicationReferenceDataSourceResponse'
      { $sel:applicationARN:DeleteApplicationReferenceDataSourceResponse' :: Maybe Text
applicationARN =
          forall a. Maybe a
Prelude.Nothing,
        $sel:applicationVersionId:DeleteApplicationReferenceDataSourceResponse' :: Maybe Natural
applicationVersionId =
          forall a. Maybe a
Prelude.Nothing,
        $sel:httpStatus:DeleteApplicationReferenceDataSourceResponse' :: Int
httpStatus = Int
pHttpStatus_
      }

-- | The application Amazon Resource Name (ARN).
deleteApplicationReferenceDataSourceResponse_applicationARN :: Lens.Lens' DeleteApplicationReferenceDataSourceResponse (Prelude.Maybe Prelude.Text)
deleteApplicationReferenceDataSourceResponse_applicationARN :: Lens' DeleteApplicationReferenceDataSourceResponse (Maybe Text)
deleteApplicationReferenceDataSourceResponse_applicationARN = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteApplicationReferenceDataSourceResponse' {Maybe Text
applicationARN :: Maybe Text
$sel:applicationARN:DeleteApplicationReferenceDataSourceResponse' :: DeleteApplicationReferenceDataSourceResponse -> Maybe Text
applicationARN} -> Maybe Text
applicationARN) (\s :: DeleteApplicationReferenceDataSourceResponse
s@DeleteApplicationReferenceDataSourceResponse' {} Maybe Text
a -> DeleteApplicationReferenceDataSourceResponse
s {$sel:applicationARN:DeleteApplicationReferenceDataSourceResponse' :: Maybe Text
applicationARN = Maybe Text
a} :: DeleteApplicationReferenceDataSourceResponse)

-- | The updated version ID of the application.
deleteApplicationReferenceDataSourceResponse_applicationVersionId :: Lens.Lens' DeleteApplicationReferenceDataSourceResponse (Prelude.Maybe Prelude.Natural)
deleteApplicationReferenceDataSourceResponse_applicationVersionId :: Lens' DeleteApplicationReferenceDataSourceResponse (Maybe Natural)
deleteApplicationReferenceDataSourceResponse_applicationVersionId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteApplicationReferenceDataSourceResponse' {Maybe Natural
applicationVersionId :: Maybe Natural
$sel:applicationVersionId:DeleteApplicationReferenceDataSourceResponse' :: DeleteApplicationReferenceDataSourceResponse -> Maybe Natural
applicationVersionId} -> Maybe Natural
applicationVersionId) (\s :: DeleteApplicationReferenceDataSourceResponse
s@DeleteApplicationReferenceDataSourceResponse' {} Maybe Natural
a -> DeleteApplicationReferenceDataSourceResponse
s {$sel:applicationVersionId:DeleteApplicationReferenceDataSourceResponse' :: Maybe Natural
applicationVersionId = Maybe Natural
a} :: DeleteApplicationReferenceDataSourceResponse)

-- | The response's http status code.
deleteApplicationReferenceDataSourceResponse_httpStatus :: Lens.Lens' DeleteApplicationReferenceDataSourceResponse Prelude.Int
deleteApplicationReferenceDataSourceResponse_httpStatus :: Lens' DeleteApplicationReferenceDataSourceResponse Int
deleteApplicationReferenceDataSourceResponse_httpStatus = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteApplicationReferenceDataSourceResponse' {Int
httpStatus :: Int
$sel:httpStatus:DeleteApplicationReferenceDataSourceResponse' :: DeleteApplicationReferenceDataSourceResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: DeleteApplicationReferenceDataSourceResponse
s@DeleteApplicationReferenceDataSourceResponse' {} Int
a -> DeleteApplicationReferenceDataSourceResponse
s {$sel:httpStatus:DeleteApplicationReferenceDataSourceResponse' :: Int
httpStatus = Int
a} :: DeleteApplicationReferenceDataSourceResponse)

instance
  Prelude.NFData
    DeleteApplicationReferenceDataSourceResponse
  where
  rnf :: DeleteApplicationReferenceDataSourceResponse -> ()
rnf DeleteApplicationReferenceDataSourceResponse' {Int
Maybe Natural
Maybe Text
httpStatus :: Int
applicationVersionId :: Maybe Natural
applicationARN :: Maybe Text
$sel:httpStatus:DeleteApplicationReferenceDataSourceResponse' :: DeleteApplicationReferenceDataSourceResponse -> Int
$sel:applicationVersionId:DeleteApplicationReferenceDataSourceResponse' :: DeleteApplicationReferenceDataSourceResponse -> Maybe Natural
$sel:applicationARN:DeleteApplicationReferenceDataSourceResponse' :: DeleteApplicationReferenceDataSourceResponse -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
applicationARN
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Natural
applicationVersionId
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Int
httpStatus