{-# 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.DeviceFarm.GetInstanceProfile
-- 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 information about the specified instance profile.
module Amazonka.DeviceFarm.GetInstanceProfile
  ( -- * Creating a Request
    GetInstanceProfile (..),
    newGetInstanceProfile,

    -- * Request Lenses
    getInstanceProfile_arn,

    -- * Destructuring the Response
    GetInstanceProfileResponse (..),
    newGetInstanceProfileResponse,

    -- * Response Lenses
    getInstanceProfileResponse_instanceProfile,
    getInstanceProfileResponse_httpStatus,
  )
where

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

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

-- |
-- Create a value of 'GetInstanceProfile' 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:
--
-- 'arn', 'getInstanceProfile_arn' - The Amazon Resource Name (ARN) of an instance profile.
newGetInstanceProfile ::
  -- | 'arn'
  Prelude.Text ->
  GetInstanceProfile
newGetInstanceProfile :: Text -> GetInstanceProfile
newGetInstanceProfile Text
pArn_ =
  GetInstanceProfile' {$sel:arn:GetInstanceProfile' :: Text
arn = Text
pArn_}

-- | The Amazon Resource Name (ARN) of an instance profile.
getInstanceProfile_arn :: Lens.Lens' GetInstanceProfile Prelude.Text
getInstanceProfile_arn :: Lens' GetInstanceProfile Text
getInstanceProfile_arn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetInstanceProfile' {Text
arn :: Text
$sel:arn:GetInstanceProfile' :: GetInstanceProfile -> Text
arn} -> Text
arn) (\s :: GetInstanceProfile
s@GetInstanceProfile' {} Text
a -> GetInstanceProfile
s {$sel:arn:GetInstanceProfile' :: Text
arn = Text
a} :: GetInstanceProfile)

instance Core.AWSRequest GetInstanceProfile where
  type
    AWSResponse GetInstanceProfile =
      GetInstanceProfileResponse
  request :: (Service -> Service)
-> GetInstanceProfile -> Request GetInstanceProfile
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 GetInstanceProfile
-> ClientResponse ClientBody
-> m (Either
        Error (ClientResponse (AWSResponse GetInstanceProfile)))
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 InstanceProfile -> Int -> GetInstanceProfileResponse
GetInstanceProfileResponse'
            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
"instanceProfile")
            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 GetInstanceProfile where
  hashWithSalt :: Int -> GetInstanceProfile -> Int
hashWithSalt Int
_salt GetInstanceProfile' {Text
arn :: Text
$sel:arn:GetInstanceProfile' :: GetInstanceProfile -> Text
..} =
    Int
_salt forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
arn

instance Prelude.NFData GetInstanceProfile where
  rnf :: GetInstanceProfile -> ()
rnf GetInstanceProfile' {Text
arn :: Text
$sel:arn:GetInstanceProfile' :: GetInstanceProfile -> Text
..} = forall a. NFData a => a -> ()
Prelude.rnf Text
arn

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

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

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

