{-# 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.QuickSight.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 tag or tags from a resource. module Amazonka.QuickSight.UntagResource ( -- * Creating a Request UntagResource (..), newUntagResource, -- * Request Lenses untagResource_resourceArn, untagResource_tagKeys, -- * Destructuring the Response UntagResourceResponse (..), newUntagResourceResponse, -- * Response Lenses untagResourceResponse_requestId, untagResourceResponse_status, ) where 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 Amazonka.QuickSight.Types import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newUntagResource' smart constructor. data UntagResource = UntagResource' { -- | The Amazon Resource Name (ARN) of the resource that you want to untag. resourceArn :: Prelude.Text, -- | The keys of the key-value pairs for the resource tag or tags assigned to -- the resource. tagKeys :: Prelude.NonEmpty Prelude.Text } deriving (Prelude.Eq, Prelude.Read, 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' - The Amazon Resource Name (ARN) of the resource that you want to untag. -- -- 'tagKeys', 'untagResource_tagKeys' - The keys of the key-value pairs for the resource tag or tags assigned to -- the resource. newUntagResource :: -- | 'resourceArn' Prelude.Text -> -- | 'tagKeys' Prelude.NonEmpty Prelude.Text -> UntagResource newUntagResource pResourceArn_ pTagKeys_ = UntagResource' { resourceArn = pResourceArn_, tagKeys = Lens.coerced Lens.# pTagKeys_ } -- | The Amazon Resource Name (ARN) of the resource that you want to untag. untagResource_resourceArn :: Lens.Lens' UntagResource Prelude.Text untagResource_resourceArn = Lens.lens (\UntagResource' {resourceArn} -> resourceArn) (\s@UntagResource' {} a -> s {resourceArn = a} :: UntagResource) -- | The keys of the key-value pairs for the resource tag or tags assigned to -- the resource. untagResource_tagKeys :: Lens.Lens' UntagResource (Prelude.NonEmpty Prelude.Text) untagResource_tagKeys = Lens.lens (\UntagResource' {tagKeys} -> tagKeys) (\s@UntagResource' {} a -> s {tagKeys = a} :: UntagResource) Prelude.. Lens.coerced instance Core.AWSRequest UntagResource where type AWSResponse UntagResource = UntagResourceResponse request overrides = Request.delete (overrides defaultService) response = Response.receiveJSON ( \s h x -> UntagResourceResponse' Prelude.<$> (x Data..?> "RequestId") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable UntagResource where hashWithSalt _salt UntagResource' {..} = _salt `Prelude.hashWithSalt` resourceArn `Prelude.hashWithSalt` tagKeys instance Prelude.NFData UntagResource where rnf UntagResource' {..} = Prelude.rnf resourceArn `Prelude.seq` Prelude.rnf tagKeys instance Data.ToHeaders UntagResource where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.0" :: Prelude.ByteString ) ] ) instance Data.ToPath UntagResource where toPath UntagResource' {..} = Prelude.mconcat ["/resources/", Data.toBS resourceArn, "/tags"] instance Data.ToQuery UntagResource where toQuery UntagResource' {..} = Prelude.mconcat ["keys" Data.=: Data.toQueryList "member" tagKeys] -- | /See:/ 'newUntagResourceResponse' smart constructor. data UntagResourceResponse = UntagResourceResponse' { -- | The Amazon Web Services request ID for this operation. requestId :: Prelude.Maybe Prelude.Text, -- | The HTTP status of the request. status :: Prelude.Int } 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. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'requestId', 'untagResourceResponse_requestId' - The Amazon Web Services request ID for this operation. -- -- 'status', 'untagResourceResponse_status' - The HTTP status of the request. newUntagResourceResponse :: -- | 'status' Prelude.Int -> UntagResourceResponse newUntagResourceResponse pStatus_ = UntagResourceResponse' { requestId = Prelude.Nothing, status = pStatus_ } -- | The Amazon Web Services request ID for this operation. untagResourceResponse_requestId :: Lens.Lens' UntagResourceResponse (Prelude.Maybe Prelude.Text) untagResourceResponse_requestId = Lens.lens (\UntagResourceResponse' {requestId} -> requestId) (\s@UntagResourceResponse' {} a -> s {requestId = a} :: UntagResourceResponse) -- | The HTTP status of the request. untagResourceResponse_status :: Lens.Lens' UntagResourceResponse Prelude.Int untagResourceResponse_status = Lens.lens (\UntagResourceResponse' {status} -> status) (\s@UntagResourceResponse' {} a -> s {status = a} :: UntagResourceResponse) instance Prelude.NFData UntagResourceResponse where rnf UntagResourceResponse' {..} = Prelude.rnf requestId `Prelude.seq` Prelude.rnf status