{-# 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.AuditManager.Types.Control -- 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.AuditManager.Types.Control where import Amazonka.AuditManager.Types.ControlMappingSource import Amazonka.AuditManager.Types.ControlType 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 -- | A control in Audit Manager. -- -- /See:/ 'newControl' smart constructor. data Control = Control' { -- | The recommended actions to carry out if the control isn\'t fulfilled. actionPlanInstructions :: Prelude.Maybe Prelude.Text, -- | The title of the action plan for remediating the control. actionPlanTitle :: Prelude.Maybe Prelude.Text, -- | The Amazon Resource Name (ARN) of the control. arn :: Prelude.Maybe Prelude.Text, -- | The data mapping sources for the control. controlMappingSources :: Prelude.Maybe (Prelude.NonEmpty ControlMappingSource), -- | The data source types that determine where Audit Manager collects -- evidence from for the control. controlSources :: Prelude.Maybe Prelude.Text, -- | The time when the control was created. createdAt :: Prelude.Maybe Data.POSIX, -- | The IAM user or role that created the control. createdBy :: Prelude.Maybe Prelude.Text, -- | The description of the control. description :: Prelude.Maybe Prelude.Text, -- | The unique identifier for the control. id :: Prelude.Maybe Prelude.Text, -- | The time when the control was most recently updated. lastUpdatedAt :: Prelude.Maybe Data.POSIX, -- | The IAM user or role that most recently updated the control. lastUpdatedBy :: Prelude.Maybe Prelude.Text, -- | The name of the control. name :: Prelude.Maybe Prelude.Text, -- | The tags associated with the control. tags :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text), -- | The steps that you should follow to determine if the control has been -- satisfied. testingInformation :: Prelude.Maybe Prelude.Text, -- | The type of control, such as a custom control or a standard control. type' :: Prelude.Maybe ControlType } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'Control' 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: -- -- 'actionPlanInstructions', 'control_actionPlanInstructions' - The recommended actions to carry out if the control isn\'t fulfilled. -- -- 'actionPlanTitle', 'control_actionPlanTitle' - The title of the action plan for remediating the control. -- -- 'arn', 'control_arn' - The Amazon Resource Name (ARN) of the control. -- -- 'controlMappingSources', 'control_controlMappingSources' - The data mapping sources for the control. -- -- 'controlSources', 'control_controlSources' - The data source types that determine where Audit Manager collects -- evidence from for the control. -- -- 'createdAt', 'control_createdAt' - The time when the control was created. -- -- 'createdBy', 'control_createdBy' - The IAM user or role that created the control. -- -- 'description', 'control_description' - The description of the control. -- -- 'id', 'control_id' - The unique identifier for the control. -- -- 'lastUpdatedAt', 'control_lastUpdatedAt' - The time when the control was most recently updated. -- -- 'lastUpdatedBy', 'control_lastUpdatedBy' - The IAM user or role that most recently updated the control. -- -- 'name', 'control_name' - The name of the control. -- -- 'tags', 'control_tags' - The tags associated with the control. -- -- 'testingInformation', 'control_testingInformation' - The steps that you should follow to determine if the control has been -- satisfied. -- -- 'type'', 'control_type' - The type of control, such as a custom control or a standard control. newControl :: Control newControl = Control' { actionPlanInstructions = Prelude.Nothing, actionPlanTitle = Prelude.Nothing, arn = Prelude.Nothing, controlMappingSources = Prelude.Nothing, controlSources = Prelude.Nothing, createdAt = Prelude.Nothing, createdBy = Prelude.Nothing, description = Prelude.Nothing, id = Prelude.Nothing, lastUpdatedAt = Prelude.Nothing, lastUpdatedBy = Prelude.Nothing, name = Prelude.Nothing, tags = Prelude.Nothing, testingInformation = Prelude.Nothing, type' = Prelude.Nothing } -- | The recommended actions to carry out if the control isn\'t fulfilled. control_actionPlanInstructions :: Lens.Lens' Control (Prelude.Maybe Prelude.Text) control_actionPlanInstructions = Lens.lens (\Control' {actionPlanInstructions} -> actionPlanInstructions) (\s@Control' {} a -> s {actionPlanInstructions = a} :: Control) -- | The title of the action plan for remediating the control. control_actionPlanTitle :: Lens.Lens' Control (Prelude.Maybe Prelude.Text) control_actionPlanTitle = Lens.lens (\Control' {actionPlanTitle} -> actionPlanTitle) (\s@Control' {} a -> s {actionPlanTitle = a} :: Control) -- | The Amazon Resource Name (ARN) of the control. control_arn :: Lens.Lens' Control (Prelude.Maybe Prelude.Text) control_arn = Lens.lens (\Control' {arn} -> arn) (\s@Control' {} a -> s {arn = a} :: Control) -- | The data mapping sources for the control. control_controlMappingSources :: Lens.Lens' Control (Prelude.Maybe (Prelude.NonEmpty ControlMappingSource)) control_controlMappingSources = Lens.lens (\Control' {controlMappingSources} -> controlMappingSources) (\s@Control' {} a -> s {controlMappingSources = a} :: Control) Prelude.. Lens.mapping Lens.coerced -- | The data source types that determine where Audit Manager collects -- evidence from for the control. control_controlSources :: Lens.Lens' Control (Prelude.Maybe Prelude.Text) control_controlSources = Lens.lens (\Control' {controlSources} -> controlSources) (\s@Control' {} a -> s {controlSources = a} :: Control) -- | The time when the control was created. control_createdAt :: Lens.Lens' Control (Prelude.Maybe Prelude.UTCTime) control_createdAt = Lens.lens (\Control' {createdAt} -> createdAt) (\s@Control' {} a -> s {createdAt = a} :: Control) Prelude.. Lens.mapping Data._Time -- | The IAM user or role that created the control. control_createdBy :: Lens.Lens' Control (Prelude.Maybe Prelude.Text) control_createdBy = Lens.lens (\Control' {createdBy} -> createdBy) (\s@Control' {} a -> s {createdBy = a} :: Control) -- | The description of the control. control_description :: Lens.Lens' Control (Prelude.Maybe Prelude.Text) control_description = Lens.lens (\Control' {description} -> description) (\s@Control' {} a -> s {description = a} :: Control) -- | The unique identifier for the control. control_id :: Lens.Lens' Control (Prelude.Maybe Prelude.Text) control_id = Lens.lens (\Control' {id} -> id) (\s@Control' {} a -> s {id = a} :: Control) -- | The time when the control was most recently updated. control_lastUpdatedAt :: Lens.Lens' Control (Prelude.Maybe Prelude.UTCTime) control_lastUpdatedAt = Lens.lens (\Control' {lastUpdatedAt} -> lastUpdatedAt) (\s@Control' {} a -> s {lastUpdatedAt = a} :: Control) Prelude.. Lens.mapping Data._Time -- | The IAM user or role that most recently updated the control. control_lastUpdatedBy :: Lens.Lens' Control (Prelude.Maybe Prelude.Text) control_lastUpdatedBy = Lens.lens (\Control' {lastUpdatedBy} -> lastUpdatedBy) (\s@Control' {} a -> s {lastUpdatedBy = a} :: Control) -- | The name of the control. control_name :: Lens.Lens' Control (Prelude.Maybe Prelude.Text) control_name = Lens.lens (\Control' {name} -> name) (\s@Control' {} a -> s {name = a} :: Control) -- | The tags associated with the control. control_tags :: Lens.Lens' Control (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text)) control_tags = Lens.lens (\Control' {tags} -> tags) (\s@Control' {} a -> s {tags = a} :: Control) Prelude.. Lens.mapping Lens.coerced -- | The steps that you should follow to determine if the control has been -- satisfied. control_testingInformation :: Lens.Lens' Control (Prelude.Maybe Prelude.Text) control_testingInformation = Lens.lens (\Control' {testingInformation} -> testingInformation) (\s@Control' {} a -> s {testingInformation = a} :: Control) -- | The type of control, such as a custom control or a standard control. control_type :: Lens.Lens' Control (Prelude.Maybe ControlType) control_type = Lens.lens (\Control' {type'} -> type') (\s@Control' {} a -> s {type' = a} :: Control) instance Data.FromJSON Control where parseJSON = Data.withObject "Control" ( \x -> Control' Prelude.<$> (x Data..:? "actionPlanInstructions") Prelude.<*> (x Data..:? "actionPlanTitle") Prelude.<*> (x Data..:? "arn") Prelude.<*> (x Data..:? "controlMappingSources") Prelude.<*> (x Data..:? "controlSources") Prelude.<*> (x Data..:? "createdAt") Prelude.<*> (x Data..:? "createdBy") Prelude.<*> (x Data..:? "description") Prelude.<*> (x Data..:? "id") Prelude.<*> (x Data..:? "lastUpdatedAt") Prelude.<*> (x Data..:? "lastUpdatedBy") Prelude.<*> (x Data..:? "name") Prelude.<*> (x Data..:? "tags" Data..!= Prelude.mempty) Prelude.<*> (x Data..:? "testingInformation") Prelude.<*> (x Data..:? "type") ) instance Prelude.Hashable Control where hashWithSalt _salt Control' {..} = _salt `Prelude.hashWithSalt` actionPlanInstructions `Prelude.hashWithSalt` actionPlanTitle `Prelude.hashWithSalt` arn `Prelude.hashWithSalt` controlMappingSources `Prelude.hashWithSalt` controlSources `Prelude.hashWithSalt` createdAt `Prelude.hashWithSalt` createdBy `Prelude.hashWithSalt` description `Prelude.hashWithSalt` id `Prelude.hashWithSalt` lastUpdatedAt `Prelude.hashWithSalt` lastUpdatedBy `Prelude.hashWithSalt` name `Prelude.hashWithSalt` tags `Prelude.hashWithSalt` testingInformation `Prelude.hashWithSalt` type' instance Prelude.NFData Control where rnf Control' {..} = Prelude.rnf actionPlanInstructions `Prelude.seq` Prelude.rnf actionPlanTitle `Prelude.seq` Prelude.rnf arn `Prelude.seq` Prelude.rnf controlMappingSources `Prelude.seq` Prelude.rnf controlSources `Prelude.seq` Prelude.rnf createdAt `Prelude.seq` Prelude.rnf createdBy `Prelude.seq` Prelude.rnf description `Prelude.seq` Prelude.rnf id `Prelude.seq` Prelude.rnf lastUpdatedAt `Prelude.seq` Prelude.rnf lastUpdatedBy `Prelude.seq` Prelude.rnf name `Prelude.seq` Prelude.rnf tags `Prelude.seq` Prelude.rnf testingInformation `Prelude.seq` Prelude.rnf type'