amazonka-medialive-2.0: gen/Amazonka/MediaLive/ListOfferings.hs
{-# 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.MediaLive.ListOfferings
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- List offerings available for purchase.
--
-- This operation returns paginated results.
module Amazonka.MediaLive.ListOfferings
( -- * Creating a Request
ListOfferings (..),
newListOfferings,
-- * Request Lenses
listOfferings_channelClass,
listOfferings_channelConfiguration,
listOfferings_codec,
listOfferings_duration,
listOfferings_maxResults,
listOfferings_maximumBitrate,
listOfferings_maximumFramerate,
listOfferings_nextToken,
listOfferings_resolution,
listOfferings_resourceType,
listOfferings_specialFeature,
listOfferings_videoQuality,
-- * Destructuring the Response
ListOfferingsResponse (..),
newListOfferingsResponse,
-- * Response Lenses
listOfferingsResponse_nextToken,
listOfferingsResponse_offerings,
listOfferingsResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.MediaLive.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | Placeholder documentation for ListOfferingsRequest
--
-- /See:/ 'newListOfferings' smart constructor.
data ListOfferings = ListOfferings'
{ -- | Filter by channel class, \'STANDARD\' or \'SINGLE_PIPELINE\'
channelClass :: Prelude.Maybe Prelude.Text,
-- | Filter to offerings that match the configuration of an existing channel,
-- e.g. \'2345678\' (a channel ID)
channelConfiguration :: Prelude.Maybe Prelude.Text,
-- | Filter by codec, \'AVC\', \'HEVC\', \'MPEG2\', \'AUDIO\', or \'LINK\'
codec :: Prelude.Maybe Prelude.Text,
-- | Filter by offering duration, e.g. \'12\'
duration :: Prelude.Maybe Prelude.Text,
maxResults :: Prelude.Maybe Prelude.Natural,
-- | Filter by bitrate, \'MAX_10_MBPS\', \'MAX_20_MBPS\', or \'MAX_50_MBPS\'
maximumBitrate :: Prelude.Maybe Prelude.Text,
-- | Filter by framerate, \'MAX_30_FPS\' or \'MAX_60_FPS\'
maximumFramerate :: Prelude.Maybe Prelude.Text,
nextToken :: Prelude.Maybe Prelude.Text,
-- | Filter by resolution, \'SD\', \'HD\', \'FHD\', or \'UHD\'
resolution :: Prelude.Maybe Prelude.Text,
-- | Filter by resource type, \'INPUT\', \'OUTPUT\', \'MULTIPLEX\', or
-- \'CHANNEL\'
resourceType :: Prelude.Maybe Prelude.Text,
-- | Filter by special feature, \'ADVANCED_AUDIO\' or \'AUDIO_NORMALIZATION\'
specialFeature :: Prelude.Maybe Prelude.Text,
-- | Filter by video quality, \'STANDARD\', \'ENHANCED\', or \'PREMIUM\'
videoQuality :: Prelude.Maybe Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'ListOfferings' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'channelClass', 'listOfferings_channelClass' - Filter by channel class, \'STANDARD\' or \'SINGLE_PIPELINE\'
--
-- 'channelConfiguration', 'listOfferings_channelConfiguration' - Filter to offerings that match the configuration of an existing channel,
-- e.g. \'2345678\' (a channel ID)
--
-- 'codec', 'listOfferings_codec' - Filter by codec, \'AVC\', \'HEVC\', \'MPEG2\', \'AUDIO\', or \'LINK\'
--
-- 'duration', 'listOfferings_duration' - Filter by offering duration, e.g. \'12\'
--
-- 'maxResults', 'listOfferings_maxResults' - Undocumented member.
--
-- 'maximumBitrate', 'listOfferings_maximumBitrate' - Filter by bitrate, \'MAX_10_MBPS\', \'MAX_20_MBPS\', or \'MAX_50_MBPS\'
--
-- 'maximumFramerate', 'listOfferings_maximumFramerate' - Filter by framerate, \'MAX_30_FPS\' or \'MAX_60_FPS\'
--
-- 'nextToken', 'listOfferings_nextToken' - Undocumented member.
--
-- 'resolution', 'listOfferings_resolution' - Filter by resolution, \'SD\', \'HD\', \'FHD\', or \'UHD\'
--
-- 'resourceType', 'listOfferings_resourceType' - Filter by resource type, \'INPUT\', \'OUTPUT\', \'MULTIPLEX\', or
-- \'CHANNEL\'
--
-- 'specialFeature', 'listOfferings_specialFeature' - Filter by special feature, \'ADVANCED_AUDIO\' or \'AUDIO_NORMALIZATION\'
--
-- 'videoQuality', 'listOfferings_videoQuality' - Filter by video quality, \'STANDARD\', \'ENHANCED\', or \'PREMIUM\'
newListOfferings ::
ListOfferings
newListOfferings =
ListOfferings'
{ channelClass = Prelude.Nothing,
channelConfiguration = Prelude.Nothing,
codec = Prelude.Nothing,
duration = Prelude.Nothing,
maxResults = Prelude.Nothing,
maximumBitrate = Prelude.Nothing,
maximumFramerate = Prelude.Nothing,
nextToken = Prelude.Nothing,
resolution = Prelude.Nothing,
resourceType = Prelude.Nothing,
specialFeature = Prelude.Nothing,
videoQuality = Prelude.Nothing
}
-- | Filter by channel class, \'STANDARD\' or \'SINGLE_PIPELINE\'
listOfferings_channelClass :: Lens.Lens' ListOfferings (Prelude.Maybe Prelude.Text)
listOfferings_channelClass = Lens.lens (\ListOfferings' {channelClass} -> channelClass) (\s@ListOfferings' {} a -> s {channelClass = a} :: ListOfferings)
-- | Filter to offerings that match the configuration of an existing channel,
-- e.g. \'2345678\' (a channel ID)
listOfferings_channelConfiguration :: Lens.Lens' ListOfferings (Prelude.Maybe Prelude.Text)
listOfferings_channelConfiguration = Lens.lens (\ListOfferings' {channelConfiguration} -> channelConfiguration) (\s@ListOfferings' {} a -> s {channelConfiguration = a} :: ListOfferings)
-- | Filter by codec, \'AVC\', \'HEVC\', \'MPEG2\', \'AUDIO\', or \'LINK\'
listOfferings_codec :: Lens.Lens' ListOfferings (Prelude.Maybe Prelude.Text)
listOfferings_codec = Lens.lens (\ListOfferings' {codec} -> codec) (\s@ListOfferings' {} a -> s {codec = a} :: ListOfferings)
-- | Filter by offering duration, e.g. \'12\'
listOfferings_duration :: Lens.Lens' ListOfferings (Prelude.Maybe Prelude.Text)
listOfferings_duration = Lens.lens (\ListOfferings' {duration} -> duration) (\s@ListOfferings' {} a -> s {duration = a} :: ListOfferings)
-- | Undocumented member.
listOfferings_maxResults :: Lens.Lens' ListOfferings (Prelude.Maybe Prelude.Natural)
listOfferings_maxResults = Lens.lens (\ListOfferings' {maxResults} -> maxResults) (\s@ListOfferings' {} a -> s {maxResults = a} :: ListOfferings)
-- | Filter by bitrate, \'MAX_10_MBPS\', \'MAX_20_MBPS\', or \'MAX_50_MBPS\'
listOfferings_maximumBitrate :: Lens.Lens' ListOfferings (Prelude.Maybe Prelude.Text)
listOfferings_maximumBitrate = Lens.lens (\ListOfferings' {maximumBitrate} -> maximumBitrate) (\s@ListOfferings' {} a -> s {maximumBitrate = a} :: ListOfferings)
-- | Filter by framerate, \'MAX_30_FPS\' or \'MAX_60_FPS\'
listOfferings_maximumFramerate :: Lens.Lens' ListOfferings (Prelude.Maybe Prelude.Text)
listOfferings_maximumFramerate = Lens.lens (\ListOfferings' {maximumFramerate} -> maximumFramerate) (\s@ListOfferings' {} a -> s {maximumFramerate = a} :: ListOfferings)
-- | Undocumented member.
listOfferings_nextToken :: Lens.Lens' ListOfferings (Prelude.Maybe Prelude.Text)
listOfferings_nextToken = Lens.lens (\ListOfferings' {nextToken} -> nextToken) (\s@ListOfferings' {} a -> s {nextToken = a} :: ListOfferings)
-- | Filter by resolution, \'SD\', \'HD\', \'FHD\', or \'UHD\'
listOfferings_resolution :: Lens.Lens' ListOfferings (Prelude.Maybe Prelude.Text)
listOfferings_resolution = Lens.lens (\ListOfferings' {resolution} -> resolution) (\s@ListOfferings' {} a -> s {resolution = a} :: ListOfferings)
-- | Filter by resource type, \'INPUT\', \'OUTPUT\', \'MULTIPLEX\', or
-- \'CHANNEL\'
listOfferings_resourceType :: Lens.Lens' ListOfferings (Prelude.Maybe Prelude.Text)
listOfferings_resourceType = Lens.lens (\ListOfferings' {resourceType} -> resourceType) (\s@ListOfferings' {} a -> s {resourceType = a} :: ListOfferings)
-- | Filter by special feature, \'ADVANCED_AUDIO\' or \'AUDIO_NORMALIZATION\'
listOfferings_specialFeature :: Lens.Lens' ListOfferings (Prelude.Maybe Prelude.Text)
listOfferings_specialFeature = Lens.lens (\ListOfferings' {specialFeature} -> specialFeature) (\s@ListOfferings' {} a -> s {specialFeature = a} :: ListOfferings)
-- | Filter by video quality, \'STANDARD\', \'ENHANCED\', or \'PREMIUM\'
listOfferings_videoQuality :: Lens.Lens' ListOfferings (Prelude.Maybe Prelude.Text)
listOfferings_videoQuality = Lens.lens (\ListOfferings' {videoQuality} -> videoQuality) (\s@ListOfferings' {} a -> s {videoQuality = a} :: ListOfferings)
instance Core.AWSPager ListOfferings where
page rq rs
| Core.stop
( rs
Lens.^? listOfferingsResponse_nextToken
Prelude.. Lens._Just
) =
Prelude.Nothing
| Core.stop
( rs
Lens.^? listOfferingsResponse_offerings
Prelude.. Lens._Just
) =
Prelude.Nothing
| Prelude.otherwise =
Prelude.Just
Prelude.$ rq
Prelude.& listOfferings_nextToken
Lens..~ rs
Lens.^? listOfferingsResponse_nextToken
Prelude.. Lens._Just
instance Core.AWSRequest ListOfferings where
type
AWSResponse ListOfferings =
ListOfferingsResponse
request overrides =
Request.get (overrides defaultService)
response =
Response.receiveJSON
( \s h x ->
ListOfferingsResponse'
Prelude.<$> (x Data..?> "nextToken")
Prelude.<*> (x Data..?> "offerings" Core..!@ Prelude.mempty)
Prelude.<*> (Prelude.pure (Prelude.fromEnum s))
)
instance Prelude.Hashable ListOfferings where
hashWithSalt _salt ListOfferings' {..} =
_salt
`Prelude.hashWithSalt` channelClass
`Prelude.hashWithSalt` channelConfiguration
`Prelude.hashWithSalt` codec
`Prelude.hashWithSalt` duration
`Prelude.hashWithSalt` maxResults
`Prelude.hashWithSalt` maximumBitrate
`Prelude.hashWithSalt` maximumFramerate
`Prelude.hashWithSalt` nextToken
`Prelude.hashWithSalt` resolution
`Prelude.hashWithSalt` resourceType
`Prelude.hashWithSalt` specialFeature
`Prelude.hashWithSalt` videoQuality
instance Prelude.NFData ListOfferings where
rnf ListOfferings' {..} =
Prelude.rnf channelClass
`Prelude.seq` Prelude.rnf channelConfiguration
`Prelude.seq` Prelude.rnf codec
`Prelude.seq` Prelude.rnf duration
`Prelude.seq` Prelude.rnf maxResults
`Prelude.seq` Prelude.rnf maximumBitrate
`Prelude.seq` Prelude.rnf maximumFramerate
`Prelude.seq` Prelude.rnf nextToken
`Prelude.seq` Prelude.rnf resolution
`Prelude.seq` Prelude.rnf resourceType
`Prelude.seq` Prelude.rnf specialFeature
`Prelude.seq` Prelude.rnf videoQuality
instance Data.ToHeaders ListOfferings where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToPath ListOfferings where
toPath = Prelude.const "/prod/offerings"
instance Data.ToQuery ListOfferings where
toQuery ListOfferings' {..} =
Prelude.mconcat
[ "channelClass" Data.=: channelClass,
"channelConfiguration" Data.=: channelConfiguration,
"codec" Data.=: codec,
"duration" Data.=: duration,
"maxResults" Data.=: maxResults,
"maximumBitrate" Data.=: maximumBitrate,
"maximumFramerate" Data.=: maximumFramerate,
"nextToken" Data.=: nextToken,
"resolution" Data.=: resolution,
"resourceType" Data.=: resourceType,
"specialFeature" Data.=: specialFeature,
"videoQuality" Data.=: videoQuality
]
-- | Placeholder documentation for ListOfferingsResponse
--
-- /See:/ 'newListOfferingsResponse' smart constructor.
data ListOfferingsResponse = ListOfferingsResponse'
{ -- | Token to retrieve the next page of results
nextToken :: Prelude.Maybe Prelude.Text,
-- | List of offerings
offerings :: Prelude.Maybe [Offering],
-- | The response's http status code.
httpStatus :: Prelude.Int
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'ListOfferingsResponse' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'nextToken', 'listOfferingsResponse_nextToken' - Token to retrieve the next page of results
--
-- 'offerings', 'listOfferingsResponse_offerings' - List of offerings
--
-- 'httpStatus', 'listOfferingsResponse_httpStatus' - The response's http status code.
newListOfferingsResponse ::
-- | 'httpStatus'
Prelude.Int ->
ListOfferingsResponse
newListOfferingsResponse pHttpStatus_ =
ListOfferingsResponse'
{ nextToken = Prelude.Nothing,
offerings = Prelude.Nothing,
httpStatus = pHttpStatus_
}
-- | Token to retrieve the next page of results
listOfferingsResponse_nextToken :: Lens.Lens' ListOfferingsResponse (Prelude.Maybe Prelude.Text)
listOfferingsResponse_nextToken = Lens.lens (\ListOfferingsResponse' {nextToken} -> nextToken) (\s@ListOfferingsResponse' {} a -> s {nextToken = a} :: ListOfferingsResponse)
-- | List of offerings
listOfferingsResponse_offerings :: Lens.Lens' ListOfferingsResponse (Prelude.Maybe [Offering])
listOfferingsResponse_offerings = Lens.lens (\ListOfferingsResponse' {offerings} -> offerings) (\s@ListOfferingsResponse' {} a -> s {offerings = a} :: ListOfferingsResponse) Prelude.. Lens.mapping Lens.coerced
-- | The response's http status code.
listOfferingsResponse_httpStatus :: Lens.Lens' ListOfferingsResponse Prelude.Int
listOfferingsResponse_httpStatus = Lens.lens (\ListOfferingsResponse' {httpStatus} -> httpStatus) (\s@ListOfferingsResponse' {} a -> s {httpStatus = a} :: ListOfferingsResponse)
instance Prelude.NFData ListOfferingsResponse where
rnf ListOfferingsResponse' {..} =
Prelude.rnf nextToken
`Prelude.seq` Prelude.rnf offerings
`Prelude.seq` Prelude.rnf httpStatus