{-# 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.IoTWireless.GetDeviceProfile -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Gets information about a device profile. module Amazonka.IoTWireless.GetDeviceProfile ( -- * Creating a Request GetDeviceProfile (..), newGetDeviceProfile, -- * Request Lenses getDeviceProfile_id, -- * Destructuring the Response GetDeviceProfileResponse (..), newGetDeviceProfileResponse, -- * Response Lenses getDeviceProfileResponse_arn, getDeviceProfileResponse_id, getDeviceProfileResponse_loRaWAN, getDeviceProfileResponse_name, getDeviceProfileResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.IoTWireless.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newGetDeviceProfile' smart constructor. data GetDeviceProfile = GetDeviceProfile' { -- | The ID of the resource to get. id :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetDeviceProfile' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'id', 'getDeviceProfile_id' - The ID of the resource to get. newGetDeviceProfile :: -- | 'id' Prelude.Text -> GetDeviceProfile newGetDeviceProfile pId_ = GetDeviceProfile' {id = pId_} -- | The ID of the resource to get. getDeviceProfile_id :: Lens.Lens' GetDeviceProfile Prelude.Text getDeviceProfile_id = Lens.lens (\GetDeviceProfile' {id} -> id) (\s@GetDeviceProfile' {} a -> s {id = a} :: GetDeviceProfile) instance Core.AWSRequest GetDeviceProfile where type AWSResponse GetDeviceProfile = GetDeviceProfileResponse request overrides = Request.get (overrides defaultService) response = Response.receiveJSON ( \s h x -> GetDeviceProfileResponse' Prelude.<$> (x Data..?> "Arn") Prelude.<*> (x Data..?> "Id") Prelude.<*> (x Data..?> "LoRaWAN") Prelude.<*> (x Data..?> "Name") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable GetDeviceProfile where hashWithSalt _salt GetDeviceProfile' {..} = _salt `Prelude.hashWithSalt` id instance Prelude.NFData GetDeviceProfile where rnf GetDeviceProfile' {..} = Prelude.rnf id instance Data.ToHeaders GetDeviceProfile where toHeaders = Prelude.const Prelude.mempty instance Data.ToPath GetDeviceProfile where toPath GetDeviceProfile' {..} = Prelude.mconcat ["/device-profiles/", Data.toBS id] instance Data.ToQuery GetDeviceProfile where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newGetDeviceProfileResponse' smart constructor. data GetDeviceProfileResponse = GetDeviceProfileResponse' { -- | The Amazon Resource Name of the resource. arn :: Prelude.Maybe Prelude.Text, -- | The ID of the device profile. id :: Prelude.Maybe Prelude.Text, -- | Information about the device profile. loRaWAN :: Prelude.Maybe LoRaWANDeviceProfile, -- | The name of the resource. name :: Prelude.Maybe Prelude.Text, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetDeviceProfileResponse' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'arn', 'getDeviceProfileResponse_arn' - The Amazon Resource Name of the resource. -- -- 'id', 'getDeviceProfileResponse_id' - The ID of the device profile. -- -- 'loRaWAN', 'getDeviceProfileResponse_loRaWAN' - Information about the device profile. -- -- 'name', 'getDeviceProfileResponse_name' - The name of the resource. -- -- 'httpStatus', 'getDeviceProfileResponse_httpStatus' - The response's http status code. newGetDeviceProfileResponse :: -- | 'httpStatus' Prelude.Int -> GetDeviceProfileResponse newGetDeviceProfileResponse pHttpStatus_ = GetDeviceProfileResponse' { arn = Prelude.Nothing, id = Prelude.Nothing, loRaWAN = Prelude.Nothing, name = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | The Amazon Resource Name of the resource. getDeviceProfileResponse_arn :: Lens.Lens' GetDeviceProfileResponse (Prelude.Maybe Prelude.Text) getDeviceProfileResponse_arn = Lens.lens (\GetDeviceProfileResponse' {arn} -> arn) (\s@GetDeviceProfileResponse' {} a -> s {arn = a} :: GetDeviceProfileResponse) -- | The ID of the device profile. getDeviceProfileResponse_id :: Lens.Lens' GetDeviceProfileResponse (Prelude.Maybe Prelude.Text) getDeviceProfileResponse_id = Lens.lens (\GetDeviceProfileResponse' {id} -> id) (\s@GetDeviceProfileResponse' {} a -> s {id = a} :: GetDeviceProfileResponse) -- | Information about the device profile. getDeviceProfileResponse_loRaWAN :: Lens.Lens' GetDeviceProfileResponse (Prelude.Maybe LoRaWANDeviceProfile) getDeviceProfileResponse_loRaWAN = Lens.lens (\GetDeviceProfileResponse' {loRaWAN} -> loRaWAN) (\s@GetDeviceProfileResponse' {} a -> s {loRaWAN = a} :: GetDeviceProfileResponse) -- | The name of the resource. getDeviceProfileResponse_name :: Lens.Lens' GetDeviceProfileResponse (Prelude.Maybe Prelude.Text) getDeviceProfileResponse_name = Lens.lens (\GetDeviceProfileResponse' {name} -> name) (\s@GetDeviceProfileResponse' {} a -> s {name = a} :: GetDeviceProfileResponse) -- | The response's http status code. getDeviceProfileResponse_httpStatus :: Lens.Lens' GetDeviceProfileResponse Prelude.Int getDeviceProfileResponse_httpStatus = Lens.lens (\GetDeviceProfileResponse' {httpStatus} -> httpStatus) (\s@GetDeviceProfileResponse' {} a -> s {httpStatus = a} :: GetDeviceProfileResponse) instance Prelude.NFData GetDeviceProfileResponse where rnf GetDeviceProfileResponse' {..} = Prelude.rnf arn `Prelude.seq` Prelude.rnf id `Prelude.seq` Prelude.rnf loRaWAN `Prelude.seq` Prelude.rnf name `Prelude.seq` Prelude.rnf httpStatus