{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}

-- Derived from AWS service descriptions, licensed under Apache 2.0.

-- |
-- Module      : Amazonka.Config.Types.RecordingGroup
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.Config.Types.RecordingGroup where

import Amazonka.Config.Types.ResourceType
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

-- | Specifies which Amazon Web Services resource types Config records for
-- configuration changes. In the recording group, you specify whether you
-- want to record all supported resource types or only specific types of
-- resources.
--
-- By default, Config records the configuration changes for all supported
-- types of /regional resources/ that Config discovers in the region in
-- which it is running. Regional resources are tied to a region and can be
-- used only in that region. Examples of regional resources are EC2
-- instances and EBS volumes.
--
-- You can also have Config record supported types of /global resources/.
-- Global resources are not tied to a specific region and can be used in
-- all regions. The global resource types that Config supports include IAM
-- users, groups, roles, and customer managed policies.
--
-- Global resource types onboarded to Config recording after February 2022
-- will only be recorded in the service\'s home region for the commercial
-- partition and Amazon Web Services GovCloud (US) West for the GovCloud
-- partition. You can view the Configuration Items for these new global
-- resource types only in their home region and Amazon Web Services
-- GovCloud (US) West.
--
-- Supported global resource types onboarded before February 2022 such as
-- @AWS::IAM::Group@, @AWS::IAM::Policy@, @AWS::IAM::Role@,
-- @AWS::IAM::User@ remain unchanged, and they will continue to deliver
-- Configuration Items in all supported regions in Config. The change will
-- only affect new global resource types onboarded after February 2022.
--
-- To record global resource types onboarded after February 2022, enable
-- All Supported Resource Types in the home region of the global resource
-- type you want to record.
--
-- If you don\'t want Config to record all resources, you can specify which
-- types of resources it will record with the @resourceTypes@ parameter.
--
-- For a list of supported resource types, see
-- <https://docs.aws.amazon.com/config/latest/developerguide/resource-config-reference.html#supported-resources Supported Resource Types>.
--
-- For more information and a table of the Home Regions for Global Resource
-- Types Onboarded after February 2022, see
-- <https://docs.aws.amazon.com/config/latest/developerguide/select-resources.html Selecting Which Resources Config Records>.
--
-- /See:/ 'newRecordingGroup' smart constructor.
data RecordingGroup = RecordingGroup'
  { -- | Specifies whether Config records configuration changes for every
    -- supported type of regional resource.
    --
    -- If you set this option to @true@, when Config adds support for a new
    -- type of regional resource, it starts recording resources of that type
    -- automatically.
    --
    -- If you set this option to @true@, you cannot enumerate a list of
    -- @resourceTypes@.
    RecordingGroup -> Maybe Bool
allSupported :: Prelude.Maybe Prelude.Bool,
    -- | Specifies whether Config includes all supported types of global
    -- resources (for example, IAM resources) with the resources that it
    -- records.
    --
    -- Before you can set this option to @true@, you must set the
    -- @allSupported@ option to @true@.
    --
    -- If you set this option to @true@, when Config adds support for a new
    -- type of global resource, it starts recording resources of that type
    -- automatically.
    --
    -- The configuration details for any global resource are the same in all
    -- regions. To prevent duplicate configuration items, you should consider
    -- customizing Config in only one region to record global resources.
    RecordingGroup -> Maybe Bool
includeGlobalResourceTypes :: Prelude.Maybe Prelude.Bool,
    -- | A comma-separated list that specifies the types of Amazon Web Services
    -- resources for which Config records configuration changes (for example,
    -- @AWS::EC2::Instance@ or @AWS::CloudTrail::Trail@).
    --
    -- To record all configuration changes, you must set the @allSupported@
    -- option to @true@.
    --
    -- If you set this option to @false@, when Config adds support for a new
    -- type of resource, it will not record resources of that type unless you
    -- manually add that type to your recording group.
    --
    -- For a list of valid @resourceTypes@ values, see the __resourceType
    -- Value__ column in
    -- <https://docs.aws.amazon.com/config/latest/developerguide/resource-config-reference.html#supported-resources Supported Amazon Web Services resource Types>.
    RecordingGroup -> Maybe [ResourceType]
resourceTypes :: Prelude.Maybe [ResourceType]
  }
  deriving (RecordingGroup -> RecordingGroup -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: RecordingGroup -> RecordingGroup -> Bool
$c/= :: RecordingGroup -> RecordingGroup -> Bool
== :: RecordingGroup -> RecordingGroup -> Bool
$c== :: RecordingGroup -> RecordingGroup -> Bool
Prelude.Eq, ReadPrec [RecordingGroup]
ReadPrec RecordingGroup
Int -> ReadS RecordingGroup
ReadS [RecordingGroup]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [RecordingGroup]
$creadListPrec :: ReadPrec [RecordingGroup]
readPrec :: ReadPrec RecordingGroup
$creadPrec :: ReadPrec RecordingGroup
readList :: ReadS [RecordingGroup]
$creadList :: ReadS [RecordingGroup]
readsPrec :: Int -> ReadS RecordingGroup
$creadsPrec :: Int -> ReadS RecordingGroup
Prelude.Read, Int -> RecordingGroup -> ShowS
[RecordingGroup] -> ShowS
RecordingGroup -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [RecordingGroup] -> ShowS
$cshowList :: [RecordingGroup] -> ShowS
show :: RecordingGroup -> String
$cshow :: RecordingGroup -> String
showsPrec :: Int -> RecordingGroup -> ShowS
$cshowsPrec :: Int -> RecordingGroup -> ShowS
Prelude.Show, forall x. Rep RecordingGroup x -> RecordingGroup
forall x. RecordingGroup -> Rep RecordingGroup x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep RecordingGroup x -> RecordingGroup
$cfrom :: forall x. RecordingGroup -> Rep RecordingGroup x
Prelude.Generic)

