{-# 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.ResourceGroups.GetGroupConfiguration -- 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 the service configuration associated with the specified resource -- group. For details about the service configuration syntax, see -- . -- -- __Minimum permissions__ -- -- To run this command, you must have the following permissions: -- -- - @resource-groups:GetGroupConfiguration@ module Amazonka.ResourceGroups.GetGroupConfiguration ( -- * Creating a Request GetGroupConfiguration (..), newGetGroupConfiguration, -- * Request Lenses getGroupConfiguration_group, -- * Destructuring the Response GetGroupConfigurationResponse (..), newGetGroupConfigurationResponse, -- * Response Lenses getGroupConfigurationResponse_groupConfiguration, getGroupConfigurationResponse_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 Amazonka.ResourceGroups.Types import qualified Amazonka.Response as Response -- | /See:/ 'newGetGroupConfiguration' smart constructor. data GetGroupConfiguration = GetGroupConfiguration' { -- | The name or the ARN of the resource group. group' :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetGroupConfiguration' 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: -- -- 'group'', 'getGroupConfiguration_group' - The name or the ARN of the resource group. newGetGroupConfiguration :: GetGroupConfiguration newGetGroupConfiguration = GetGroupConfiguration' {group' = Prelude.Nothing} -- | The name or the ARN of the resource group. getGroupConfiguration_group :: Lens.Lens' GetGroupConfiguration (Prelude.Maybe Prelude.Text) getGroupConfiguration_group = Lens.lens (\GetGroupConfiguration' {group'} -> group') (\s@GetGroupConfiguration' {} a -> s {group' = a} :: GetGroupConfiguration) instance Core.AWSRequest GetGroupConfiguration where type AWSResponse GetGroupConfiguration = GetGroupConfigurationResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> GetGroupConfigurationResponse' Prelude.<$> (x Data..?> "GroupConfiguration") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable GetGroupConfiguration where hashWithSalt _salt GetGroupConfiguration' {..} = _salt `Prelude.hashWithSalt` group' instance Prelude.NFData GetGroupConfiguration where rnf GetGroupConfiguration' {..} = Prelude.rnf group' instance Data.ToHeaders GetGroupConfiguration where toHeaders = Prelude.const Prelude.mempty instance Data.ToJSON GetGroupConfiguration where toJSON GetGroupConfiguration' {..} = Data.object ( Prelude.catMaybes [("Group" Data..=) Prelude.<$> group'] ) instance Data.ToPath GetGroupConfiguration where toPath = Prelude.const "/get-group-configuration" instance Data.ToQuery GetGroupConfiguration where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newGetGroupConfigurationResponse' smart constructor. data GetGroupConfigurationResponse = GetGroupConfigurationResponse' { -- | The service configuration associated with the specified group. For -- details about the service configuration syntax, see -- . groupConfiguration :: Prelude.Maybe GroupConfiguration, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetGroupConfigurationResponse' 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: -- -- 'groupConfiguration', 'getGroupConfigurationResponse_groupConfiguration' - The service configuration associated with the specified group. For -- details about the service configuration syntax, see -- . -- -- 'httpStatus', 'getGroupConfigurationResponse_httpStatus' - The response's http status code. newGetGroupConfigurationResponse :: -- | 'httpStatus' Prelude.Int -> GetGroupConfigurationResponse newGetGroupConfigurationResponse pHttpStatus_ = GetGroupConfigurationResponse' { groupConfiguration = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | The service configuration associated with the specified group. For -- details about the service configuration syntax, see -- . getGroupConfigurationResponse_groupConfiguration :: Lens.Lens' GetGroupConfigurationResponse (Prelude.Maybe GroupConfiguration) getGroupConfigurationResponse_groupConfiguration = Lens.lens (\GetGroupConfigurationResponse' {groupConfiguration} -> groupConfiguration) (\s@GetGroupConfigurationResponse' {} a -> s {groupConfiguration = a} :: GetGroupConfigurationResponse) -- | The response's http status code. getGroupConfigurationResponse_httpStatus :: Lens.Lens' GetGroupConfigurationResponse Prelude.Int getGroupConfigurationResponse_httpStatus = Lens.lens (\GetGroupConfigurationResponse' {httpStatus} -> httpStatus) (\s@GetGroupConfigurationResponse' {} a -> s {httpStatus = a} :: GetGroupConfigurationResponse) instance Prelude.NFData GetGroupConfigurationResponse where rnf GetGroupConfigurationResponse' {..} = Prelude.rnf groupConfiguration `Prelude.seq` Prelude.rnf httpStatus