{-# 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.TransitGatewayRouteTableAssociation -- 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.TransitGatewayRouteTableAssociation 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 Amazonka.EC2.Types.TransitGatewayAttachmentResourceType import qualified Amazonka.Prelude as Prelude -- | Describes an association between a route table and a resource -- attachment. -- -- /See:/ 'newTransitGatewayRouteTableAssociation' smart constructor. data TransitGatewayRouteTableAssociation = TransitGatewayRouteTableAssociation' { -- | The ID of the resource. resourceId :: Prelude.Maybe Prelude.Text, -- | The resource type. Note that the @tgw-peering@ resource type has been -- deprecated. resourceType :: Prelude.Maybe TransitGatewayAttachmentResourceType, -- | The state of the association. state :: Prelude.Maybe TransitGatewayAssociationState, -- | The ID of the attachment. transitGatewayAttachmentId :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'TransitGatewayRouteTableAssociation' 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: -- -- 'resourceId', 'transitGatewayRouteTableAssociation_resourceId' - The ID of the resource. -- -- 'resourceType', 'transitGatewayRouteTableAssociation_resourceType' - The resource type. Note that the @tgw-peering@ resource type has been -- deprecated. -- -- 'state', 'transitGatewayRouteTableAssociation_state' - The state of the association. -- -- 'transitGatewayAttachmentId', 'transitGatewayRouteTableAssociation_transitGatewayAttachmentId' - The ID of the attachment. newTransitGatewayRouteTableAssociation :: TransitGatewayRouteTableAssociation newTransitGatewayRouteTableAssociation = TransitGatewayRouteTableAssociation' { resourceId = Prelude.Nothing, resourceType = Prelude.Nothing, state = Prelude.Nothing, transitGatewayAttachmentId = Prelude.Nothing } -- | The ID of the resource. transitGatewayRouteTableAssociation_resourceId :: Lens.Lens' TransitGatewayRouteTableAssociation (Prelude.Maybe Prelude.Text) transitGatewayRouteTableAssociation_resourceId = Lens.lens (\TransitGatewayRouteTableAssociation' {resourceId} -> resourceId) (\s@TransitGatewayRouteTableAssociation' {} a -> s {resourceId = a} :: TransitGatewayRouteTableAssociation) -- | The resource type. Note that the @tgw-peering@ resource type has been -- deprecated. transitGatewayRouteTableAssociation_resourceType :: Lens.Lens' TransitGatewayRouteTableAssociation (Prelude.Maybe TransitGatewayAttachmentResourceType) transitGatewayRouteTableAssociation_resourceType = Lens.lens (\TransitGatewayRouteTableAssociation' {resourceType} -> resourceType) (\s@TransitGatewayRouteTableAssociation' {} a -> s {resourceType = a} :: TransitGatewayRouteTableAssociation) -- | The state of the association. transitGatewayRouteTableAssociation_state :: Lens.Lens' TransitGatewayRouteTableAssociation (Prelude.Maybe TransitGatewayAssociationState) transitGatewayRouteTableAssociation_state = Lens.lens (\TransitGatewayRouteTableAssociation' {state} -> state) (\s@TransitGatewayRouteTableAssociation' {} a -> s {state = a} :: TransitGatewayRouteTableAssociation) -- | The ID of the attachment. transitGatewayRouteTableAssociation_transitGatewayAttachmentId :: Lens.Lens' TransitGatewayRouteTableAssociation (Prelude.Maybe Prelude.Text) transitGatewayRouteTableAssociation_transitGatewayAttachmentId = Lens.lens (\TransitGatewayRouteTableAssociation' {transitGatewayAttachmentId} -> transitGatewayAttachmentId) (\s@TransitGatewayRouteTableAssociation' {} a -> s {transitGatewayAttachmentId = a} :: TransitGatewayRouteTableAssociation) instance Data.FromXML TransitGatewayRouteTableAssociation where parseXML x = TransitGatewayRouteTableAssociation' Prelude.<$> (x Data..@? "resourceId") Prelude.<*> (x Data..@? "resourceType") Prelude.<*> (x Data..@? "state") Prelude.<*> (x Data..@? "transitGatewayAttachmentId") instance Prelude.Hashable TransitGatewayRouteTableAssociation where hashWithSalt _salt TransitGatewayRouteTableAssociation' {..} = _salt `Prelude.hashWithSalt` resourceId `Prelude.hashWithSalt` resourceType `Prelude.hashWithSalt` state `Prelude.hashWithSalt` transitGatewayAttachmentId instance Prelude.NFData TransitGatewayRouteTableAssociation where rnf TransitGatewayRouteTableAssociation' {..} = Prelude.rnf resourceId `Prelude.seq` Prelude.rnf resourceType `Prelude.seq` Prelude.rnf state `Prelude.seq` Prelude.rnf transitGatewayAttachmentId