{-# 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.MediaPackage.CreateChannel -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Creates a new Channel. module Amazonka.MediaPackage.CreateChannel ( -- * Creating a Request CreateChannel (..), newCreateChannel, -- * Request Lenses createChannel_description, createChannel_tags, createChannel_id, -- * Destructuring the Response CreateChannelResponse (..), newCreateChannelResponse, -- * Response Lenses createChannelResponse_arn, createChannelResponse_description, createChannelResponse_egressAccessLogs, createChannelResponse_hlsIngest, createChannelResponse_id, createChannelResponse_ingressAccessLogs, createChannelResponse_tags, createChannelResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.MediaPackage.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | A new Channel configuration. -- -- /See:/ 'newCreateChannel' smart constructor. data CreateChannel = CreateChannel' { -- | A short text description of the Channel. description :: Prelude.Maybe Prelude.Text, tags :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text), -- | The ID of the Channel. The ID must be unique within the region and it -- cannot be changed after a Channel is created. id :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'CreateChannel' 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: -- -- 'description', 'createChannel_description' - A short text description of the Channel. -- -- 'tags', 'createChannel_tags' - Undocumented member. -- -- 'id', 'createChannel_id' - The ID of the Channel. The ID must be unique within the region and it -- cannot be changed after a Channel is created. newCreateChannel :: -- | 'id' Prelude.Text -> CreateChannel newCreateChannel pId_ = CreateChannel' { description = Prelude.Nothing, tags = Prelude.Nothing, id = pId_ } -- | A short text description of the Channel. createChannel_description :: Lens.Lens' CreateChannel (Prelude.Maybe Prelude.Text) createChannel_description = Lens.lens (\CreateChannel' {description} -> description) (\s@CreateChannel' {} a -> s {description = a} :: CreateChannel) -- | Undocumented member. createChannel_tags :: Lens.Lens' CreateChannel (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text)) createChannel_tags = Lens.lens (\CreateChannel' {tags} -> tags) (\s@CreateChannel' {} a -> s {tags = a} :: CreateChannel) Prelude.. Lens.mapping Lens.coerced -- | The ID of the Channel. The ID must be unique within the region and it -- cannot be changed after a Channel is created. createChannel_id :: Lens.Lens' CreateChannel Prelude.Text createChannel_id = Lens.lens (\CreateChannel' {id} -> id) (\s@CreateChannel' {} a -> s {id = a} :: CreateChannel) instance Core.AWSRequest CreateChannel where type AWSResponse CreateChannel = CreateChannelResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> CreateChannelResponse' Prelude.<$> (x Data..?> "arn") Prelude.<*> (x Data..?> "description") Prelude.<*> (x Data..?> "egressAccessLogs") Prelude.<*> (x Data..?> "hlsIngest") Prelude.<*> (x Data..?> "id") Prelude.<*> (x Data..?> "ingressAccessLogs") Prelude.<*> (x Data..?> "tags" Core..!@ Prelude.mempty) Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable CreateChannel where hashWithSalt _salt CreateChannel' {..} = _salt `Prelude.hashWithSalt` description `Prelude.hashWithSalt` tags `Prelude.hashWithSalt` id instance Prelude.NFData CreateChannel where rnf CreateChannel' {..} = Prelude.rnf description `Prelude.seq` Prelude.rnf tags `Prelude.seq` Prelude.rnf id instance Data.ToHeaders CreateChannel where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON CreateChannel where toJSON CreateChannel' {..} = Data.object ( Prelude.catMaybes [ ("description" Data..=) Prelude.<$> description, ("tags" Data..=) Prelude.<$> tags, Prelude.Just ("id" Data..= id) ] ) instance Data.ToPath CreateChannel where toPath = Prelude.const "/channels" instance Data.ToQuery CreateChannel where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newCreateChannelResponse' smart constructor. data CreateChannelResponse = CreateChannelResponse' { -- | The Amazon Resource Name (ARN) assigned to the Channel. arn :: Prelude.Maybe Prelude.Text, -- | A short text description of the Channel. description :: Prelude.Maybe Prelude.Text, egressAccessLogs :: Prelude.Maybe EgressAccessLogs, hlsIngest :: Prelude.Maybe HlsIngest, -- | The ID of the Channel. id :: Prelude.Maybe Prelude.Text, ingressAccessLogs :: Prelude.Maybe IngressAccessLogs, 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 'CreateChannelResponse' 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', 'createChannelResponse_arn' - The Amazon Resource Name (ARN) assigned to the Channel. -- -- 'description', 'createChannelResponse_description' - A short text description of the Channel. -- -- 'egressAccessLogs', 'createChannelResponse_egressAccessLogs' - Undocumented member. -- -- 'hlsIngest', 'createChannelResponse_hlsIngest' - Undocumented member. -- -- 'id', 'createChannelResponse_id' - The ID of the Channel. -- -- 'ingressAccessLogs', 'createChannelResponse_ingressAccessLogs' - Undocumented member. -- -- 'tags', 'createChannelResponse_tags' - Undocumented member. -- -- 'httpStatus', 'createChannelResponse_httpStatus' - The response's http status code. newCreateChannelResponse :: -- | 'httpStatus' Prelude.Int -> CreateChannelResponse newCreateChannelResponse pHttpStatus_ = CreateChannelResponse' { arn = Prelude.Nothing, description = Prelude.Nothing, egressAccessLogs = Prelude.Nothing, hlsIngest = Prelude.Nothing, id = Prelude.Nothing, ingressAccessLogs = Prelude.Nothing, tags = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | The Amazon Resource Name (ARN) assigned to the Channel. createChannelResponse_arn :: Lens.Lens' CreateChannelResponse (Prelude.Maybe Prelude.Text) createChannelResponse_arn = Lens.lens (\CreateChannelResponse' {arn} -> arn) (\s@CreateChannelResponse' {} a -> s {arn = a} :: CreateChannelResponse) -- | A short text description of the Channel. createChannelResponse_description :: Lens.Lens' CreateChannelResponse (Prelude.Maybe Prelude.Text) createChannelResponse_description = Lens.lens (\CreateChannelResponse' {description} -> description) (\s@CreateChannelResponse' {} a -> s {description = a} :: CreateChannelResponse) -- | Undocumented member. createChannelResponse_egressAccessLogs :: Lens.Lens' CreateChannelResponse (Prelude.Maybe EgressAccessLogs) createChannelResponse_egressAccessLogs = Lens.lens (\CreateChannelResponse' {egressAccessLogs} -> egressAccessLogs) (\s@CreateChannelResponse' {} a -> s {egressAccessLogs = a} :: CreateChannelResponse) -- | Undocumented member. createChannelResponse_hlsIngest :: Lens.Lens' CreateChannelResponse (Prelude.Maybe HlsIngest) createChannelResponse_hlsIngest = Lens.lens (\CreateChannelResponse' {hlsIngest} -> hlsIngest) (\s@CreateChannelResponse' {} a -> s {hlsIngest = a} :: CreateChannelResponse) -- | The ID of the Channel. createChannelResponse_id :: Lens.Lens' CreateChannelResponse (Prelude.Maybe Prelude.Text) createChannelResponse_id = Lens.lens (\CreateChannelResponse' {id} -> id) (\s@CreateChannelResponse' {} a -> s {id = a} :: CreateChannelResponse) -- | Undocumented member. createChannelResponse_ingressAccessLogs :: Lens.Lens' CreateChannelResponse (Prelude.Maybe IngressAccessLogs) createChannelResponse_ingressAccessLogs = Lens.lens (\CreateChannelResponse' {ingressAccessLogs} -> ingressAccessLogs) (\s@CreateChannelResponse' {} a -> s {ingressAccessLogs = a} :: CreateChannelResponse) -- | Undocumented member. createChannelResponse_tags :: Lens.Lens' CreateChannelResponse (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text)) createChannelResponse_tags = Lens.lens (\CreateChannelResponse' {tags} -> tags) (\s@CreateChannelResponse' {} a -> s {tags = a} :: CreateChannelResponse) Prelude.. Lens.mapping Lens.coerced -- | The response's http status code. createChannelResponse_httpStatus :: Lens.Lens' CreateChannelResponse Prelude.Int createChannelResponse_httpStatus = Lens.lens (\CreateChannelResponse' {httpStatus} -> httpStatus) (\s@CreateChannelResponse' {} a -> s {httpStatus = a} :: CreateChannelResponse) instance Prelude.NFData CreateChannelResponse where rnf CreateChannelResponse' {..} = Prelude.rnf arn `Prelude.seq` Prelude.rnf description `Prelude.seq` Prelude.rnf egressAccessLogs `Prelude.seq` Prelude.rnf hlsIngest `Prelude.seq` Prelude.rnf id `Prelude.seq` Prelude.rnf ingressAccessLogs `Prelude.seq` Prelude.rnf tags `Prelude.seq` Prelude.rnf httpStatus