{-# 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.SecurityHub.Types.AwsSecretsManagerSecretRotationRules -- 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.SecurityHub.Types.AwsSecretsManagerSecretRotationRules 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 -- | Defines the rotation schedule for the secret. -- -- /See:/ 'newAwsSecretsManagerSecretRotationRules' smart constructor. data AwsSecretsManagerSecretRotationRules = AwsSecretsManagerSecretRotationRules' { -- | The number of days after the previous rotation to rotate the secret. automaticallyAfterDays :: Prelude.Maybe Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AwsSecretsManagerSecretRotationRules' 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: -- -- 'automaticallyAfterDays', 'awsSecretsManagerSecretRotationRules_automaticallyAfterDays' - The number of days after the previous rotation to rotate the secret. newAwsSecretsManagerSecretRotationRules :: AwsSecretsManagerSecretRotationRules newAwsSecretsManagerSecretRotationRules = AwsSecretsManagerSecretRotationRules' { automaticallyAfterDays = Prelude.Nothing } -- | The number of days after the previous rotation to rotate the secret. awsSecretsManagerSecretRotationRules_automaticallyAfterDays :: Lens.Lens' AwsSecretsManagerSecretRotationRules (Prelude.Maybe Prelude.Int) awsSecretsManagerSecretRotationRules_automaticallyAfterDays = Lens.lens (\AwsSecretsManagerSecretRotationRules' {automaticallyAfterDays} -> automaticallyAfterDays) (\s@AwsSecretsManagerSecretRotationRules' {} a -> s {automaticallyAfterDays = a} :: AwsSecretsManagerSecretRotationRules) instance Data.FromJSON AwsSecretsManagerSecretRotationRules where parseJSON = Data.withObject "AwsSecretsManagerSecretRotationRules" ( \x -> AwsSecretsManagerSecretRotationRules' Prelude.<$> (x Data..:? "AutomaticallyAfterDays") ) instance Prelude.Hashable AwsSecretsManagerSecretRotationRules where hashWithSalt _salt AwsSecretsManagerSecretRotationRules' {..} = _salt `Prelude.hashWithSalt` automaticallyAfterDays instance Prelude.NFData AwsSecretsManagerSecretRotationRules where rnf AwsSecretsManagerSecretRotationRules' {..} = Prelude.rnf automaticallyAfterDays instance Data.ToJSON AwsSecretsManagerSecretRotationRules where toJSON AwsSecretsManagerSecretRotationRules' {..} = Data.object ( Prelude.catMaybes [ ("AutomaticallyAfterDays" Data..=) Prelude.<$> automaticallyAfterDays ] )