{-# 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.CancelledSpotInstanceRequest -- 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.CancelledSpotInstanceRequest 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.CancelSpotInstanceRequestState import qualified Amazonka.Prelude as Prelude -- | Describes a request to cancel a Spot Instance. -- -- /See:/ 'newCancelledSpotInstanceRequest' smart constructor. data CancelledSpotInstanceRequest = CancelledSpotInstanceRequest' { -- | The ID of the Spot Instance request. spotInstanceRequestId :: Prelude.Maybe Prelude.Text, -- | The state of the Spot Instance request. state :: Prelude.Maybe CancelSpotInstanceRequestState } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'CancelledSpotInstanceRequest' 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: -- -- 'spotInstanceRequestId', 'cancelledSpotInstanceRequest_spotInstanceRequestId' - The ID of the Spot Instance request. -- -- 'state', 'cancelledSpotInstanceRequest_state' - The state of the Spot Instance request. newCancelledSpotInstanceRequest :: CancelledSpotInstanceRequest newCancelledSpotInstanceRequest = CancelledSpotInstanceRequest' { spotInstanceRequestId = Prelude.Nothing, state = Prelude.Nothing } -- | The ID of the Spot Instance request. cancelledSpotInstanceRequest_spotInstanceRequestId :: Lens.Lens' CancelledSpotInstanceRequest (Prelude.Maybe Prelude.Text) cancelledSpotInstanceRequest_spotInstanceRequestId = Lens.lens (\CancelledSpotInstanceRequest' {spotInstanceRequestId} -> spotInstanceRequestId) (\s@CancelledSpotInstanceRequest' {} a -> s {spotInstanceRequestId = a} :: CancelledSpotInstanceRequest) -- | The state of the Spot Instance request. cancelledSpotInstanceRequest_state :: Lens.Lens' CancelledSpotInstanceRequest (Prelude.Maybe CancelSpotInstanceRequestState) cancelledSpotInstanceRequest_state = Lens.lens (\CancelledSpotInstanceRequest' {state} -> state) (\s@CancelledSpotInstanceRequest' {} a -> s {state = a} :: CancelledSpotInstanceRequest) instance Data.FromXML CancelledSpotInstanceRequest where parseXML x = CancelledSpotInstanceRequest' Prelude.<$> (x Data..@? "spotInstanceRequestId") Prelude.<*> (x Data..@? "state") instance Prelude.Hashable CancelledSpotInstanceRequest where hashWithSalt _salt CancelledSpotInstanceRequest' {..} = _salt `Prelude.hashWithSalt` spotInstanceRequestId `Prelude.hashWithSalt` state instance Prelude.NFData CancelledSpotInstanceRequest where rnf CancelledSpotInstanceRequest' {..} = Prelude.rnf spotInstanceRequestId `Prelude.seq` Prelude.rnf state