{-# 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.EC2.Types.AttributeBooleanValue -- 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.EC2.Types.AttributeBooleanValue where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.EC2.Internal import qualified Amazonka.Prelude as Prelude -- | Describes a value for a resource attribute that is a Boolean value. -- -- /See:/ 'newAttributeBooleanValue' smart constructor. data AttributeBooleanValue = AttributeBooleanValue' { -- | The attribute value. The valid values are @true@ or @false@. value :: Prelude.Maybe Prelude.Bool } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AttributeBooleanValue' 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: -- -- 'value', 'attributeBooleanValue_value' - The attribute value. The valid values are @true@ or @false@. newAttributeBooleanValue :: AttributeBooleanValue newAttributeBooleanValue = AttributeBooleanValue' {value = Prelude.Nothing} -- | The attribute value. The valid values are @true@ or @false@. attributeBooleanValue_value :: Lens.Lens' AttributeBooleanValue (Prelude.Maybe Prelude.Bool) attributeBooleanValue_value = Lens.lens (\AttributeBooleanValue' {value} -> value) (\s@AttributeBooleanValue' {} a -> s {value = a} :: AttributeBooleanValue) instance Data.FromXML AttributeBooleanValue where parseXML x = AttributeBooleanValue' Prelude.<$> (x Data..@? "value") instance Prelude.Hashable AttributeBooleanValue where hashWithSalt _salt AttributeBooleanValue' {..} = _salt `Prelude.hashWithSalt` value instance Prelude.NFData AttributeBooleanValue where rnf AttributeBooleanValue' {..} = Prelude.rnf value instance Data.ToQuery AttributeBooleanValue where toQuery AttributeBooleanValue' {..} = Prelude.mconcat ["Value" Data.=: value]