{-# 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.CloudDirectory.UpdateLinkAttributes -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Updates a given typed link’s attributes. Attributes to be updated must -- not contribute to the typed link’s identity, as defined by its -- @IdentityAttributeOrder@. module Amazonka.CloudDirectory.UpdateLinkAttributes ( -- * Creating a Request UpdateLinkAttributes (..), newUpdateLinkAttributes, -- * Request Lenses updateLinkAttributes_directoryArn, updateLinkAttributes_typedLinkSpecifier, updateLinkAttributes_attributeUpdates, -- * Destructuring the Response UpdateLinkAttributesResponse (..), newUpdateLinkAttributesResponse, -- * Response Lenses updateLinkAttributesResponse_httpStatus, ) where import Amazonka.CloudDirectory.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:/ 'newUpdateLinkAttributes' smart constructor. data UpdateLinkAttributes = UpdateLinkAttributes' { -- | The Amazon Resource Name (ARN) that is associated with the Directory -- where the updated typed link resides. For more information, see arns or -- . directoryArn :: Prelude.Text, -- | Allows a typed link specifier to be accepted as input. typedLinkSpecifier :: TypedLinkSpecifier, -- | The attributes update structure. attributeUpdates :: [LinkAttributeUpdate] } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'UpdateLinkAttributes' 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: -- -- 'directoryArn', 'updateLinkAttributes_directoryArn' - The Amazon Resource Name (ARN) that is associated with the Directory -- where the updated typed link resides. For more information, see arns or -- . -- -- 'typedLinkSpecifier', 'updateLinkAttributes_typedLinkSpecifier' - Allows a typed link specifier to be accepted as input. -- -- 'attributeUpdates', 'updateLinkAttributes_attributeUpdates' - The attributes update structure. newUpdateLinkAttributes :: -- | 'directoryArn' Prelude.Text -> -- | 'typedLinkSpecifier' TypedLinkSpecifier -> UpdateLinkAttributes newUpdateLinkAttributes pDirectoryArn_ pTypedLinkSpecifier_ = UpdateLinkAttributes' { directoryArn = pDirectoryArn_, typedLinkSpecifier = pTypedLinkSpecifier_, attributeUpdates = Prelude.mempty } -- | The Amazon Resource Name (ARN) that is associated with the Directory -- where the updated typed link resides. For more information, see arns or -- . updateLinkAttributes_directoryArn :: Lens.Lens' UpdateLinkAttributes Prelude.Text updateLinkAttributes_directoryArn = Lens.lens (\UpdateLinkAttributes' {directoryArn} -> directoryArn) (\s@UpdateLinkAttributes' {} a -> s {directoryArn = a} :: UpdateLinkAttributes) -- | Allows a typed link specifier to be accepted as input. updateLinkAttributes_typedLinkSpecifier :: Lens.Lens' UpdateLinkAttributes TypedLinkSpecifier updateLinkAttributes_typedLinkSpecifier = Lens.lens (\UpdateLinkAttributes' {typedLinkSpecifier} -> typedLinkSpecifier) (\s@UpdateLinkAttributes' {} a -> s {typedLinkSpecifier = a} :: UpdateLinkAttributes) -- | The attributes update structure. updateLinkAttributes_attributeUpdates :: Lens.Lens' UpdateLinkAttributes [LinkAttributeUpdate] updateLinkAttributes_attributeUpdates = Lens.lens (\UpdateLinkAttributes' {attributeUpdates} -> attributeUpdates) (\s@UpdateLinkAttributes' {} a -> s {attributeUpdates = a} :: UpdateLinkAttributes) Prelude.. Lens.coerced instance Core.AWSRequest UpdateLinkAttributes where type AWSResponse UpdateLinkAttributes = UpdateLinkAttributesResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveEmpty ( \s h x -> UpdateLinkAttributesResponse' Prelude.<$> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable UpdateLinkAttributes where hashWithSalt _salt UpdateLinkAttributes' {..} = _salt `Prelude.hashWithSalt` directoryArn `Prelude.hashWithSalt` typedLinkSpecifier `Prelude.hashWithSalt` attributeUpdates instance Prelude.NFData UpdateLinkAttributes where rnf UpdateLinkAttributes' {..} = Prelude.rnf directoryArn `Prelude.seq` Prelude.rnf typedLinkSpecifier `Prelude.seq` Prelude.rnf attributeUpdates instance Data.ToHeaders UpdateLinkAttributes where toHeaders UpdateLinkAttributes' {..} = Prelude.mconcat ["x-amz-data-partition" Data.=# directoryArn] instance Data.ToJSON UpdateLinkAttributes where toJSON UpdateLinkAttributes' {..} = Data.object ( Prelude.catMaybes [ Prelude.Just ("TypedLinkSpecifier" Data..= typedLinkSpecifier), Prelude.Just ("AttributeUpdates" Data..= attributeUpdates) ] ) instance Data.ToPath UpdateLinkAttributes where toPath = Prelude.const "/amazonclouddirectory/2017-01-11/typedlink/attributes/update" instance Data.ToQuery UpdateLinkAttributes where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newUpdateLinkAttributesResponse' smart constructor. data UpdateLinkAttributesResponse = UpdateLinkAttributesResponse' { -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'UpdateLinkAttributesResponse' 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', 'updateLinkAttributesResponse_httpStatus' - The response's http status code. newUpdateLinkAttributesResponse :: -- | 'httpStatus' Prelude.Int -> UpdateLinkAttributesResponse newUpdateLinkAttributesResponse pHttpStatus_ = UpdateLinkAttributesResponse' { httpStatus = pHttpStatus_ } -- | The response's http status code. updateLinkAttributesResponse_httpStatus :: Lens.Lens' UpdateLinkAttributesResponse Prelude.Int updateLinkAttributesResponse_httpStatus = Lens.lens (\UpdateLinkAttributesResponse' {httpStatus} -> httpStatus) (\s@UpdateLinkAttributesResponse' {} a -> s {httpStatus = a} :: UpdateLinkAttributesResponse) instance Prelude.NFData UpdateLinkAttributesResponse where rnf UpdateLinkAttributesResponse' {..} = Prelude.rnf httpStatus