{-# 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.SageMaker.DeleteAssociation
-- 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 an association.
module Amazonka.SageMaker.DeleteAssociation
  ( -- * Creating a Request
    DeleteAssociation (..),
    newDeleteAssociation,

    -- * Request Lenses
    deleteAssociation_sourceArn,
    deleteAssociation_destinationArn,

    -- * Destructuring the Response
    DeleteAssociationResponse (..),
    newDeleteAssociationResponse,

    -- * Response Lenses
    deleteAssociationResponse_destinationArn,
    deleteAssociationResponse_sourceArn,
    deleteAssociationResponse_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.SageMaker.Types

-- | /See:/ 'newDeleteAssociation' smart constructor.
data DeleteAssociation = DeleteAssociation'
  { -- | The ARN of the source.
    DeleteAssociation -> Text
sourceArn :: Prelude.Text,
    -- | The Amazon Resource Name (ARN) of the destination.
    DeleteAssociation -> Text
destinationArn :: Prelude.Text
  }
  deriving (DeleteAssociation -> DeleteAssociation -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteAssociation -> DeleteAssociation -> Bool
$c/= :: DeleteAssociation -> DeleteAssociation -> Bool
== :: DeleteAssociation -> DeleteAssociation -> Bool
$c== :: DeleteAssociation -> DeleteAssociation -> Bool
Prelude.Eq, ReadPrec [DeleteAssociation]
ReadPrec DeleteAssociation
Int -> ReadS DeleteAssociation
ReadS [DeleteAssociation]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteAssociation]
$creadListPrec :: ReadPrec [DeleteAssociation]
readPrec :: ReadPrec DeleteAssociation
$creadPrec :: ReadPrec DeleteAssociation
readList :: ReadS [DeleteAssociation]
$creadList :: ReadS [DeleteAssociation]
readsPrec :: Int -> ReadS DeleteAssociation
$creadsPrec :: Int -> ReadS DeleteAssociation
Prelude.Read, Int -> DeleteAssociation -> ShowS
[DeleteAssociation] -> ShowS
DeleteAssociation -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteAssociation] -> ShowS
$cshowList :: [DeleteAssociation] -> ShowS
show :: DeleteAssociation -> String
$cshow :: DeleteAssociation -> String
showsPrec :: Int -> DeleteAssociation -> ShowS
$cshowsPrec :: Int -> DeleteAssociation -> ShowS
Prelude.Show, forall x. Rep DeleteAssociation x -> DeleteAssociation
forall x. DeleteAssociation -> Rep DeleteAssociation x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteAssociation x -> DeleteAssociation
$cfrom :: forall x. DeleteAssociation -> Rep DeleteAssociation x
Prelude.Generic)

-- |
-- Create a value of 'DeleteAssociation' 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:
--
-- 'sourceArn', 'deleteAssociation_sourceArn' - The ARN of the source.
--
-- 'destinationArn', 'deleteAssociation_destinationArn' - The Amazon Resource Name (ARN) of the destination.
newDeleteAssociation ::
  -- | 'sourceArn'
  Prelude.Text ->
  -- | 'destinationArn'
  Prelude.Text ->
  DeleteAssociation
newDeleteAssociation :: Text -> Text -> DeleteAssociation
newDeleteAssociation Text
pSourceArn_ Text
pDestinationArn_ =
  DeleteAssociation'
    { $sel:sourceArn:DeleteAssociation' :: Text
sourceArn = Text
pSourceArn_,
      $sel:destinationArn:DeleteAssociation' :: Text
destinationArn = Text
pDestinationArn_
    }

-- | The ARN of the source.
deleteAssociation_sourceArn :: Lens.Lens' DeleteAssociation Prelude.Text
deleteAssociation_sourceArn :: Lens' DeleteAssociation Text
deleteAssociation_sourceArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteAssociation' {Text
sourceArn :: Text
$sel:sourceArn:DeleteAssociation' :: DeleteAssociation -> Text
sourceArn} -> Text
sourceArn) (\s :: DeleteAssociation
s@DeleteAssociation' {} Text
a -> DeleteAssociation
s {$sel:sourceArn:DeleteAssociation' :: Text
sourceArn = Text
a} :: DeleteAssociation)

-- | The Amazon Resource Name (ARN) of the destination.
deleteAssociation_destinationArn :: Lens.Lens' DeleteAssociation Prelude.Text
deleteAssociation_destinationArn :: Lens' DeleteAssociation Text
deleteAssociation_destinationArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteAssociation' {Text
destinationArn :: Text
$sel:destinationArn:DeleteAssociation' :: DeleteAssociation -> Text
destinationArn} -> Text
destinationArn) (\s :: DeleteAssociation
s@DeleteAssociation' {} Text
a -> DeleteAssociation
s {$sel:destinationArn:DeleteAssociation' :: Text
destinationArn = Text
a} :: DeleteAssociation)

instance Core.AWSRequest DeleteAssociation where
  type
    AWSResponse DeleteAssociation =
      DeleteAssociationResponse
  request :: (Service -> Service)
