{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.DataPipeline.Types.PipelineDescription -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.DataPipeline.Types.PipelineDescription where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.DataPipeline.Types.Field import Amazonka.DataPipeline.Types.Tag import qualified Amazonka.Prelude as Prelude -- | Contains pipeline metadata. -- -- /See:/ 'newPipelineDescription' smart constructor. data PipelineDescription = PipelineDescription' { -- | Description of the pipeline. description :: Prelude.Maybe Prelude.Text, -- | A list of tags to associated with a pipeline. Tags let you control -- access to pipelines. For more information, see -- -- in the /AWS Data Pipeline Developer Guide/. tags :: Prelude.Maybe [Tag], -- | The pipeline identifier that was assigned by AWS Data Pipeline. This is -- a string of the form @df-297EG78HU43EEXAMPLE@. pipelineId :: Prelude.Text, -- | The name of the pipeline. name :: Prelude.Text, -- | A list of read-only fields that contain metadata about the pipeline: -- \@userId, \@accountId, and \@pipelineState. fields :: [Field] } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'PipelineDescription' 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', 'pipelineDescription_description' - Description of the pipeline. -- -- 'tags', 'pipelineDescription_tags' - A list of tags to associated with a pipeline. Tags let you control -- access to pipelines. For more information, see -- -- in the /AWS Data Pipeline Developer Guide/. -- -- 'pipelineId', 'pipelineDescription_pipelineId' - The pipeline identifier that was assigned by AWS Data Pipeline. This is -- a string of the form @df-297EG78HU43EEXAMPLE@. -- -- 'name', 'pipelineDescription_name' - The name of the pipeline. -- -- 'fields', 'pipelineDescription_fields' - A list of read-only fields that contain metadata about the pipeline: -- \@userId, \@accountId, and \@pipelineState. newPipelineDescription :: -- | 'pipelineId' Prelude.Text -> -- | 'name' Prelude.Text -> PipelineDescription newPipelineDescription pPipelineId_ pName_ = PipelineDescription' { description = Prelude.Nothing, tags = Prelude.Nothing, pipelineId = pPipelineId_, name = pName_, fields = Prelude.mempty } -- | Description of the pipeline. pipelineDescription_description :: Lens.Lens' PipelineDescription (Prelude.Maybe Prelude.Text) pipelineDescription_description = Lens.lens (\PipelineDescription' {description} -> description) (\s@PipelineDescription' {} a -> s {description = a} :: PipelineDescription) -- | A list of tags to associated with a pipeline. Tags let you control -- access to pipelines. For more information, see -- -- in the /AWS Data Pipeline Developer Guide/. pipelineDescription_tags :: Lens.Lens' PipelineDescription (Prelude.Maybe [Tag]) pipelineDescription_tags = Lens.lens (\PipelineDescription' {tags} -> tags) (\s@PipelineDescription' {} a -> s {tags = a} :: PipelineDescription) Prelude.. Lens.mapping Lens.coerced -- | The pipeline identifier that was assigned by AWS Data Pipeline. This is -- a string of the form @df-297EG78HU43EEXAMPLE@. pipelineDescription_pipelineId :: Lens.Lens' PipelineDescription Prelude.Text pipelineDescription_pipelineId = Lens.lens (\PipelineDescription' {pipelineId} -> pipelineId) (\s@PipelineDescription' {} a -> s {pipelineId = a} :: PipelineDescription) -- | The name of the pipeline. pipelineDescription_name :: Lens.Lens' PipelineDescription Prelude.Text pipelineDescription_name = Lens.lens (\PipelineDescription' {name} -> name) (\s@PipelineDescription' {} a -> s {name = a} :: PipelineDescription) -- | A list of read-only fields that contain metadata about the pipeline: -- \@userId, \@accountId, and \@pipelineState. pipelineDescription_fields :: Lens.Lens' PipelineDescription [Field] pipelineDescription_fields = Lens.lens (\PipelineDescription' {fields} -> fields) (\s@PipelineDescription' {} a -> s {fields = a} :: PipelineDescription) Prelude.. Lens.coerced instance Data.FromJSON PipelineDescription where parseJSON = Data.withObject "PipelineDescription" ( \x -> PipelineDescription' Prelude.<$> (x Data..:? "description") Prelude.<*> (x Data..:? "tags" Data..!= Prelude.mempty) Prelude.<*> (x Data..: "pipelineId") Prelude.<*> (x Data..: "name") Prelude.<*> (x Data..:? "fields" Data..!= Prelude.mempty) ) instance Prelude.Hashable PipelineDescription where hashWithSalt _salt PipelineDescription' {..} = _salt `Prelude.hashWithSalt` description `Prelude.hashWithSalt` tags `Prelude.hashWithSalt` pipelineId `Prelude.hashWithSalt` name `Prelude.hashWithSalt` fields instance Prelude.NFData PipelineDescription where rnf PipelineDescription' {..} = Prelude.rnf description `Prelude.seq` Prelude.rnf tags `Prelude.seq` Prelude.rnf pipelineId `Prelude.seq` Prelude.rnf name `Prelude.seq` Prelude.rnf fields