{-# 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.IAM.CreateGroup -- 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 group. -- -- For information about the number of groups you can create, see -- -- in the /IAM User Guide/. module Amazonka.IAM.CreateGroup ( -- * Creating a Request CreateGroup (..), newCreateGroup, -- * Request Lenses createGroup_path, createGroup_groupName, -- * Destructuring the Response CreateGroupResponse (..), newCreateGroupResponse, -- * Response Lenses createGroupResponse_httpStatus, createGroupResponse_group, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.IAM.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newCreateGroup' smart constructor. data CreateGroup = CreateGroup' { -- | The path to the group. For more information about paths, see -- -- in the /IAM User Guide/. -- -- This parameter is optional. If it is not included, it defaults to a -- slash (\/). -- -- This parameter allows (through its -- ) a string of characters -- consisting of either a forward slash (\/) by itself or a string that -- must begin and end with forward slashes. In addition, it can contain any -- ASCII character from the ! (@\\u0021@) through the DEL character -- (@\\u007F@), including most punctuation characters, digits, and upper -- and lowercased letters. path :: Prelude.Maybe Prelude.Text, -- | The name of the group to create. Do not include the path in this value. -- -- IAM user, group, role, and policy names must be unique within the -- account. Names are not distinguished by case. For example, you cannot -- create resources named both \"MyResource\" and \"myresource\". groupName :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'CreateGroup' 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: -- -- 'path', 'createGroup_path' - The path to the group. For more information about paths, see -- -- in the /IAM User Guide/. -- -- This parameter is optional. If it is not included, it defaults to a -- slash (\/). -- -- This parameter allows (through its -- ) a string of characters -- consisting of either a forward slash (\/) by itself or a string that -- must begin and end with forward slashes. In addition, it can contain any -- ASCII character from the ! (@\\u0021@) through the DEL character -- (@\\u007F@), including most punctuation characters, digits, and upper -- and lowercased letters. -- -- 'groupName', 'createGroup_groupName' - The name of the group to create. Do not include the path in this value. -- -- IAM user, group, role, and policy names must be unique within the -- account. Names are not distinguished by case. For example, you cannot -- create resources named both \"MyResource\" and \"myresource\". newCreateGroup :: -- | 'groupName' Prelude.Text -> CreateGroup newCreateGroup pGroupName_ = CreateGroup' { path = Prelude.Nothing, groupName = pGroupName_ } -- | The path to the group. For more information about paths, see -- -- in the /IAM User Guide/. -- -- This parameter is optional. If it is not included, it defaults to a -- slash (\/). -- -- This parameter allows (through its -- ) a string of characters -- consisting of either a forward slash (\/) by itself or a string that -- must begin and end with forward slashes. In addition, it can contain any -- ASCII character from the ! (@\\u0021@) through the DEL character -- (@\\u007F@), including most punctuation characters, digits, and upper -- and lowercased letters. createGroup_path :: Lens.Lens' CreateGroup (Prelude.Maybe Prelude.Text) createGroup_path = Lens.lens (\CreateGroup' {path} -> path) (\s@CreateGroup' {} a -> s {path = a} :: CreateGroup) -- | The name of the group to create. Do not include the path in this value. -- -- IAM user, group, role, and policy names must be unique within the -- account. Names are not distinguished by case. For example, you cannot -- create resources named both \"MyResource\" and \"myresource\". createGroup_groupName :: Lens.Lens' CreateGroup Prelude.Text createGroup_groupName = Lens.lens (\CreateGroup' {groupName} -> groupName) (\s@CreateGroup' {} a -> s {groupName = a} :: CreateGroup) instance Core.AWSRequest CreateGroup where type AWSResponse CreateGroup = CreateGroupResponse request overrides = Request.postQuery (overrides defaultService) response = Response.receiveXMLWrapper "CreateGroupResult" ( \s h x -> CreateGroupResponse' Prelude.<$> (Prelude.pure (Prelude.fromEnum s)) Prelude.<*> (x Data..@ "Group") ) instance Prelude.Hashable CreateGroup where hashWithSalt _salt CreateGroup' {..} = _salt `Prelude.hashWithSalt` path `Prelude.hashWithSalt` groupName instance Prelude.NFData CreateGroup where rnf CreateGroup' {..} = Prelude.rnf path `Prelude.seq` Prelude.rnf groupName instance Data.ToHeaders CreateGroup where toHeaders = Prelude.const Prelude.mempty instance Data.ToPath CreateGroup where toPath = Prelude.const "/" instance Data.ToQuery CreateGroup where toQuery CreateGroup' {..} = Prelude.mconcat [ "Action" Data.=: ("CreateGroup" :: Prelude.ByteString), "Version" Data.=: ("2010-05-08" :: Prelude.ByteString), "Path" Data.=: path, "GroupName" Data.=: groupName ] -- | Contains the response to a successful CreateGroup request. -- -- /See:/ 'newCreateGroupResponse' smart constructor. data CreateGroupResponse = CreateGroupResponse' { -- | The response's http status code. httpStatus :: Prelude.Int, -- | A structure containing details about the new group. group' :: Group } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'CreateGroupResponse' 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', 'createGroupResponse_httpStatus' - The response's http status code. -- -- 'group'', 'createGroupResponse_group' - A structure containing details about the new group. newCreateGroupResponse :: -- | 'httpStatus' Prelude.Int -> -- | 'group'' Group -> CreateGroupResponse newCreateGroupResponse pHttpStatus_ pGroup_ = CreateGroupResponse' { httpStatus = pHttpStatus_, group' = pGroup_ } -- | The response's http status code. createGroupResponse_httpStatus :: Lens.Lens' CreateGroupResponse Prelude.Int createGroupResponse_httpStatus = Lens.lens (\CreateGroupResponse' {httpStatus} -> httpStatus) (\s@CreateGroupResponse' {} a -> s {httpStatus = a} :: CreateGroupResponse) -- | A structure containing details about the new group. createGroupResponse_group :: Lens.Lens' CreateGroupResponse Group createGroupResponse_group = Lens.lens (\CreateGroupResponse' {group'} -> group') (\s@CreateGroupResponse' {} a -> s {group' = a} :: CreateGroupResponse) instance Prelude.NFData CreateGroupResponse where rnf CreateGroupResponse' {..} = Prelude.rnf httpStatus `Prelude.seq` Prelude.rnf group'