{-# 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.TransitGatewayAttachmentAssociation -- 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.TransitGatewayAttachmentAssociation 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.TransitGatewayAssociationState import qualified Amazonka.Prelude as Prelude -- | Describes an association. -- -- /See:/ 'newTransitGatewayAttachmentAssociation' smart constructor. data TransitGatewayAttachmentAssociation = TransitGatewayAttachmentAssociation' { -- | The state of the association. state :: Prelude.Maybe TransitGatewayAssociationState, -- | The ID of the route table for the transit gateway. transitGatewayRouteTableId :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'TransitGatewayAttachmentAssociation' 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', 'transitGatewayAttachmentAssociation_state' - The state of the association. -- -- 'transitGatewayRouteTableId', 'transitGatewayAttachmentAssociation_transitGatewayRouteTableId' - The ID of the route table for the transit gateway. newTransitGatewayAttachmentAssociation :: TransitGatewayAttachmentAssociation newTransitGatewayAttachmentAssociation = TransitGatewayAttachmentAssociation' { state = Prelude.Nothing, transitGatewayRouteTableId = Prelude.Nothing } -- | The state of the association. transitGatewayAttachmentAssociation_state :: Lens.Lens' TransitGatewayAttachmentAssociation (Prelude.Maybe TransitGatewayAssociationState) transitGatewayAttachmentAssociation_state = Lens.lens (\TransitGatewayAttachmentAssociation' {state} -> state) (\s@TransitGatewayAttachmentAssociation' {} a -> s {state = a} :: TransitGatewayAttachmentAssociation) -- | The ID of the route table for the transit gateway. transitGatewayAttachmentAssociation_transitGatewayRouteTableId :: Lens.Lens' TransitGatewayAttachmentAssociation (Prelude.Maybe Prelude.Text) transitGatewayAttachmentAssociation_transitGatewayRouteTableId = Lens.lens (\TransitGatewayAttachmentAssociation' {transitGatewayRouteTableId} -> transitGatewayRouteTableId) (\s@TransitGatewayAttachmentAssociation' {} a -> s {transitGatewayRouteTableId = a} :: TransitGatewayAttachmentAssociation) instance Data.FromXML TransitGatewayAttachmentAssociation where parseXML x = TransitGatewayAttachmentAssociation' Prelude.<$> (x Data..@? "state") Prelude.<*> (x Data..@? "transitGatewayRouteTableId") instance Prelude.Hashable TransitGatewayAttachmentAssociation where hashWithSalt _salt TransitGatewayAttachmentAssociation' {..} = _salt `Prelude.hashWithSalt` state `Prelude.hashWithSalt` transitGatewayRouteTableId instance Prelude.NFData TransitGatewayAttachmentAssociation where rnf TransitGatewayAttachmentAssociation' {..} = Prelude.rnf state `Prelude.seq` Prelude.rnf transitGatewayRouteTableId