-> DeleteAssociation -> Request DeleteAssociation
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 DeleteAssociation
-> ClientResponse ClientBody
-> m (Either
        Error (ClientResponse (AWSResponse DeleteAssociation)))
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 Text -> Int -> DeleteAssociationResponse
DeleteAssociationResponse'
            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
"DestinationArn")
            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
"SourceArn")
            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 DeleteAssociation where
  hashWithSalt :: Int -> DeleteAssociation -> Int
hashWithSalt Int
_salt DeleteAssociation' {Text
destinationArn :: Text
sourceArn :: Text
$sel:destinationArn:DeleteAssociation' :: DeleteAssociation -> Text
$sel:sourceArn:DeleteAssociation' :: DeleteAssociation -> Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
sourceArn
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
destinationArn

instance Prelude.NFData DeleteAssociation where
  rnf :: DeleteAssociation -> ()
rnf DeleteAssociation' {Text
destinationArn :: Text
sourceArn :: Text
$sel:destinationArn:DeleteAssociation' :: DeleteAssociation -> Text
$sel:sourceArn:DeleteAssociation' :: DeleteAssociation -> Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Text
sourceArn
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
destinationArn

instance Data.ToHeaders DeleteAssociation where
  toHeaders :: DeleteAssociation -> 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
"SageMaker.DeleteAssociation" ::
                          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 DeleteAssociation where
  toJSON :: DeleteAssociation -> Value
toJSON DeleteAssociation' {Text
destinationArn :: Text
sourceArn :: Text
$sel:destinationArn:DeleteAssociation' :: DeleteAssociation -> Text
$sel:sourceArn:DeleteAssociation' :: DeleteAssociation -> Text
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ forall a. a -> Maybe a
Prelude.Just (Key
"SourceArn" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= Text
sourceArn),
            forall a. a -> Maybe a
Prelude.Just
              (Key
"DestinationArn" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= Text
destinationArn)
          ]
      )

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

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

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

-- |
-- Create a value of 'DeleteAssociationResponse' 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:
--
-- 'destinationArn', 'deleteAssociationResponse_destinationArn' - The Amazon Resource Name (ARN) of the destination.
--
-- 'sourceArn', 'deleteAssociationResponse_sourceArn' - The ARN of the source.
--
-- 'httpStatus', 'deleteAssociationResponse_httpStatus' - The response's http status code.
newDeleteAssociationResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  DeleteAssociationResponse
newDeleteAssociationResponse :: Int -> DeleteAssociationResponse
newDeleteAssociationResponse Int
pHttpStatus_ =
  DeleteAssociationResponse'
    { $sel:destinationArn:DeleteAssociationResponse' :: Maybe Text
destinationArn =
        forall a. Maybe a
Prelude.Nothing,
      $sel:sourceArn:DeleteAssociationResponse' :: Maybe Text
sourceArn = forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:DeleteAssociationResponse' :: Int
httpStatus = Int
pHttpStatus_
    }

-- | The Amazon Resource Name (ARN) of the destination.
deleteAssociationResponse_destinationArn :: Lens.Lens' DeleteAssociationResponse (Prelude.Maybe Prelude.Text)
deleteAssociationResponse_destinationArn :: Lens' DeleteAssociationResponse (Maybe Text)
deleteAssociationResponse_destinationArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteAssociationResponse' {Maybe Text
destinationArn :: Maybe Text
$sel:destinationArn:DeleteAssociationResponse' :: DeleteAssociationResponse -> Maybe Text
destinationArn} -> Maybe Text
destinationArn) (\s :: DeleteAssociationResponse
s@DeleteAssociationResponse' {} Maybe Text
a -> DeleteAssociationResponse
s {$sel:destinationArn:DeleteAssociationResponse' :: Maybe Text
destinationArn = Maybe Text
a} :: DeleteAssociationResponse)

-- | The ARN of the source.
deleteAssociationResponse_sourceArn :: Lens.Lens' DeleteAssociationResponse (Prelude.Maybe Prelude.Text)
deleteAssociationResponse_sourceArn :: Lens' DeleteAssociationResponse (Maybe Text)
deleteAssociationResponse_sourceArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteAssociationResponse' {Maybe Text
sourceArn :: Maybe Text
$sel:sourceArn:DeleteAssociationResponse' :: DeleteAssociationResponse -> Maybe Text
sourceArn} -> Maybe Text
sourceArn) (\s :: DeleteAssociationResponse
s@DeleteAssociationResponse' {} Maybe Text
a -> DeleteAssociationResponse
s {$sel:sourceArn:DeleteAssociationResponse' :: Maybe Text
sourceArn = Maybe Text
a} :: DeleteAssociationResponse)

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

instance Prelude.NFData DeleteAssociationResponse where
  rnf :: DeleteAssociationResponse -> ()
rnf DeleteAssociationResponse' {Int
Maybe Text
httpStatus :: Int
sourceArn :: Maybe Text
destinationArn :: Maybe Text
$sel:httpStatus:DeleteAssociationResponse' :: DeleteAssociationResponse -> Int
$sel:sourceArn:DeleteAssociationResponse' :: DeleteAssociationResponse -> Maybe Text
$sel:destinationArn:DeleteAssociationResponse' :: DeleteAssociationResponse -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
destinationArn
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
sourceArn
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Int
httpStatus