{-# 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.SESV2.CreateContactList -- 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 contact list. module Amazonka.SESV2.CreateContactList ( -- * Creating a Request CreateContactList (..), newCreateContactList, -- * Request Lenses createContactList_description, createContactList_tags, createContactList_topics, createContactList_contactListName, -- * Destructuring the Response CreateContactListResponse (..), newCreateContactListResponse, -- * Response Lenses createContactListResponse_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.SESV2.Types -- | /See:/ 'newCreateContactList' smart constructor. data CreateContactList = CreateContactList' { -- | A description of what the contact list is about. description :: Prelude.Maybe Prelude.Text, -- | The tags associated with a contact list. tags :: Prelude.Maybe [Tag], -- | An interest group, theme, or label within a list. A contact list can -- have multiple topics. topics :: Prelude.Maybe [Topic], -- | The name of the contact list. contactListName :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'CreateContactList' 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: -- -- 'description', 'createContactList_description' - A description of what the contact list is about. -- -- 'tags', 'createContactList_tags' - The tags associated with a contact list. -- -- 'topics', 'createContactList_topics' - An interest group, theme, or label within a list. A contact list can -- have multiple topics. -- -- 'contactListName', 'createContactList_contactListName' - The name of the contact list. newCreateContactList :: -- | 'contactListName' Prelude.Text -> CreateContactList newCreateContactList pContactListName_ = CreateContactList' { description = Prelude.Nothing, tags = Prelude.Nothing, topics = Prelude.Nothing, contactListName = pContactListName_ } -- | A description of what the contact list is about. createContactList_description :: Lens.Lens' CreateContactList (Prelude.Maybe Prelude.Text) createContactList_description = Lens.lens (\CreateContactList' {description} -> description) (\s@CreateContactList' {} a -> s {description = a} :: CreateContactList) -- | The tags associated with a contact list. createContactList_tags :: Lens.Lens' CreateContactList (Prelude.Maybe [Tag]) createContactList_tags = Lens.lens (\CreateContactList' {tags} -> tags) (\s@CreateContactList' {} a -> s {tags = a} :: CreateContactList) Prelude.. Lens.mapping Lens.coerced -- | An interest group, theme, or label within a list. A contact list can -- have multiple topics. createContactList_topics :: Lens.Lens' CreateContactList (Prelude.Maybe [Topic]) createContactList_topics = Lens.lens (\CreateContactList' {topics} -> topics) (\s@CreateContactList' {} a -> s {topics = a} :: CreateContactList) Prelude.. Lens.mapping Lens.coerced -- | The name of the contact list. createContactList_contactListName :: Lens.Lens' CreateContactList Prelude.Text createContactList_contactListName = Lens.lens (\CreateContactList' {contactListName} -> contactListName) (\s@CreateContactList' {} a -> s {contactListName = a} :: CreateContactList) instance Core.AWSRequest CreateContactList where type AWSResponse CreateContactList = CreateContactListResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveEmpty ( \s h x -> CreateContactListResponse' Prelude.<$> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable CreateContactList where hashWithSalt _salt CreateContactList' {..} = _salt `Prelude.hashWithSalt` description `Prelude.hashWithSalt` tags `Prelude.hashWithSalt` topics `Prelude.hashWithSalt` contactListName instance Prelude.NFData CreateContactList where rnf CreateContactList' {..} = Prelude.rnf description `Prelude.seq` Prelude.rnf tags `Prelude.seq` Prelude.rnf topics `Prelude.seq` Prelude.rnf contactListName instance Data.ToHeaders CreateContactList where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON CreateContactList where toJSON CreateContactList' {..} = Data.object ( Prelude.catMaybes [ ("Description" Data..=) Prelude.<$> description, ("Tags" Data..=) Prelude.<$> tags, ("Topics" Data..=) Prelude.<$> topics, Prelude.Just ("ContactListName" Data..= contactListName) ] ) instance Data.ToPath CreateContactList where toPath = Prelude.const "/v2/email/contact-lists" instance Data.ToQuery CreateContactList where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newCreateContactListResponse' smart constructor. data CreateContactListResponse = CreateContactListResponse' { -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'CreateContactListResponse' 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: -- -- 'httpStatus', 'createContactListResponse_httpStatus' - The response's http status code. newCreateContactListResponse :: -- | 'httpStatus' Prelude.Int -> CreateContactListResponse newCreateContactListResponse pHttpStatus_ = CreateContactListResponse' { httpStatus = pHttpStatus_ } -- | The response's http status code. createContactListResponse_httpStatus :: Lens.Lens' CreateContactListResponse Prelude.Int createContactListResponse_httpStatus = Lens.lens (\CreateContactListResponse' {httpStatus} -> httpStatus) (\s@CreateContactListResponse' {} a -> s {httpStatus = a} :: CreateContactListResponse) instance Prelude.NFData CreateContactListResponse where rnf CreateContactListResponse' {..} = Prelude.rnf httpStatus