{-# 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.VpcClassicLink -- 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.VpcClassicLink 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.Tag import qualified Amazonka.Prelude as Prelude -- | We are retiring EC2-Classic. We recommend that you migrate from -- EC2-Classic to a VPC. For more information, see -- -- in the /Amazon Elastic Compute Cloud User Guide/. -- -- Describes whether a VPC is enabled for ClassicLink. -- -- /See:/ 'newVpcClassicLink' smart constructor. data VpcClassicLink = VpcClassicLink' { -- | Indicates whether the VPC is enabled for ClassicLink. classicLinkEnabled :: Prelude.Maybe Prelude.Bool, -- | Any tags assigned to the VPC. tags :: Prelude.Maybe [Tag], -- | The ID of the VPC. vpcId :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'VpcClassicLink' 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: -- -- 'classicLinkEnabled', 'vpcClassicLink_classicLinkEnabled' - Indicates whether the VPC is enabled for ClassicLink. -- -- 'tags', 'vpcClassicLink_tags' - Any tags assigned to the VPC. -- -- 'vpcId', 'vpcClassicLink_vpcId' - The ID of the VPC. newVpcClassicLink :: VpcClassicLink newVpcClassicLink = VpcClassicLink' { classicLinkEnabled = Prelude.Nothing, tags = Prelude.Nothing, vpcId = Prelude.Nothing } -- | Indicates whether the VPC is enabled for ClassicLink. vpcClassicLink_classicLinkEnabled :: Lens.Lens' VpcClassicLink (Prelude.Maybe Prelude.Bool) vpcClassicLink_classicLinkEnabled = Lens.lens (\VpcClassicLink' {classicLinkEnabled} -> classicLinkEnabled) (\s@VpcClassicLink' {} a -> s {classicLinkEnabled = a} :: VpcClassicLink) -- | Any tags assigned to the VPC. vpcClassicLink_tags :: Lens.Lens' VpcClassicLink (Prelude.Maybe [Tag]) vpcClassicLink_tags = Lens.lens (\VpcClassicLink' {tags} -> tags) (\s@VpcClassicLink' {} a -> s {tags = a} :: VpcClassicLink) Prelude.. Lens.mapping Lens.coerced -- | The ID of the VPC. vpcClassicLink_vpcId :: Lens.Lens' VpcClassicLink (Prelude.Maybe Prelude.Text) vpcClassicLink_vpcId = Lens.lens (\VpcClassicLink' {vpcId} -> vpcId) (\s@VpcClassicLink' {} a -> s {vpcId = a} :: VpcClassicLink) instance Data.FromXML VpcClassicLink where parseXML x = VpcClassicLink' Prelude.<$> (x Data..@? "classicLinkEnabled") Prelude.<*> ( x Data..@? "tagSet" Core..!@ Prelude.mempty Prelude.>>= Core.may (Data.parseXMLList "item") ) Prelude.<*> (x Data..@? "vpcId") instance Prelude.Hashable VpcClassicLink where hashWithSalt _salt VpcClassicLink' {..} = _salt `Prelude.hashWithSalt` classicLinkEnabled `Prelude.hashWithSalt` tags `Prelude.hashWithSalt` vpcId instance Prelude.NFData VpcClassicLink where rnf VpcClassicLink' {..} = Prelude.rnf classicLinkEnabled `Prelude.seq` Prelude.rnf tags `Prelude.seq` Prelude.rnf vpcId