{-# 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.EMR.PutManagedScalingPolicy -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Creates or updates a managed scaling policy for an Amazon EMR cluster. -- The managed scaling policy defines the limits for resources, such as EC2 -- instances that can be added or terminated from a cluster. The policy -- only applies to the core and task nodes. The master node cannot be -- scaled after initial configuration. module Amazonka.EMR.PutManagedScalingPolicy ( -- * Creating a Request PutManagedScalingPolicy (..), newPutManagedScalingPolicy, -- * Request Lenses putManagedScalingPolicy_clusterId, putManagedScalingPolicy_managedScalingPolicy, -- * Destructuring the Response PutManagedScalingPolicyResponse (..), newPutManagedScalingPolicyResponse, -- * Response Lenses putManagedScalingPolicyResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.EMR.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newPutManagedScalingPolicy' smart constructor. data PutManagedScalingPolicy = PutManagedScalingPolicy' { -- | Specifies the ID of an EMR cluster where the managed scaling policy is -- attached. clusterId :: Prelude.Text, -- | Specifies the constraints for the managed scaling policy. managedScalingPolicy :: ManagedScalingPolicy } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'PutManagedScalingPolicy' 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: -- -- 'clusterId', 'putManagedScalingPolicy_clusterId' - Specifies the ID of an EMR cluster where the managed scaling policy is -- attached. -- -- 'managedScalingPolicy', 'putManagedScalingPolicy_managedScalingPolicy' - Specifies the constraints for the managed scaling policy. newPutManagedScalingPolicy :: -- | 'clusterId' Prelude.Text -> -- | 'managedScalingPolicy' ManagedScalingPolicy -> PutManagedScalingPolicy newPutManagedScalingPolicy pClusterId_ pManagedScalingPolicy_ = PutManagedScalingPolicy' { clusterId = pClusterId_, managedScalingPolicy = pManagedScalingPolicy_ } -- | Specifies the ID of an EMR cluster where the managed scaling policy is -- attached. putManagedScalingPolicy_clusterId :: Lens.Lens' PutManagedScalingPolicy Prelude.Text putManagedScalingPolicy_clusterId = Lens.lens (\PutManagedScalingPolicy' {clusterId} -> clusterId) (\s@PutManagedScalingPolicy' {} a -> s {clusterId = a} :: PutManagedScalingPolicy) -- | Specifies the constraints for the managed scaling policy. putManagedScalingPolicy_managedScalingPolicy :: Lens.Lens' PutManagedScalingPolicy ManagedScalingPolicy putManagedScalingPolicy_managedScalingPolicy = Lens.lens (\PutManagedScalingPolicy' {managedScalingPolicy} -> managedScalingPolicy) (\s@PutManagedScalingPolicy' {} a -> s {managedScalingPolicy = a} :: PutManagedScalingPolicy) instance Core.AWSRequest PutManagedScalingPolicy where type AWSResponse PutManagedScalingPolicy = PutManagedScalingPolicyResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveEmpty ( \s h x -> PutManagedScalingPolicyResponse' Prelude.<$> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable PutManagedScalingPolicy where hashWithSalt _salt PutManagedScalingPolicy' {..} = _salt `Prelude.hashWithSalt` clusterId `Prelude.hashWithSalt` managedScalingPolicy instance Prelude.NFData PutManagedScalingPolicy where rnf PutManagedScalingPolicy' {..} = Prelude.rnf clusterId `Prelude.seq` Prelude.rnf managedScalingPolicy instance Data.ToHeaders PutManagedScalingPolicy where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "ElasticMapReduce.PutManagedScalingPolicy" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON PutManagedScalingPolicy where toJSON PutManagedScalingPolicy' {..} = Data.object ( Prelude.catMaybes [ Prelude.Just ("ClusterId" Data..= clusterId), Prelude.Just ( "ManagedScalingPolicy" Data..= managedScalingPolicy ) ] ) instance Data.ToPath PutManagedScalingPolicy where toPath = Prelude.const "/" instance Data.ToQuery PutManagedScalingPolicy where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newPutManagedScalingPolicyResponse' smart constructor. data PutManagedScalingPolicyResponse = PutManagedScalingPolicyResponse' { -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'PutManagedScalingPolicyResponse' 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: -- -- 'httpStatus', 'putManagedScalingPolicyResponse_httpStatus' - The response's http status code. newPutManagedScalingPolicyResponse :: -- | 'httpStatus' Prelude.Int -> PutManagedScalingPolicyResponse newPutManagedScalingPolicyResponse pHttpStatus_ = PutManagedScalingPolicyResponse' { httpStatus = pHttpStatus_ } -- | The response's http status code. putManagedScalingPolicyResponse_httpStatus :: Lens.Lens' PutManagedScalingPolicyResponse Prelude.Int putManagedScalingPolicyResponse_httpStatus = Lens.lens (\PutManagedScalingPolicyResponse' {httpStatus} -> httpStatus) (\s@PutManagedScalingPolicyResponse' {} a -> s {httpStatus = a} :: PutManagedScalingPolicyResponse) instance Prelude.NFData PutManagedScalingPolicyResponse where rnf PutManagedScalingPolicyResponse' {..} = Prelude.rnf httpStatus