{-# 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.IcmpTypeCode -- 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.IcmpTypeCode 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 the ICMP type and code. -- -- /See:/ 'newIcmpTypeCode' smart constructor. data IcmpTypeCode = IcmpTypeCode' { -- | The ICMP code. A value of -1 means all codes for the specified ICMP -- type. code :: Prelude.Maybe Prelude.Int, -- | The ICMP type. A value of -1 means all types. type' :: Prelude.Maybe Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'IcmpTypeCode' 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: -- -- 'code', 'icmpTypeCode_code' - The ICMP code. A value of -1 means all codes for the specified ICMP -- type. -- -- 'type'', 'icmpTypeCode_type' - The ICMP type. A value of -1 means all types. newIcmpTypeCode :: IcmpTypeCode newIcmpTypeCode = IcmpTypeCode' { code = Prelude.Nothing, type' = Prelude.Nothing } -- | The ICMP code. A value of -1 means all codes for the specified ICMP -- type. icmpTypeCode_code :: Lens.Lens' IcmpTypeCode (Prelude.Maybe Prelude.Int) icmpTypeCode_code = Lens.lens (\IcmpTypeCode' {code} -> code) (\s@IcmpTypeCode' {} a -> s {code = a} :: IcmpTypeCode) -- | The ICMP type. A value of -1 means all types. icmpTypeCode_type :: Lens.Lens' IcmpTypeCode (Prelude.Maybe Prelude.Int) icmpTypeCode_type = Lens.lens (\IcmpTypeCode' {type'} -> type') (\s@IcmpTypeCode' {} a -> s {type' = a} :: IcmpTypeCode) instance Data.FromXML IcmpTypeCode where parseXML x = IcmpTypeCode' Prelude.<$> (x Data..@? "code") Prelude.<*> (x Data..@? "type") instance Prelude.Hashable IcmpTypeCode where hashWithSalt _salt IcmpTypeCode' {..} = _salt `Prelude.hashWithSalt` code `Prelude.hashWithSalt` type' instance Prelude.NFData IcmpTypeCode where rnf IcmpTypeCode' {..} = Prelude.rnf code `Prelude.seq` Prelude.rnf type' instance Data.ToQuery IcmpTypeCode where toQuery IcmpTypeCode' {..} = Prelude.mconcat ["Code" Data.=: code, "Type" Data.=: type']