-- |
-- Create a value of 'RecordingGroup' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'allSupported', 'recordingGroup_allSupported' - Specifies whether Config records configuration changes for every
-- supported type of regional resource.
--
-- If you set this option to @true@, when Config adds support for a new
-- type of regional resource, it starts recording resources of that type
-- automatically.
--
-- If you set this option to @true@, you cannot enumerate a list of
-- @resourceTypes@.
--
-- 'includeGlobalResourceTypes', 'recordingGroup_includeGlobalResourceTypes' - Specifies whether Config includes all supported types of global
-- resources (for example, IAM resources) with the resources that it
-- records.
--
-- Before you can set this option to @true@, you must set the
-- @allSupported@ option to @true@.
--
-- If you set this option to @true@, when Config adds support for a new
-- type of global resource, it starts recording resources of that type
-- automatically.
--
-- The configuration details for any global resource are the same in all
-- regions. To prevent duplicate configuration items, you should consider
-- customizing Config in only one region to record global resources.
--
-- 'resourceTypes', 'recordingGroup_resourceTypes' - A comma-separated list that specifies the types of Amazon Web Services
-- resources for which Config records configuration changes (for example,
-- @AWS::EC2::Instance@ or @AWS::CloudTrail::Trail@).
--
-- To record all configuration changes, you must set the @allSupported@
-- option to @true@.
--
-- If you set this option to @false@, when Config adds support for a new
-- type of resource, it will not record resources of that type unless you
-- manually add that type to your recording group.
--
-- For a list of valid @resourceTypes@ values, see the __resourceType
-- Value__ column in
-- <https://docs.aws.amazon.com/config/latest/developerguide/resource-config-reference.html#supported-resources Supported Amazon Web Services resource Types>.
newRecordingGroup ::
  RecordingGroup
newRecordingGroup :: RecordingGroup
newRecordingGroup =
  RecordingGroup'
    { $sel:allSupported:RecordingGroup' :: Maybe Bool
allSupported = forall a. Maybe a
Prelude.Nothing,
      $sel:includeGlobalResourceTypes:RecordingGroup' :: Maybe Bool
includeGlobalResourceTypes = forall a. Maybe a
Prelude.Nothing,
      $sel:resourceTypes:RecordingGroup' :: Maybe [ResourceType]
resourceTypes = forall a. Maybe a
Prelude.Nothing
    }

-- | Specifies whether Config records configuration changes for every
-- supported type of regional resource.
--
-- If you set this option to @true@, when Config adds support for a new
-- type of regional resource, it starts recording resources of that type
-- automatically.
--
-- If you set this option to @true@, you cannot enumerate a list of
-- @resourceTypes@.
recordingGroup_allSupported :: Lens.Lens' RecordingGroup (Prelude.Maybe Prelude.Bool)
recordingGroup_allSupported :: Lens' RecordingGroup (Maybe Bool)
recordingGroup_allSupported = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RecordingGroup' {Maybe Bool
allSupported :: Maybe Bool
$sel:allSupported:RecordingGroup' :: RecordingGroup -> Maybe Bool
allSupported} -> Maybe Bool
allSupported) (\s :: RecordingGroup
s@RecordingGroup' {} Maybe Bool
a -> RecordingGroup
s {$sel:allSupported:RecordingGroup' :: Maybe Bool
allSupported = Maybe Bool
a} :: RecordingGroup)

-- | Specifies whether Config includes all supported types of global
-- resources (for example, IAM resources) with the resources that it
-- records.
--
-- Before you can set this option to @true@, you must set the
-- @allSupported@ option to @true@.
--
-- If you set this option to @true@, when Config adds support for a new
-- type of global resource, it starts recording resources of that type
-- automatically.
--
-- The configuration details for any global resource are the same in all
-- regions. To prevent duplicate configuration items, you should consider
-- customizing Config in only one region to record global resources.
recordingGroup_includeGlobalResourceTypes :: Lens.Lens' RecordingGroup (Prelude.Maybe Prelude.Bool)
recordingGroup_includeGlobalResourceTypes :: Lens' RecordingGroup (Maybe Bool)
recordingGroup_includeGlobalResourceTypes = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RecordingGroup' {Maybe Bool
includeGlobalResourceTypes :: Maybe Bool
$sel:includeGlobalResourceTypes:RecordingGroup' :: RecordingGroup -> Maybe Bool
includeGlobalResourceTypes} -> Maybe Bool
includeGlobalResourceTypes) (\s :: RecordingGroup
s@RecordingGroup' {} Maybe Bool
a -> RecordingGroup
s {$sel:includeGlobalResourceTypes:RecordingGroup' :: Maybe Bool
includeGlobalResourceTypes = Maybe Bool
a} :: RecordingGroup)

