{-# 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.Transfer.TagResource -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Attaches a key-value pair to a resource, as identified by its Amazon -- Resource Name (ARN). Resources are users, servers, roles, and other -- entities. -- -- There is no response returned from this call. module Amazonka.Transfer.TagResource ( -- * Creating a Request TagResource (..), newTagResource, -- * Request Lenses tagResource_arn, tagResource_tags, -- * Destructuring the Response TagResourceResponse (..), newTagResourceResponse, ) 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.Transfer.Types -- | /See:/ 'newTagResource' smart constructor. data TagResource = TagResource' { -- | An Amazon Resource Name (ARN) for a specific Amazon Web Services -- resource, such as a server, user, or role. arn :: Prelude.Text, -- | Key-value pairs assigned to ARNs that you can use to group and search -- for resources by type. You can attach this metadata to user accounts for -- any purpose. tags :: Prelude.NonEmpty Tag } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'TagResource' 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: -- -- 'arn', 'tagResource_arn' - An Amazon Resource Name (ARN) for a specific Amazon Web Services -- resource, such as a server, user, or role. -- -- 'tags', 'tagResource_tags' - Key-value pairs assigned to ARNs that you can use to group and search -- for resources by type. You can attach this metadata to user accounts for -- any purpose. newTagResource :: -- | 'arn' Prelude.Text -> -- | 'tags' Prelude.NonEmpty Tag -> TagResource newTagResource pArn_ pTags_ = TagResource' { arn = pArn_, tags = Lens.coerced Lens.# pTags_ } -- | An Amazon Resource Name (ARN) for a specific Amazon Web Services -- resource, such as a server, user, or role. tagResource_arn :: Lens.Lens' TagResource Prelude.Text tagResource_arn = Lens.lens (\TagResource' {arn} -> arn) (\s@TagResource' {} a -> s {arn = a} :: TagResource) -- | Key-value pairs assigned to ARNs that you can use to group and search -- for resources by type. You can attach this metadata to user accounts for -- any purpose. tagResource_tags :: Lens.Lens' TagResource (Prelude.NonEmpty Tag) tagResource_tags = Lens.lens (\TagResource' {tags} -> tags) (\s@TagResource' {} a -> s {tags = a} :: TagResource) Prelude.. Lens.coerced instance Core.AWSRequest TagResource where type AWSResponse TagResource = TagResourceResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveNull TagResourceResponse' instance Prelude.Hashable TagResource where hashWithSalt _salt TagResource' {..} = _salt `Prelude.hashWithSalt` arn `Prelude.hashWithSalt` tags instance Prelude.NFData TagResource where rnf TagResource' {..} = Prelude.rnf arn `Prelude.seq` Prelude.rnf tags instance Data.ToHeaders TagResource where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "TransferService.TagResource" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON TagResource where toJSON TagResource' {..} = Data.object ( Prelude.catMaybes [ Prelude.Just ("Arn" Data..= arn), Prelude.Just ("Tags" Data..= tags) ] ) instance Data.ToPath TagResource where toPath = Prelude.const "/" instance Data.ToQuery TagResource where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newTagResourceResponse' smart constructor. data TagResourceResponse = TagResourceResponse' { } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'TagResourceResponse' with all optional fields omitted. -- -- Use or to modify other optional fields. newTagResourceResponse :: TagResourceResponse newTagResourceResponse = TagResourceResponse' instance Prelude.NFData TagResourceResponse where rnf _ = ()