-- | /See:/ 'newGetInstanceProfileResponse' smart constructor.
data GetInstanceProfileResponse = GetInstanceProfileResponse'
  { -- | An object that contains information about an instance profile.
    GetInstanceProfileResponse -> Maybe InstanceProfile
instanceProfile :: Prelude.Maybe InstanceProfile,
    -- | The response's http status code.
    GetInstanceProfileResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (GetInstanceProfileResponse -> GetInstanceProfileResponse -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GetInstanceProfileResponse -> GetInstanceProfileResponse -> Bool
$c/= :: GetInstanceProfileResponse -> GetInstanceProfileResponse -> Bool
== :: GetInstanceProfileResponse -> GetInstanceProfileResponse -> Bool
$c== :: GetInstanceProfileResponse -> GetInstanceProfileResponse -> Bool
Prelude.Eq, ReadPrec [GetInstanceProfileResponse]
ReadPrec GetInstanceProfileResponse
Int -> ReadS GetInstanceProfileResponse
ReadS [GetInstanceProfileResponse]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [GetInstanceProfileResponse]
$creadListPrec :: ReadPrec [GetInstanceProfileResponse]
readPrec :: ReadPrec GetInstanceProfileResponse
$creadPrec :: ReadPrec GetInstanceProfileResponse
readList :: ReadS [GetInstanceProfileResponse]
$creadList :: ReadS [GetInstanceProfileResponse]
readsPrec :: Int -> ReadS GetInstanceProfileResponse
$creadsPrec :: Int -> ReadS GetInstanceProfileResponse
Prelude.Read, Int -> GetInstanceProfileResponse -> ShowS
[GetInstanceProfileResponse] -> ShowS
GetInstanceProfileResponse -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [GetInstanceProfileResponse] -> ShowS
$cshowList :: [GetInstanceProfileResponse] -> ShowS
show :: GetInstanceProfileResponse -> String
$cshow :: GetInstanceProfileResponse -> String
showsPrec :: Int -> GetInstanceProfileResponse -> ShowS
$cshowsPrec :: Int -> GetInstanceProfileResponse -> ShowS
Prelude.Show, forall x.
Rep GetInstanceProfileResponse x -> GetInstanceProfileResponse
forall x.
GetInstanceProfileResponse -> Rep GetInstanceProfileResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep GetInstanceProfileResponse x -> GetInstanceProfileResponse
$cfrom :: forall x.
GetInstanceProfileResponse -> Rep GetInstanceProfileResponse x
Prelude.Generic)

-- |
-- Create a value of 'GetInstanceProfileResponse' 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:
--
-- 'instanceProfile', 'getInstanceProfileResponse_instanceProfile' - An object that contains information about an instance profile.
--
-- 'httpStatus', 'getInstanceProfileResponse_httpStatus' - The response's http status code.
newGetInstanceProfileResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  GetInstanceProfileResponse
newGetInstanceProfileResponse :: Int -> GetInstanceProfileResponse
newGetInstanceProfileResponse Int
pHttpStatus_ =
  GetInstanceProfileResponse'
    { $sel:instanceProfile:GetInstanceProfileResponse' :: Maybe InstanceProfile
instanceProfile =
        forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:GetInstanceProfileResponse' :: Int
httpStatus = Int
pHttpStatus_
    }

-- | An object that contains information about an instance profile.
getInstanceProfileResponse_instanceProfile :: Lens.Lens' GetInstanceProfileResponse (Prelude.Maybe InstanceProfile)
getInstanceProfileResponse_instanceProfile :: Lens' GetInstanceProfileResponse (Maybe InstanceProfile)
getInstanceProfileResponse_instanceProfile = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetInstanceProfileResponse' {Maybe InstanceProfile
instanceProfile :: Maybe InstanceProfile
$sel:instanceProfile:GetInstanceProfileResponse' :: GetInstanceProfileResponse -> Maybe InstanceProfile
instanceProfile} -> Maybe InstanceProfile
instanceProfile) (\s :: GetInstanceProfileResponse
s@GetInstanceProfileResponse' {} Maybe InstanceProfile
a -> GetInstanceProfileResponse
s {$sel:instanceProfile:GetInstanceProfileResponse' :: Maybe InstanceProfile
instanceProfile = Maybe InstanceProfile
a} :: GetInstanceProfileResponse)

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

instance Prelude.NFData GetInstanceProfileResponse where
  rnf :: GetInstanceProfileResponse -> ()
rnf GetInstanceProfileResponse' {Int
Maybe InstanceProfile
httpStatus :: Int
instanceProfile :: Maybe InstanceProfile
$sel:httpStatus:GetInstanceProfileResponse' :: GetInstanceProfileResponse -> Int
$sel:instanceProfile:GetInstanceProfileResponse' :: GetInstanceProfileResponse -> Maybe InstanceProfile
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe InstanceProfile
instanceProfile
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Int
httpStatus