{-# 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.Backup.UntagResource -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Removes a set of key-value pairs from a recovery point, backup plan, or -- backup vault identified by an Amazon Resource Name (ARN) module Amazonka.Backup.UntagResource ( -- * Creating a Request UntagResource (..), newUntagResource, -- * Request Lenses untagResource_resourceArn, untagResource_tagKeyList, -- * Destructuring the Response UntagResourceResponse (..), newUntagResourceResponse, ) where import Amazonka.Backup.Types import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newUntagResource' smart constructor. data UntagResource = UntagResource' { -- | An ARN that uniquely identifies a resource. The format of the ARN -- depends on the type of the tagged resource. resourceArn :: Prelude.Text, -- | A list of keys to identify which key-value tags to remove from a -- resource. tagKeyList :: Data.Sensitive [Prelude.Text] } deriving (Prelude.Eq, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'UntagResource' 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: -- -- 'resourceArn', 'untagResource_resourceArn' - An ARN that uniquely identifies a resource. The format of the ARN -- depends on the type of the tagged resource. -- -- 'tagKeyList', 'untagResource_tagKeyList' - A list of keys to identify which key-value tags to remove from a -- resource. newUntagResource :: -- | 'resourceArn' Prelude.Text -> UntagResource newUntagResource pResourceArn_ = UntagResource' { resourceArn = pResourceArn_, tagKeyList = Prelude.mempty } -- | An ARN that uniquely identifies a resource. The format of the ARN -- depends on the type of the tagged resource. untagResource_resourceArn :: Lens.Lens' UntagResource Prelude.Text untagResource_resourceArn = Lens.lens (\UntagResource' {resourceArn} -> resourceArn) (\s@UntagResource' {} a -> s {resourceArn = a} :: UntagResource) -- | A list of keys to identify which key-value tags to remove from a -- resource. untagResource_tagKeyList :: Lens.Lens' UntagResource [Prelude.Text] untagResource_tagKeyList = Lens.lens (\UntagResource' {tagKeyList} -> tagKeyList) (\s@UntagResource' {} a -> s {tagKeyList = a} :: UntagResource) Prelude.. Data._Sensitive Prelude.. Lens.coerced instance Core.AWSRequest UntagResource where type AWSResponse UntagResource = UntagResourceResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveNull UntagResourceResponse' instance Prelude.Hashable UntagResource where hashWithSalt _salt UntagResource' {..} = _salt `Prelude.hashWithSalt` resourceArn `Prelude.hashWithSalt` tagKeyList instance Prelude.NFData UntagResource where rnf UntagResource' {..} = Prelude.rnf resourceArn `Prelude.seq` Prelude.rnf tagKeyList instance Data.ToHeaders UntagResource where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON UntagResource where toJSON UntagResource' {..} = Data.object ( Prelude.catMaybes [Prelude.Just ("TagKeyList" Data..= tagKeyList)] ) instance Data.ToPath UntagResource where toPath UntagResource' {..} = Prelude.mconcat ["/untag/", Data.toBS resourceArn] instance Data.ToQuery UntagResource where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newUntagResourceResponse' smart constructor. data UntagResourceResponse = UntagResourceResponse' { } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'UntagResourceResponse' with all optional fields omitted. -- -- Use or to modify other optional fields. newUntagResourceResponse :: UntagResourceResponse newUntagResourceResponse = UntagResourceResponse' instance Prelude.NFData UntagResourceResponse where rnf _ = ()