{-# 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.ResetInstanceAttribute -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Resets an attribute of an instance to its default value. To reset the -- @kernel@ or @ramdisk@, the instance must be in a stopped state. To reset -- the @sourceDestCheck@, the instance can be either running or stopped. -- -- The @sourceDestCheck@ attribute controls whether source\/destination -- checking is enabled. The default value is @true@, which means checking -- is enabled. This value must be @false@ for a NAT instance to perform -- NAT. For more information, see -- -- in the /Amazon VPC User Guide/. module Amazonka.EC2.ResetInstanceAttribute ( -- * Creating a Request ResetInstanceAttribute (..), newResetInstanceAttribute, -- * Request Lenses resetInstanceAttribute_dryRun, resetInstanceAttribute_attribute, resetInstanceAttribute_instanceId, -- * Destructuring the Response ResetInstanceAttributeResponse (..), newResetInstanceAttributeResponse, ) 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:/ 'newResetInstanceAttribute' smart constructor. data ResetInstanceAttribute = ResetInstanceAttribute' { -- | 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 attribute to reset. -- -- You can only reset the following attributes: @kernel@ | @ramdisk@ | -- @sourceDestCheck@. attribute :: InstanceAttributeName, -- | The ID of the instance. instanceId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ResetInstanceAttribute' 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', 'resetInstanceAttribute_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@. -- -- 'attribute', 'resetInstanceAttribute_attribute' - The attribute to reset. -- -- You can only reset the following attributes: @kernel@ | @ramdisk@ | -- @sourceDestCheck@. -- -- 'instanceId', 'resetInstanceAttribute_instanceId' - The ID of the instance. newResetInstanceAttribute :: -- | 'attribute' InstanceAttributeName -> -- | 'instanceId' Prelude.Text -> ResetInstanceAttribute newResetInstanceAttribute pAttribute_ pInstanceId_ = ResetInstanceAttribute' { dryRun = Prelude.Nothing, attribute = pAttribute_, instanceId = pInstanceId_ } -- | 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@. resetInstanceAttribute_dryRun :: Lens.Lens' ResetInstanceAttribute (Prelude.Maybe Prelude.Bool) resetInstanceAttribute_dryRun = Lens.lens (\ResetInstanceAttribute' {dryRun} -> dryRun) (\s@ResetInstanceAttribute' {} a -> s {dryRun = a} :: ResetInstanceAttribute) -- | The attribute to reset. -- -- You can only reset the following attributes: @kernel@ | @ramdisk@ | -- @sourceDestCheck@. resetInstanceAttribute_attribute :: Lens.Lens' ResetInstanceAttribute InstanceAttributeName resetInstanceAttribute_attribute = Lens.lens (\ResetInstanceAttribute' {attribute} -> attribute) (\s@ResetInstanceAttribute' {} a -> s {attribute = a} :: ResetInstanceAttribute) -- | The ID of the instance. resetInstanceAttribute_instanceId :: Lens.Lens' ResetInstanceAttribute Prelude.Text resetInstanceAttribute_instanceId = Lens.lens (\ResetInstanceAttribute' {instanceId} -> instanceId) (\s@ResetInstanceAttribute' {} a -> s {instanceId = a} :: ResetInstanceAttribute) instance Core.AWSRequest ResetInstanceAttribute where type AWSResponse ResetInstanceAttribute = ResetInstanceAttributeResponse request overrides = Request.postQuery (overrides defaultService) response = Response.receiveNull ResetInstanceAttributeResponse' instance Prelude.Hashable ResetInstanceAttribute where hashWithSalt _salt ResetInstanceAttribute' {..} = _salt `Prelude.hashWithSalt` dryRun `Prelude.hashWithSalt` attribute `Prelude.hashWithSalt` instanceId instance Prelude.NFData ResetInstanceAttribute where rnf ResetInstanceAttribute' {..} = Prelude.rnf dryRun `Prelude.seq` Prelude.rnf attribute `Prelude.seq` Prelude.rnf instanceId instance Data.ToHeaders ResetInstanceAttribute where toHeaders = Prelude.const Prelude.mempty instance Data.ToPath ResetInstanceAttribute where toPath = Prelude.const "/" instance Data.ToQuery ResetInstanceAttribute where toQuery ResetInstanceAttribute' {..} = Prelude.mconcat [ "Action" Data.=: ("ResetInstanceAttribute" :: Prelude.ByteString), "Version" Data.=: ("2016-11-15" :: Prelude.ByteString), "DryRun" Data.=: dryRun, "Attribute" Data.=: attribute, "InstanceId" Data.=: instanceId ] -- | /See:/ 'newResetInstanceAttributeResponse' smart constructor. data ResetInstanceAttributeResponse = ResetInstanceAttributeResponse' { } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ResetInstanceAttributeResponse' with all optional fields omitted. -- -- Use or to modify other optional fields. newResetInstanceAttributeResponse :: ResetInstanceAttributeResponse newResetInstanceAttributeResponse = ResetInstanceAttributeResponse' instance Prelude.NFData ResetInstanceAttributeResponse where rnf _ = ()