{-# 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.InternetGatewayAttachment
-- 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.InternetGatewayAttachment 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 Amazonka.EC2.Types.AttachmentStatus
import qualified Amazonka.Prelude as Prelude

-- | Describes the attachment of a VPC to an internet gateway or an
-- egress-only internet gateway.
--
-- /See:/ 'newInternetGatewayAttachment' smart constructor.
data InternetGatewayAttachment = InternetGatewayAttachment'
  { -- | The current state of the attachment. For an internet gateway, the state
    -- is @available@ when attached to a VPC; otherwise, this value is not
    -- returned.
    InternetGatewayAttachment -> AttachmentStatus
state :: AttachmentStatus,
    -- | The ID of the VPC.
    InternetGatewayAttachment -> Text
vpcId :: Prelude.Text
  }
  deriving (InternetGatewayAttachment -> InternetGatewayAttachment -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: InternetGatewayAttachment -> InternetGatewayAttachment -> Bool
$c/= :: InternetGatewayAttachment -> InternetGatewayAttachment -> Bool
== :: InternetGatewayAttachment -> InternetGatewayAttachment -> Bool
$c== :: InternetGatewayAttachment -> InternetGatewayAttachment -> Bool
Prelude.Eq, ReadPrec [InternetGatewayAttachment]
ReadPrec InternetGatewayAttachment
Int -> ReadS InternetGatewayAttachment
ReadS [InternetGatewayAttachment]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [InternetGatewayAttachment]
$creadListPrec :: ReadPrec [InternetGatewayAttachment]
readPrec :: ReadPrec InternetGatewayAttachment
$creadPrec :: ReadPrec InternetGatewayAttachment
readList :: ReadS [InternetGatewayAttachment]
$creadList :: ReadS [InternetGatewayAttachment]
readsPrec :: Int -> ReadS InternetGatewayAttachment
$creadsPrec :: Int -> ReadS InternetGatewayAttachment
Prelude.Read, Int -> InternetGatewayAttachment -> ShowS
[InternetGatewayAttachment] -> ShowS
InternetGatewayAttachment -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [InternetGatewayAttachment] -> ShowS
$cshowList :: [InternetGatewayAttachment] -> ShowS
show :: InternetGatewayAttachment -> String
$cshow :: InternetGatewayAttachment -> String
showsPrec :: Int -> InternetGatewayAttachment -> ShowS
$cshowsPrec :: Int -> InternetGatewayAttachment -> ShowS
Prelude.Show, forall x.
Rep InternetGatewayAttachment x -> InternetGatewayAttachment
forall x.
InternetGatewayAttachment -> Rep InternetGatewayAttachment x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep InternetGatewayAttachment x -> InternetGatewayAttachment
$cfrom :: forall x.
InternetGatewayAttachment -> Rep InternetGatewayAttachment x
Prelude.Generic)

-- |
-- Create a value of 'InternetGatewayAttachment' 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:
--
-- 'state', 'internetGatewayAttachment_state' - The current state of the attachment. For an internet gateway, the state
-- is @available@ when attached to a VPC; otherwise, this value is not
-- returned.
--
-- 'vpcId', 'internetGatewayAttachment_vpcId' - The ID of the VPC.
newInternetGatewayAttachment ::
  -- | 'state'
  AttachmentStatus ->
  -- | 'vpcId'
  Prelude.Text ->
  InternetGatewayAttachment
newInternetGatewayAttachment :: AttachmentStatus -> Text -> InternetGatewayAttachment
newInternetGatewayAttachment AttachmentStatus
pState_ Text
pVpcId_ =
  InternetGatewayAttachment'
    { $sel:state:InternetGatewayAttachment' :: AttachmentStatus
state = AttachmentStatus
pState_,
      $sel:vpcId:InternetGatewayAttachment' :: Text
vpcId = Text
pVpcId_
    }

-- | The current state of the attachment. For an internet gateway, the state
-- is @available@ when attached to a VPC; otherwise, this value is not
-- returned.
internetGatewayAttachment_state :: Lens.Lens' InternetGatewayAttachment AttachmentStatus
internetGatewayAttachment_state :: Lens' InternetGatewayAttachment AttachmentStatus
internetGatewayAttachment_state = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\InternetGatewayAttachment' {AttachmentStatus
state :: AttachmentStatus
$sel:state:InternetGatewayAttachment' :: InternetGatewayAttachment -> AttachmentStatus
state} -> AttachmentStatus
state) (\s :: InternetGatewayAttachment
s@InternetGatewayAttachment' {} AttachmentStatus
a -> InternetGatewayAttachment
s {$sel:state:InternetGatewayAttachment' :: AttachmentStatus
state = AttachmentStatus
a} :: InternetGatewayAttachment)

-- | The ID of the VPC.
internetGatewayAttachment_vpcId :: Lens.Lens' InternetGatewayAttachment Prelude.Text
internetGatewayAttachment_vpcId :: Lens' InternetGatewayAttachment Text
internetGatewayAttachment_vpcId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\InternetGatewayAttachment' {Text
vpcId :: Text
$sel:vpcId:InternetGatewayAttachment' :: InternetGatewayAttachment -> Text
vpcId} -> Text
vpcId) (\s :: InternetGatewayAttachment
s@InternetGatewayAttachment' {} Text
a -> InternetGatewayAttachment
s {$sel:vpcId:InternetGatewayAttachment' :: Text
vpcId = Text
a} :: InternetGatewayAttachment)

instance Data.FromXML InternetGatewayAttachment where
  parseXML :: [Node] -> Either String InternetGatewayAttachment
parseXML [Node]
x =
    AttachmentStatus -> Text -> InternetGatewayAttachment
InternetGatewayAttachment'
      forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> ([Node]
x forall a. FromXML a => [Node] -> Text -> Either String a
Data..@ Text
"state")
      forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> ([Node]
x forall a. FromXML a => [Node] -> Text -> Either String a
Data..@ Text
"vpcId")

instance Prelude.Hashable InternetGatewayAttachment where
  hashWithSalt :: Int -> InternetGatewayAttachment -> Int
hashWithSalt Int
_salt InternetGatewayAttachment' {Text
AttachmentStatus
vpcId :: Text
state :: AttachmentStatus
$sel:vpcId:InternetGatewayAttachment' :: InternetGatewayAttachment -> Text
$sel:state:InternetGatewayAttachment' :: InternetGatewayAttachment -> AttachmentStatus
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` AttachmentStatus
state
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
vpcId

instance Prelude.NFData InternetGatewayAttachment where
  rnf :: InternetGatewayAttachment -> ()
rnf InternetGatewayAttachment' {Text
AttachmentStatus
vpcId :: Text
state :: AttachmentStatus
$sel:vpcId:InternetGatewayAttachment' :: InternetGatewayAttachment -> Text
$sel:state:InternetGatewayAttachment' :: InternetGatewayAttachment -> AttachmentStatus
..} =
    forall a. NFData a => a -> ()
Prelude.rnf AttachmentStatus
state seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
vpcId