{-# 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.CodeStarConnections.GetConnection
-- 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 connection ARN and details such as status, owner, and
-- provider type.
module Amazonka.CodeStarConnections.GetConnection
( -- * Creating a Request
GetConnection (..),
newGetConnection,
-- * Request Lenses
getConnection_connectionArn,
-- * Destructuring the Response
GetConnectionResponse (..),
newGetConnectionResponse,
-- * Response Lenses
getConnectionResponse_connection,
getConnectionResponse_httpStatus,
)
where
import Amazonka.CodeStarConnections.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:/ 'newGetConnection' smart constructor.
data GetConnection = GetConnection'
{ -- | The Amazon Resource Name (ARN) of a connection.
connectionArn :: Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'GetConnection' 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:
--
-- 'connectionArn', 'getConnection_connectionArn' - The Amazon Resource Name (ARN) of a connection.
newGetConnection ::
-- | 'connectionArn'
Prelude.Text ->
GetConnection
newGetConnection pConnectionArn_ =
GetConnection' {connectionArn = pConnectionArn_}
-- | The Amazon Resource Name (ARN) of a connection.
getConnection_connectionArn :: Lens.Lens' GetConnection Prelude.Text
getConnection_connectionArn = Lens.lens (\GetConnection' {connectionArn} -> connectionArn) (\s@GetConnection' {} a -> s {connectionArn = a} :: GetConnection)
instance Core.AWSRequest GetConnection where
type
AWSResponse GetConnection =
GetConnectionResponse
request overrides =
Request.postJSON (overrides defaultService)
response =
Response.receiveJSON
( \s h x ->
GetConnectionResponse'
Prelude.<$> (x Data..?> "Connection")
Prelude.<*> (Prelude.pure (Prelude.fromEnum s))
)
instance Prelude.Hashable GetConnection where
hashWithSalt _salt GetConnection' {..} =
_salt `Prelude.hashWithSalt` connectionArn
instance Prelude.NFData GetConnection where
rnf GetConnection' {..} = Prelude.rnf connectionArn
instance Data.ToHeaders GetConnection where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "X-Amz-Target"
Data.=# ( "com.amazonaws.codestar.connections.CodeStar_connections_20191201.GetConnection" ::
Prelude.ByteString
),
"Content-Type"
Data.=# ( "application/x-amz-json-1.0" ::
Prelude.ByteString
)
]
)
instance Data.ToJSON GetConnection where
toJSON GetConnection' {..} =
Data.object
( Prelude.catMaybes
[ Prelude.Just
("ConnectionArn" Data..= connectionArn)
]
)
instance Data.ToPath GetConnection where
toPath = Prelude.const "/"
instance Data.ToQuery GetConnection where
toQuery = Prelude.const Prelude.mempty
-- | /See:/ 'newGetConnectionResponse' smart constructor.
data GetConnectionResponse = GetConnectionResponse'
{ -- | The connection details, such as status, owner, and provider type.
connection :: Prelude.Maybe Connection,
-- | The response's http status code.
httpStatus :: Prelude.Int
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'GetConnectionResponse' 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:
--
-- 'connection', 'getConnectionResponse_connection' - The connection details, such as status, owner, and provider type.
--
-- 'httpStatus', 'getConnectionResponse_httpStatus' - The response's http status code.
newGetConnectionResponse ::
-- | 'httpStatus'
Prelude.Int ->
GetConnectionResponse
newGetConnectionResponse pHttpStatus_ =
GetConnectionResponse'
{ connection =
Prelude.Nothing,
httpStatus = pHttpStatus_
}
-- | The connection details, such as status, owner, and provider type.
getConnectionResponse_connection :: Lens.Lens' GetConnectionResponse (Prelude.Maybe Connection)
getConnectionResponse_connection = Lens.lens (\GetConnectionResponse' {connection} -> connection) (\s@GetConnectionResponse' {} a -> s {connection = a} :: GetConnectionResponse)
-- | The response's http status code.
getConnectionResponse_httpStatus :: Lens.Lens' GetConnectionResponse Prelude.Int
getConnectionResponse_httpStatus = Lens.lens (\GetConnectionResponse' {httpStatus} -> httpStatus) (\s@GetConnectionResponse' {} a -> s {httpStatus = a} :: GetConnectionResponse)
instance Prelude.NFData GetConnectionResponse where
rnf GetConnectionResponse' {..} =
Prelude.rnf connection
`Prelude.seq` Prelude.rnf httpStatus