{-# 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.MediaTailor.UpdateLiveSource -- 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 live source\'s configuration. module Amazonka.MediaTailor.UpdateLiveSource ( -- * Creating a Request UpdateLiveSource (..), newUpdateLiveSource, -- * Request Lenses updateLiveSource_httpPackageConfigurations, updateLiveSource_liveSourceName, updateLiveSource_sourceLocationName, -- * Destructuring the Response UpdateLiveSourceResponse (..), newUpdateLiveSourceResponse, -- * Response Lenses updateLiveSourceResponse_arn, updateLiveSourceResponse_creationTime, updateLiveSourceResponse_httpPackageConfigurations, updateLiveSourceResponse_lastModifiedTime, updateLiveSourceResponse_liveSourceName, updateLiveSourceResponse_sourceLocationName, updateLiveSourceResponse_tags, updateLiveSourceResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.MediaTailor.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newUpdateLiveSource' smart constructor. data UpdateLiveSource = UpdateLiveSource' { -- | A list of HTTP package configurations for the live source on this -- account. httpPackageConfigurations :: [HttpPackageConfiguration], -- | The name of the live source. liveSourceName :: Prelude.Text, -- | The name of the source location associated with this Live Source. sourceLocationName :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'UpdateLiveSource' 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: -- -- 'httpPackageConfigurations', 'updateLiveSource_httpPackageConfigurations' - A list of HTTP package configurations for the live source on this -- account. -- -- 'liveSourceName', 'updateLiveSource_liveSourceName' - The name of the live source. -- -- 'sourceLocationName', 'updateLiveSource_sourceLocationName' - The name of the source location associated with this Live Source. newUpdateLiveSource :: -- | 'liveSourceName' Prelude.Text -> -- | 'sourceLocationName' Prelude.Text -> UpdateLiveSource newUpdateLiveSource pLiveSourceName_ pSourceLocationName_ = UpdateLiveSource' { httpPackageConfigurations = Prelude.mempty, liveSourceName = pLiveSourceName_, sourceLocationName = pSourceLocationName_ } -- | A list of HTTP package configurations for the live source on this -- account. updateLiveSource_httpPackageConfigurations :: Lens.Lens' UpdateLiveSource [HttpPackageConfiguration] updateLiveSource_httpPackageConfigurations = Lens.lens (\UpdateLiveSource' {httpPackageConfigurations} -> httpPackageConfigurations) (\s@UpdateLiveSource' {} a -> s {httpPackageConfigurations = a} :: UpdateLiveSource) Prelude.. Lens.coerced -- | The name of the live source. updateLiveSource_liveSourceName :: Lens.Lens' UpdateLiveSource Prelude.Text updateLiveSource_liveSourceName = Lens.lens (\UpdateLiveSource' {liveSourceName} -> liveSourceName) (\s@UpdateLiveSource' {} a -> s {liveSourceName = a} :: UpdateLiveSource) -- | The name of the source location associated with this Live Source. updateLiveSource_sourceLocationName :: Lens.Lens' UpdateLiveSource Prelude.Text updateLiveSource_sourceLocationName = Lens.lens (\UpdateLiveSource' {sourceLocationName} -> sourceLocationName) (\s@UpdateLiveSource' {} a -> s {sourceLocationName = a} :: UpdateLiveSource) instance Core.AWSRequest UpdateLiveSource where type AWSResponse UpdateLiveSource = UpdateLiveSourceResponse request overrides = Request.putJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> UpdateLiveSourceResponse' Prelude.<$> (x Data..?> "Arn") Prelude.<*> (x Data..?> "CreationTime") Prelude.<*> ( x Data..?> "HttpPackageConfigurations" Core..!@ Prelude.mempty ) Prelude.<*> (x Data..?> "LastModifiedTime") Prelude.<*> (x Data..?> "LiveSourceName") Prelude.<*> (x Data..?> "SourceLocationName") Prelude.<*> (x Data..?> "tags" Core..!@ Prelude.mempty) Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable UpdateLiveSource where hashWithSalt _salt UpdateLiveSource' {..} = _salt `Prelude.hashWithSalt` httpPackageConfigurations `Prelude.hashWithSalt` liveSourceName `Prelude.hashWithSalt` sourceLocationName instance Prelude.NFData UpdateLiveSource where rnf UpdateLiveSource' {..} = Prelude.rnf httpPackageConfigurations `Prelude.seq` Prelude.rnf liveSourceName `Prelude.seq` Prelude.rnf sourceLocationName instance Data.ToHeaders UpdateLiveSource where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON UpdateLiveSource where toJSON UpdateLiveSource' {..} = Data.object ( Prelude.catMaybes [ Prelude.Just ( "HttpPackageConfigurations" Data..= httpPackageConfigurations ) ] ) instance Data.ToPath UpdateLiveSource where toPath UpdateLiveSource' {..} = Prelude.mconcat [ "/sourceLocation/", Data.toBS sourceLocationName, "/liveSource/", Data.toBS liveSourceName ] instance Data.ToQuery UpdateLiveSource where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newUpdateLiveSourceResponse' smart constructor. data UpdateLiveSourceResponse = UpdateLiveSourceResponse' { -- | The Amazon Resource Name (ARN) associated with this live source. arn :: Prelude.Maybe Prelude.Text, -- | The timestamp that indicates when the live source was created. creationTime :: Prelude.Maybe Data.POSIX, -- | A list of HTTP package configurations for the live source on this -- account. httpPackageConfigurations :: Prelude.Maybe [HttpPackageConfiguration], -- | The timestamp that indicates when the live source was last modified. lastModifiedTime :: Prelude.Maybe Data.POSIX, -- | The name of the live source. liveSourceName :: Prelude.Maybe Prelude.Text, -- | The name of the source location associated with the live source. sourceLocationName :: Prelude.Maybe Prelude.Text, -- | The tags to assign to the live source. Tags are key-value pairs that you -- can associate with Amazon resources to help with organization, access -- control, and cost tracking. For more information, see -- . tags :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text), -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'UpdateLiveSourceResponse' 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', 'updateLiveSourceResponse_arn' - The Amazon Resource Name (ARN) associated with this live source. -- -- 'creationTime', 'updateLiveSourceResponse_creationTime' - The timestamp that indicates when the live source was created. -- -- 'httpPackageConfigurations', 'updateLiveSourceResponse_httpPackageConfigurations' - A list of HTTP package configurations for the live source on this -- account. -- -- 'lastModifiedTime', 'updateLiveSourceResponse_lastModifiedTime' - The timestamp that indicates when the live source was last modified. -- -- 'liveSourceName', 'updateLiveSourceResponse_liveSourceName' - The name of the live source. -- -- 'sourceLocationName', 'updateLiveSourceResponse_sourceLocationName' - The name of the source location associated with the live source. -- -- 'tags', 'updateLiveSourceResponse_tags' - The tags to assign to the live source. Tags are key-value pairs that you -- can associate with Amazon resources to help with organization, access -- control, and cost tracking. For more information, see -- . -- -- 'httpStatus', 'updateLiveSourceResponse_httpStatus' - The response's http status code. newUpdateLiveSourceResponse :: -- | 'httpStatus' Prelude.Int -> UpdateLiveSourceResponse newUpdateLiveSourceResponse pHttpStatus_ = UpdateLiveSourceResponse' { arn = Prelude.Nothing, creationTime = Prelude.Nothing, httpPackageConfigurations = Prelude.Nothing, lastModifiedTime = Prelude.Nothing, liveSourceName = Prelude.Nothing, sourceLocationName = Prelude.Nothing, tags = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | The Amazon Resource Name (ARN) associated with this live source. updateLiveSourceResponse_arn :: Lens.Lens' UpdateLiveSourceResponse (Prelude.Maybe Prelude.Text) updateLiveSourceResponse_arn = Lens.lens (\UpdateLiveSourceResponse' {arn} -> arn) (\s@UpdateLiveSourceResponse' {} a -> s {arn = a} :: UpdateLiveSourceResponse) -- | The timestamp that indicates when the live source was created. updateLiveSourceResponse_creationTime :: Lens.Lens' UpdateLiveSourceResponse (Prelude.Maybe Prelude.UTCTime) updateLiveSourceResponse_creationTime = Lens.lens (\UpdateLiveSourceResponse' {creationTime} -> creationTime) (\s@UpdateLiveSourceResponse' {} a -> s {creationTime = a} :: UpdateLiveSourceResponse) Prelude.. Lens.mapping Data._Time -- | A list of HTTP package configurations for the live source on this -- account. updateLiveSourceResponse_httpPackageConfigurations :: Lens.Lens' UpdateLiveSourceResponse (Prelude.Maybe [HttpPackageConfiguration]) updateLiveSourceResponse_httpPackageConfigurations = Lens.lens (\UpdateLiveSourceResponse' {httpPackageConfigurations} -> httpPackageConfigurations) (\s@UpdateLiveSourceResponse' {} a -> s {httpPackageConfigurations = a} :: UpdateLiveSourceResponse) Prelude.. Lens.mapping Lens.coerced -- | The timestamp that indicates when the live source was last modified. updateLiveSourceResponse_lastModifiedTime :: Lens.Lens' UpdateLiveSourceResponse (Prelude.Maybe Prelude.UTCTime) updateLiveSourceResponse_lastModifiedTime = Lens.lens (\UpdateLiveSourceResponse' {lastModifiedTime} -> lastModifiedTime) (\s@UpdateLiveSourceResponse' {} a -> s {lastModifiedTime = a} :: UpdateLiveSourceResponse) Prelude.. Lens.mapping Data._Time -- | The name of the live source. updateLiveSourceResponse_liveSourceName :: Lens.Lens' UpdateLiveSourceResponse (Prelude.Maybe Prelude.Text) updateLiveSourceResponse_liveSourceName = Lens.lens (\UpdateLiveSourceResponse' {liveSourceName} -> liveSourceName) (\s@UpdateLiveSourceResponse' {} a -> s {liveSourceName = a} :: UpdateLiveSourceResponse) -- | The name of the source location associated with the live source. updateLiveSourceResponse_sourceLocationName :: Lens.Lens' UpdateLiveSourceResponse (Prelude.Maybe Prelude.Text) updateLiveSourceResponse_sourceLocationName = Lens.lens (\UpdateLiveSourceResponse' {sourceLocationName} -> sourceLocationName) (\s@UpdateLiveSourceResponse' {} a -> s {sourceLocationName = a} :: UpdateLiveSourceResponse) -- | The tags to assign to the live source. Tags are key-value pairs that you -- can associate with Amazon resources to help with organization, access -- control, and cost tracking. For more information, see -- . updateLiveSourceResponse_tags :: Lens.Lens' UpdateLiveSourceResponse (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text)) updateLiveSourceResponse_tags = Lens.lens (\UpdateLiveSourceResponse' {tags} -> tags) (\s@UpdateLiveSourceResponse' {} a -> s {tags = a} :: UpdateLiveSourceResponse) Prelude.. Lens.mapping Lens.coerced -- | The response's http status code. updateLiveSourceResponse_httpStatus :: Lens.Lens' UpdateLiveSourceResponse Prelude.Int updateLiveSourceResponse_httpStatus = Lens.lens (\UpdateLiveSourceResponse' {httpStatus} -> httpStatus) (\s@UpdateLiveSourceResponse' {} a -> s {httpStatus = a} :: UpdateLiveSourceResponse) instance Prelude.NFData UpdateLiveSourceResponse where rnf UpdateLiveSourceResponse' {..} = Prelude.rnf arn `Prelude.seq` Prelude.rnf creationTime `Prelude.seq` Prelude.rnf httpPackageConfigurations `Prelude.seq` Prelude.rnf lastModifiedTime `Prelude.seq` Prelude.rnf liveSourceName `Prelude.seq` Prelude.rnf sourceLocationName `Prelude.seq` Prelude.rnf tags `Prelude.seq` Prelude.rnf httpStatus