libZSservicesZSamazonka-iot-analyticsZSamazonka-iot-analytics
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.IoTAnalytics.Types.Pipeline

Description

 
Synopsis

Documentation

data Pipeline Source #

Contains information about a pipeline.

See: newPipeline smart constructor.

Constructors

Pipeline' 

Fields

Instances

Instances details
Eq Pipeline Source # 
Instance details

Defined in Amazonka.IoTAnalytics.Types.Pipeline

Read Pipeline Source # 
Instance details

Defined in Amazonka.IoTAnalytics.Types.Pipeline

Show Pipeline Source # 
Instance details

Defined in Amazonka.IoTAnalytics.Types.Pipeline

Generic Pipeline Source # 
Instance details

Defined in Amazonka.IoTAnalytics.Types.Pipeline

Associated Types

type Rep Pipeline :: Type -> Type #

Methods

from :: Pipeline -> Rep Pipeline x #

to :: Rep Pipeline x -> Pipeline #

NFData Pipeline Source # 
Instance details

Defined in Amazonka.IoTAnalytics.Types.Pipeline

Methods

rnf :: Pipeline -> () #

Hashable Pipeline Source # 
Instance details

Defined in Amazonka.IoTAnalytics.Types.Pipeline

Methods

hashWithSalt :: Int -> Pipeline -> Int #

hash :: Pipeline -> Int #

FromJSON Pipeline Source # 
Instance details

Defined in Amazonka.IoTAnalytics.Types.Pipeline

type Rep Pipeline Source # 
Instance details

Defined in Amazonka.IoTAnalytics.Types.Pipeline

type Rep Pipeline = D1 ('MetaData "Pipeline" "Amazonka.IoTAnalytics.Types.Pipeline" "libZSservicesZSamazonka-iot-analyticsZSamazonka-iot-analytics" 'False) (C1 ('MetaCons "Pipeline'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "creationTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "activities") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty PipelineActivity))))) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "reprocessingSummaries") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ReprocessingSummary])) :*: S1 ('MetaSel ('Just "lastUpdateTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))))))

newPipeline :: Pipeline Source #

Create a value of Pipeline with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:creationTime:Pipeline', pipeline_creationTime - When the pipeline was created.

$sel:arn:Pipeline', pipeline_arn - The ARN of the pipeline.

$sel:activities:Pipeline', pipeline_activities - The activities that perform transformations on the messages.

$sel:name:Pipeline', pipeline_name - The name of the pipeline.

$sel:reprocessingSummaries:Pipeline', pipeline_reprocessingSummaries - A summary of information about the pipeline reprocessing.

$sel:lastUpdateTime:Pipeline', pipeline_lastUpdateTime - The last time the pipeline was updated.

pipeline_creationTime :: Lens' Pipeline (Maybe UTCTime) Source #

When the pipeline was created.

pipeline_arn :: Lens' Pipeline (Maybe Text) Source #

The ARN of the pipeline.

pipeline_activities :: Lens' Pipeline (Maybe (NonEmpty PipelineActivity)) Source #

The activities that perform transformations on the messages.

pipeline_name :: Lens' Pipeline (Maybe Text) Source #

The name of the pipeline.

pipeline_reprocessingSummaries :: Lens' Pipeline (Maybe [ReprocessingSummary]) Source #

A summary of information about the pipeline reprocessing.

pipeline_lastUpdateTime :: Lens' Pipeline (Maybe UTCTime) Source #

The last time the pipeline was updated.