{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# 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.ModifyInstanceEventStartTime -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Modifies the start time for a scheduled Amazon EC2 instance event. module Amazonka.EC2.ModifyInstanceEventStartTime ( -- * Creating a Request ModifyInstanceEventStartTime (..), newModifyInstanceEventStartTime, -- * Request Lenses modifyInstanceEventStartTime_dryRun, modifyInstanceEventStartTime_instanceId, modifyInstanceEventStartTime_instanceEventId, modifyInstanceEventStartTime_notBefore, -- * Destructuring the Response ModifyInstanceEventStartTimeResponse (..), newModifyInstanceEventStartTimeResponse, -- * Response Lenses modifyInstanceEventStartTimeResponse_event, modifyInstanceEventStartTimeResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.EC2.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newModifyInstanceEventStartTime' smart constructor. data ModifyInstanceEventStartTime = ModifyInstanceEventStartTime' { -- | Checks whether you have the required permissions for the action, without -- actually making the request, and provides an error response. If you have -- the required permissions, the error response is @DryRunOperation@. -- Otherwise, it is @UnauthorizedOperation@. dryRun :: Prelude.Maybe Prelude.Bool, -- | The ID of the instance with the scheduled event. instanceId :: Prelude.Text, -- | The ID of the event whose date and time you are modifying. instanceEventId :: Prelude.Text, -- | The new date and time when the event will take place. notBefore :: Data.ISO8601 } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ModifyInstanceEventStartTime' 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: -- -- 'dryRun', 'modifyInstanceEventStartTime_dryRun' - Checks whether you have the required permissions for the action, without -- actually making the request, and provides an error response. If you have -- the required permissions, the error response is @DryRunOperation@. -- Otherwise, it is @UnauthorizedOperation@. -- -- 'instanceId', 'modifyInstanceEventStartTime_instanceId' - The ID of the instance with the scheduled event. -- -- 'instanceEventId', 'modifyInstanceEventStartTime_instanceEventId' - The ID of the event whose date and time you are modifying. -- -- 'notBefore', 'modifyInstanceEventStartTime_notBefore' - The new date and time when the event will take place. newModifyInstanceEventStartTime :: -- | 'instanceId' Prelude.Text -> -- | 'instanceEventId' Prelude.Text -> -- | 'notBefore' Prelude.UTCTime -> ModifyInstanceEventStartTime newModifyInstanceEventStartTime pInstanceId_ pInstanceEventId_ pNotBefore_ = ModifyInstanceEventStartTime' { dryRun = Prelude.Nothing, instanceId = pInstanceId_, instanceEventId = pInstanceEventId_, notBefore = Data._Time Lens.# pNotBefore_ } -- | Checks whether you have the required permissions for the action, without -- actually making the request, and provides an error response. If you have -- the required permissions, the error response is @DryRunOperation@. -- Otherwise, it is @UnauthorizedOperation@. modifyInstanceEventStartTime_dryRun :: Lens.Lens' ModifyInstanceEventStartTime (Prelude.Maybe Prelude.Bool) modifyInstanceEventStartTime_dryRun = Lens.lens (\ModifyInstanceEventStartTime' {dryRun} -> dryRun) (\s@ModifyInstanceEventStartTime' {} a -> s {dryRun = a} :: ModifyInstanceEventStartTime) -- | The ID of the instance with the scheduled event. modifyInstanceEventStartTime_instanceId :: Lens.Lens' ModifyInstanceEventStartTime Prelude.Text modifyInstanceEventStartTime_instanceId = Lens.lens (\ModifyInstanceEventStartTime' {instanceId} -> instanceId) (\s@ModifyInstanceEventStartTime' {} a -> s {instanceId = a} :: ModifyInstanceEventStartTime) -- | The ID of the event whose date and time you are modifying. modifyInstanceEventStartTime_instanceEventId :: Lens.Lens' ModifyInstanceEventStartTime Prelude.Text modifyInstanceEventStartTime_instanceEventId = Lens.lens (\ModifyInstanceEventStartTime' {instanceEventId} -> instanceEventId) (\s@ModifyInstanceEventStartTime' {} a -> s {instanceEventId = a} :: ModifyInstanceEventStartTime) -- | The new date and time when the event will take place. modifyInstanceEventStartTime_notBefore :: Lens.Lens' ModifyInstanceEventStartTime Prelude.UTCTime modifyInstanceEventStartTime_notBefore = Lens.lens (\ModifyInstanceEventStartTime' {notBefore} -> notBefore) (\s@ModifyInstanceEventStartTime' {} a -> s {notBefore = a} :: ModifyInstanceEventStartTime) Prelude.. Data._Time instance Core.AWSRequest ModifyInstanceEventStartTime where type AWSResponse ModifyInstanceEventStartTime = ModifyInstanceEventStartTimeResponse request overrides = Request.postQuery (overrides defaultService) response = Response.receiveXML ( \s h x -> ModifyInstanceEventStartTimeResponse' Prelude.<$> (x Data..@? "event") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable ModifyInstanceEventStartTime where hashWithSalt _salt ModifyInstanceEventStartTime' {..} = _salt `Prelude.hashWithSalt` dryRun `Prelude.hashWithSalt` instanceId `Prelude.hashWithSalt` instanceEventId `Prelude.hashWithSalt` notBefore instance Prelude.NFData ModifyInstanceEventStartTime where rnf ModifyInstanceEventStartTime' {..} = Prelude.rnf dryRun `Prelude.seq` Prelude.rnf instanceId `Prelude.seq` Prelude.rnf instanceEventId `Prelude.seq` Prelude.rnf notBefore instance Data.ToHeaders ModifyInstanceEventStartTime where toHeaders = Prelude.const Prelude.mempty instance Data.ToPath ModifyInstanceEventStartTime where toPath = Prelude.const "/" instance Data.ToQuery ModifyInstanceEventStartTime where toQuery ModifyInstanceEventStartTime' {..} = Prelude.mconcat [ "Action" Data.=: ( "ModifyInstanceEventStartTime" :: Prelude.ByteString ), "Version" Data.=: ("2016-11-15" :: Prelude.ByteString), "DryRun" Data.=: dryRun, "InstanceId" Data.=: instanceId, "InstanceEventId" Data.=: instanceEventId, "NotBefore" Data.=: notBefore ] -- | /See:/ 'newModifyInstanceEventStartTimeResponse' smart constructor. data ModifyInstanceEventStartTimeResponse = ModifyInstanceEventStartTimeResponse' { -- | Information about the event. event :: Prelude.Maybe InstanceStatusEvent, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ModifyInstanceEventStartTimeResponse' 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: -- -- 'event', 'modifyInstanceEventStartTimeResponse_event' - Information about the event. -- -- 'httpStatus', 'modifyInstanceEventStartTimeResponse_httpStatus' - The response's http status code. newModifyInstanceEventStartTimeResponse :: -- | 'httpStatus' Prelude.Int -> ModifyInstanceEventStartTimeResponse newModifyInstanceEventStartTimeResponse pHttpStatus_ = ModifyInstanceEventStartTimeResponse' { event = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | Information about the event. modifyInstanceEventStartTimeResponse_event :: Lens.Lens' ModifyInstanceEventStartTimeResponse (Prelude.Maybe InstanceStatusEvent) modifyInstanceEventStartTimeResponse_event = Lens.lens (\ModifyInstanceEventStartTimeResponse' {event} -> event) (\s@ModifyInstanceEventStartTimeResponse' {} a -> s {event = a} :: ModifyInstanceEventStartTimeResponse) -- | The response's http status code. modifyInstanceEventStartTimeResponse_httpStatus :: Lens.Lens' ModifyInstanceEventStartTimeResponse Prelude.Int modifyInstanceEventStartTimeResponse_httpStatus = Lens.lens (\ModifyInstanceEventStartTimeResponse' {httpStatus} -> httpStatus) (\s@ModifyInstanceEventStartTimeResponse' {} a -> s {httpStatus = a} :: ModifyInstanceEventStartTimeResponse) instance Prelude.NFData ModifyInstanceEventStartTimeResponse where rnf ModifyInstanceEventStartTimeResponse' {..} = Prelude.rnf event `Prelude.seq` Prelude.rnf httpStatus