{-# 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.WellArchitected.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) -- -- Deletes specified tags from a resource. -- -- The WorkloadArn parameter can be either a workload ARN or a custom lens -- ARN. -- -- To specify multiple tags, use separate __tagKeys__ parameters, for -- example: -- -- @DELETE \/tags\/WorkloadArn?tagKeys=key1&tagKeys=key2@ module Amazonka.WellArchitected.UntagResource ( -- * Creating a Request UntagResource (..), newUntagResource, -- * Request Lenses untagResource_workloadArn, untagResource_tagKeys, -- * Destructuring the Response UntagResourceResponse (..), newUntagResourceResponse, -- * Response Lenses untagResourceResponse_httpStatus, ) 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 qualified Amazonka.Request as Request import qualified Amazonka.Response as Response import Amazonka.WellArchitected.Types -- | /See:/ 'newUntagResource' smart constructor. data UntagResource = UntagResource' { workloadArn :: Prelude.Text, -- | A list of tag keys. Existing tags of the resource whose keys are members -- of this list are removed from 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: -- -- 'workloadArn', 'untagResource_workloadArn' - Undocumented member. -- -- 'tagKeys', 'untagResource_tagKeys' - A list of tag keys. Existing tags of the resource whose keys are members -- of this list are removed from the resource. newUntagResource :: -- | 'workloadArn' Prelude.Text -> -- | 'tagKeys' Prelude.NonEmpty Prelude.Text -> UntagResource newUntagResource pWorkloadArn_ pTagKeys_ = UntagResource' { workloadArn = pWorkloadArn_, tagKeys = Lens.coerced Lens.# pTagKeys_ } -- | Undocumented member. untagResource_workloadArn :: Lens.Lens' UntagResource Prelude.Text untagResource_workloadArn = Lens.lens (\UntagResource' {workloadArn} -> workloadArn) (\s@UntagResource' {} a -> s {workloadArn = a} :: UntagResource) -- | A list of tag keys. Existing tags of the resource whose keys are members -- of this list are removed from 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.receiveEmpty ( \s h x -> UntagResourceResponse' Prelude.<$> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable UntagResource where hashWithSalt _salt UntagResource' {..} = _salt `Prelude.hashWithSalt` workloadArn `Prelude.hashWithSalt` tagKeys instance Prelude.NFData UntagResource where rnf UntagResource' {..} = Prelude.rnf workloadArn `Prelude.seq` Prelude.rnf tagKeys instance Data.ToHeaders UntagResource where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToPath UntagResource where toPath UntagResource' {..} = Prelude.mconcat ["/tags/", Data.toBS workloadArn] instance Data.ToQuery UntagResource where toQuery UntagResource' {..} = Prelude.mconcat ["tagKeys" Data.=: Data.toQueryList "member" tagKeys] -- | /See:/ 'newUntagResourceResponse' smart constructor. data UntagResourceResponse = UntagResourceResponse' { -- | The response's http status code. httpStatus :: 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: -- -- 'httpStatus', 'untagResourceResponse_httpStatus' - The response's http status code. newUntagResourceResponse :: -- | 'httpStatus' Prelude.Int -> UntagResourceResponse newUntagResourceResponse pHttpStatus_ = UntagResourceResponse' {httpStatus = pHttpStatus_} -- | The response's http status code. untagResourceResponse_httpStatus :: Lens.Lens' UntagResourceResponse Prelude.Int untagResourceResponse_httpStatus = Lens.lens (\UntagResourceResponse' {httpStatus} -> httpStatus) (\s@UntagResourceResponse' {} a -> s {httpStatus = a} :: UntagResourceResponse) instance Prelude.NFData UntagResourceResponse where rnf UntagResourceResponse' {..} = Prelude.rnf httpStatus