-- | A comma-separated list that specifies the types of Amazon Web Services
-- resources for which Config records configuration changes (for example,
-- @AWS::EC2::Instance@ or @AWS::CloudTrail::Trail@).
--
-- To record all configuration changes, you must set the @allSupported@
-- option to @true@.
--
-- If you set this option to @false@, when Config adds support for a new
-- type of resource, it will not record resources of that type unless you
-- manually add that type to your recording group.
--
-- For a list of valid @resourceTypes@ values, see the __resourceType
-- Value__ column in
-- <https://docs.aws.amazon.com/config/latest/developerguide/resource-config-reference.html#supported-resources Supported Amazon Web Services resource Types>.
recordingGroup_resourceTypes :: Lens.Lens' RecordingGroup (Prelude.Maybe [ResourceType])
recordingGroup_resourceTypes :: Lens' RecordingGroup (Maybe [ResourceType])
recordingGroup_resourceTypes = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RecordingGroup' {Maybe [ResourceType]
resourceTypes :: Maybe [ResourceType]
$sel:resourceTypes:RecordingGroup' :: RecordingGroup -> Maybe [ResourceType]
resourceTypes} -> Maybe [ResourceType]
resourceTypes) (\s :: RecordingGroup
s@RecordingGroup' {} Maybe [ResourceType]
a -> RecordingGroup
s {$sel:resourceTypes:RecordingGroup' :: Maybe [ResourceType]
resourceTypes = Maybe [ResourceType]
a} :: RecordingGroup) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

instance Data.FromJSON RecordingGroup where
  parseJSON :: Value -> Parser RecordingGroup
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"RecordingGroup"
      ( \Object
x ->
          Maybe Bool -> Maybe Bool -> Maybe [ResourceType] -> RecordingGroup
RecordingGroup'
            forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"allSupported")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"includeGlobalResourceTypes")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"resourceTypes" forall a. Parser (Maybe a) -> a -> Parser a
Data..!= forall a. Monoid a => a
Prelude.mempty)
      )

instance Prelude.Hashable RecordingGroup where
  hashWithSalt :: Int -> RecordingGroup -> Int
hashWithSalt Int
_salt RecordingGroup' {Maybe Bool
Maybe [ResourceType]
resourceTypes :: Maybe [ResourceType]
includeGlobalResourceTypes :: Maybe Bool
allSupported :: Maybe Bool
$sel:resourceTypes:RecordingGroup' :: RecordingGroup -> Maybe [ResourceType]
$sel:includeGlobalResourceTypes:RecordingGroup' :: RecordingGroup -> Maybe Bool
$sel:allSupported:RecordingGroup' :: RecordingGroup -> Maybe Bool
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Bool
allSupported
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Bool
includeGlobalResourceTypes
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe [ResourceType]
resourceTypes

instance Prelude.NFData RecordingGroup where
  rnf :: RecordingGroup -> ()
rnf RecordingGroup' {Maybe Bool
Maybe [ResourceType]
resourceTypes :: Maybe [ResourceType]
includeGlobalResourceTypes :: Maybe Bool
allSupported :: Maybe Bool
$sel:resourceTypes:RecordingGroup' :: RecordingGroup -> Maybe [ResourceType]
$sel:includeGlobalResourceTypes:RecordingGroup' :: RecordingGroup -> Maybe Bool
$sel:allSupported:RecordingGroup' :: RecordingGroup -> Maybe Bool
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Bool
allSupported
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Bool
includeGlobalResourceTypes
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe [ResourceType]
resourceTypes

instance Data.ToJSON RecordingGroup where
  toJSON :: RecordingGroup -> Value
toJSON RecordingGroup' {Maybe Bool
Maybe [ResourceType]
resourceTypes :: Maybe [ResourceType]
includeGlobalResourceTypes :: Maybe Bool
allSupported :: Maybe Bool
$sel:resourceTypes:RecordingGroup' :: RecordingGroup -> Maybe [ResourceType]
$sel:includeGlobalResourceTypes:RecordingGroup' :: RecordingGroup -> Maybe Bool
$sel:allSupported:RecordingGroup' :: RecordingGroup -> Maybe Bool
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Key
"allSupported" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Bool
allSupported,
            (Key
"includeGlobalResourceTypes" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=)
              forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Bool
includeGlobalResourceTypes,
            (Key
"resourceTypes" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [ResourceType]
resourceTypes
          ]
      )