{-# 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.VpcAttachment -- 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.VpcAttachment 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 an attachment between a virtual private gateway and a VPC. -- -- /See:/ 'newVpcAttachment' smart constructor. data VpcAttachment = VpcAttachment' { -- | The current state of the attachment. state :: Prelude.Maybe AttachmentStatus, -- | The ID of the VPC. vpcId :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'VpcAttachment' 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: -- -- 'state', 'vpcAttachment_state' - The current state of the attachment. -- -- 'vpcId', 'vpcAttachment_vpcId' - The ID of the VPC. newVpcAttachment :: VpcAttachment newVpcAttachment = VpcAttachment' { state = Prelude.Nothing, vpcId = Prelude.Nothing } -- | The current state of the attachment. vpcAttachment_state :: Lens.Lens' VpcAttachment (Prelude.Maybe AttachmentStatus) vpcAttachment_state = Lens.lens (\VpcAttachment' {state} -> state) (\s@VpcAttachment' {} a -> s {state = a} :: VpcAttachment) -- | The ID of the VPC. vpcAttachment_vpcId :: Lens.Lens' VpcAttachment (Prelude.Maybe Prelude.Text) vpcAttachment_vpcId = Lens.lens (\VpcAttachment' {vpcId} -> vpcId) (\s@VpcAttachment' {} a -> s {vpcId = a} :: VpcAttachment) instance Data.FromXML VpcAttachment where parseXML x = VpcAttachment' Prelude.<$> (x Data..@? "state") Prelude.<*> (x Data..@? "vpcId") instance Prelude.Hashable VpcAttachment where hashWithSalt _salt VpcAttachment' {..} = _salt `Prelude.hashWithSalt` state `Prelude.hashWithSalt` vpcId instance Prelude.NFData VpcAttachment where rnf VpcAttachment' {..} = Prelude.rnf state `Prelude.seq` Prelude.rnf vpcId