{-# 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.CreateDeviceProfile -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Creates a new device profile. module Amazonka.IoTWireless.CreateDeviceProfile ( -- * Creating a Request CreateDeviceProfile (..), newCreateDeviceProfile, -- * Request Lenses createDeviceProfile_clientRequestToken, createDeviceProfile_loRaWAN, createDeviceProfile_name, createDeviceProfile_tags, -- * Destructuring the Response CreateDeviceProfileResponse (..), newCreateDeviceProfileResponse, -- * Response Lenses createDeviceProfileResponse_arn, createDeviceProfileResponse_id, createDeviceProfileResponse_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:/ 'newCreateDeviceProfile' smart constructor. data CreateDeviceProfile = CreateDeviceProfile' { -- | Each resource must have a unique client request token. If you try to -- create a new resource with the same token as a resource that already -- exists, an exception occurs. If you omit this value, AWS SDKs will -- automatically generate a unique client request. clientRequestToken :: Prelude.Maybe Prelude.Text, -- | The device profile information to use to create the device profile. loRaWAN :: Prelude.Maybe LoRaWANDeviceProfile, -- | The name of the new resource. name :: Prelude.Maybe Prelude.Text, -- | The tags to attach to the new device profile. Tags are metadata that you -- can use to manage a resource. tags :: Prelude.Maybe [Tag] } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'CreateDeviceProfile' 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: -- -- 'clientRequestToken', 'createDeviceProfile_clientRequestToken' - Each resource must have a unique client request token. If you try to -- create a new resource with the same token as a resource that already -- exists, an exception occurs. If you omit this value, AWS SDKs will -- automatically generate a unique client request. -- -- 'loRaWAN', 'createDeviceProfile_loRaWAN' - The device profile information to use to create the device profile. -- -- 'name', 'createDeviceProfile_name' - The name of the new resource. -- -- 'tags', 'createDeviceProfile_tags' - The tags to attach to the new device profile. Tags are metadata that you -- can use to manage a resource. newCreateDeviceProfile :: CreateDeviceProfile newCreateDeviceProfile = CreateDeviceProfile' { clientRequestToken = Prelude.Nothing, loRaWAN = Prelude.Nothing, name = Prelude.Nothing, tags = Prelude.Nothing } -- | Each resource must have a unique client request token. If you try to -- create a new resource with the same token as a resource that already -- exists, an exception occurs. If you omit this value, AWS SDKs will -- automatically generate a unique client request. createDeviceProfile_clientRequestToken :: Lens.Lens' CreateDeviceProfile (Prelude.Maybe Prelude.Text) createDeviceProfile_clientRequestToken = Lens.lens (\CreateDeviceProfile' {clientRequestToken} -> clientRequestToken) (\s@CreateDeviceProfile' {} a -> s {clientRequestToken = a} :: CreateDeviceProfile) -- | The device profile information to use to create the device profile. createDeviceProfile_loRaWAN :: Lens.Lens' CreateDeviceProfile (Prelude.Maybe LoRaWANDeviceProfile) createDeviceProfile_loRaWAN = Lens.lens (\CreateDeviceProfile' {loRaWAN} -> loRaWAN) (\s@CreateDeviceProfile' {} a -> s {loRaWAN = a} :: CreateDeviceProfile) -- | The name of the new resource. createDeviceProfile_name :: Lens.Lens' CreateDeviceProfile (Prelude.Maybe Prelude.Text) createDeviceProfile_name = Lens.lens (\CreateDeviceProfile' {name} -> name) (\s@CreateDeviceProfile' {} a -> s {name = a} :: CreateDeviceProfile) -- | The tags to attach to the new device profile. Tags are metadata that you -- can use to manage a resource. createDeviceProfile_tags :: Lens.Lens' CreateDeviceProfile (Prelude.Maybe [Tag]) createDeviceProfile_tags = Lens.lens (\CreateDeviceProfile' {tags} -> tags) (\s@CreateDeviceProfile' {} a -> s {tags = a} :: CreateDeviceProfile) Prelude.. Lens.mapping Lens.coerced instance Core.AWSRequest CreateDeviceProfile where type AWSResponse CreateDeviceProfile = CreateDeviceProfileResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> CreateDeviceProfileResponse' Prelude.<$> (x Data..?> "Arn") Prelude.<*> (x Data..?> "Id") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable CreateDeviceProfile where hashWithSalt _salt CreateDeviceProfile' {..} = _salt `Prelude.hashWithSalt` clientRequestToken `Prelude.hashWithSalt` loRaWAN `Prelude.hashWithSalt` name `Prelude.hashWithSalt` tags instance Prelude.NFData CreateDeviceProfile where rnf CreateDeviceProfile' {..} = Prelude.rnf clientRequestToken `Prelude.seq` Prelude.rnf loRaWAN `Prelude.seq` Prelude.rnf name `Prelude.seq` Prelude.rnf tags instance Data.ToHeaders CreateDeviceProfile where toHeaders = Prelude.const Prelude.mempty instance Data.ToJSON CreateDeviceProfile where toJSON CreateDeviceProfile' {..} = Data.object ( Prelude.catMaybes [ ("ClientRequestToken" Data..=) Prelude.<$> clientRequestToken, ("LoRaWAN" Data..=) Prelude.<$> loRaWAN, ("Name" Data..=) Prelude.<$> name, ("Tags" Data..=) Prelude.<$> tags ] ) instance Data.ToPath CreateDeviceProfile where toPath = Prelude.const "/device-profiles" instance Data.ToQuery CreateDeviceProfile where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newCreateDeviceProfileResponse' smart constructor. data CreateDeviceProfileResponse = CreateDeviceProfileResponse' { -- | The Amazon Resource Name of the new resource. arn :: Prelude.Maybe Prelude.Text, -- | The ID of the new device profile. id :: 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 'CreateDeviceProfileResponse' 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', 'createDeviceProfileResponse_arn' - The Amazon Resource Name of the new resource. -- -- 'id', 'createDeviceProfileResponse_id' - The ID of the new device profile. -- -- 'httpStatus', 'createDeviceProfileResponse_httpStatus' - The response's http status code. newCreateDeviceProfileResponse :: -- | 'httpStatus' Prelude.Int -> CreateDeviceProfileResponse newCreateDeviceProfileResponse pHttpStatus_ = CreateDeviceProfileResponse' { arn = Prelude.Nothing, id = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | The Amazon Resource Name of the new resource. createDeviceProfileResponse_arn :: Lens.Lens' CreateDeviceProfileResponse (Prelude.Maybe Prelude.Text) createDeviceProfileResponse_arn = Lens.lens (\CreateDeviceProfileResponse' {arn} -> arn) (\s@CreateDeviceProfileResponse' {} a -> s {arn = a} :: CreateDeviceProfileResponse) -- | The ID of the new device profile. createDeviceProfileResponse_id :: Lens.Lens' CreateDeviceProfileResponse (Prelude.Maybe Prelude.Text) createDeviceProfileResponse_id = Lens.lens (\CreateDeviceProfileResponse' {id} -> id) (\s@CreateDeviceProfileResponse' {} a -> s {id = a} :: CreateDeviceProfileResponse) -- | The response's http status code. createDeviceProfileResponse_httpStatus :: Lens.Lens' CreateDeviceProfileResponse Prelude.Int createDeviceProfileResponse_httpStatus = Lens.lens (\CreateDeviceProfileResponse' {httpStatus} -> httpStatus) (\s@CreateDeviceProfileResponse' {} a -> s {httpStatus = a} :: CreateDeviceProfileResponse) instance Prelude.NFData CreateDeviceProfileResponse where rnf CreateDeviceProfileResponse' {..} = Prelude.rnf arn `Prelude.seq` Prelude.rnf id `Prelude.seq` Prelude.rnf httpStatus