amazonka-datapipeline-1.6.1: Amazon Data Pipeline SDK.

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

Network.AWS.DataPipeline.DescribeObjects

Contents

Description

Gets the object definitions for a set of objects associated with the pipeline. Object definitions are composed of a set of fields that define the properties of the object.

This operation returns paginated results.

Synopsis

Creating a Request

describeObjects Source #

Creates a value of DescribeObjects with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • doEvaluateExpressions - Indicates whether any expressions in the object should be evaluated when the object descriptions are returned.
  • doMarker - The starting point for the results to be returned. For the first call, this value should be empty. As long as there are more results, continue to call DescribeObjects with the marker value from the previous call to retrieve the next set of results.
  • doPipelineId - The ID of the pipeline that contains the object definitions.
  • doObjectIds - The IDs of the pipeline objects that contain the definitions to be described. You can pass as many as 25 identifiers in a single call to DescribeObjects .

data DescribeObjects Source #

Contains the parameters for DescribeObjects.

See: describeObjects smart constructor.

Instances
Eq DescribeObjects Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

Data DescribeObjects Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> DescribeObjects -> c DescribeObjects #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c DescribeObjects #

toConstr :: DescribeObjects -> Constr #

dataTypeOf :: DescribeObjects -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c DescribeObjects) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c DescribeObjects) #

gmapT :: (forall b. Data b => b -> b) -> DescribeObjects -> DescribeObjects #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> DescribeObjects -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> DescribeObjects -> r #

gmapQ :: (forall d. Data d => d -> u) -> DescribeObjects -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> DescribeObjects -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> DescribeObjects -> m DescribeObjects #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> DescribeObjects -> m DescribeObjects #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> DescribeObjects -> m DescribeObjects #

Read DescribeObjects Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

Show DescribeObjects Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

Generic DescribeObjects Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

Associated Types

type Rep DescribeObjects :: Type -> Type #

Hashable DescribeObjects Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

ToJSON DescribeObjects Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

AWSPager DescribeObjects Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

AWSRequest DescribeObjects Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

Associated Types

type Rs DescribeObjects :: Type #

ToHeaders DescribeObjects Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

ToPath DescribeObjects Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

ToQuery DescribeObjects Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

NFData DescribeObjects Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

Methods

rnf :: DescribeObjects -> () #

type Rep DescribeObjects Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

type Rep DescribeObjects = D1 (MetaData "DescribeObjects" "Network.AWS.DataPipeline.DescribeObjects" "amazonka-datapipeline-1.6.1-3JyTLPZzwy0KRZE2VQaeKm" False) (C1 (MetaCons "DescribeObjects'" PrefixI True) ((S1 (MetaSel (Just "_doEvaluateExpressions") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 (MetaSel (Just "_doMarker") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 (MetaSel (Just "_doPipelineId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: S1 (MetaSel (Just "_doObjectIds") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 [Text]))))
type Rs DescribeObjects Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

Request Lenses

doEvaluateExpressions :: Lens' DescribeObjects (Maybe Bool) Source #

Indicates whether any expressions in the object should be evaluated when the object descriptions are returned.

doMarker :: Lens' DescribeObjects (Maybe Text) Source #

The starting point for the results to be returned. For the first call, this value should be empty. As long as there are more results, continue to call DescribeObjects with the marker value from the previous call to retrieve the next set of results.

doPipelineId :: Lens' DescribeObjects Text Source #

The ID of the pipeline that contains the object definitions.

doObjectIds :: Lens' DescribeObjects [Text] Source #

The IDs of the pipeline objects that contain the definitions to be described. You can pass as many as 25 identifiers in a single call to DescribeObjects .

Destructuring the Response

describeObjectsResponse Source #

Creates a value of DescribeObjectsResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • dorsHasMoreResults - Indicates whether there are more results to return.
  • dorsMarker - The starting point for the next page of results. To view the next page of results, call DescribeObjects again with this marker value. If the value is null, there are no more results.
  • dorsResponseStatus - -- | The response status code.
  • dorsPipelineObjects - An array of object definitions.

data DescribeObjectsResponse Source #

Contains the output of DescribeObjects.

See: describeObjectsResponse smart constructor.

Instances
Eq DescribeObjectsResponse Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

Data DescribeObjectsResponse Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> DescribeObjectsResponse -> c DescribeObjectsResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c DescribeObjectsResponse #

toConstr :: DescribeObjectsResponse -> Constr #

dataTypeOf :: DescribeObjectsResponse -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c DescribeObjectsResponse) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c DescribeObjectsResponse) #

gmapT :: (forall b. Data b => b -> b) -> DescribeObjectsResponse -> DescribeObjectsResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> DescribeObjectsResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> DescribeObjectsResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> DescribeObjectsResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> DescribeObjectsResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> DescribeObjectsResponse -> m DescribeObjectsResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> DescribeObjectsResponse -> m DescribeObjectsResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> DescribeObjectsResponse -> m DescribeObjectsResponse #

Read DescribeObjectsResponse Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

Show DescribeObjectsResponse Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

Generic DescribeObjectsResponse Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

Associated Types

type Rep DescribeObjectsResponse :: Type -> Type #

NFData DescribeObjectsResponse Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

Methods

rnf :: DescribeObjectsResponse -> () #

type Rep DescribeObjectsResponse Source # 
Instance details

Defined in Network.AWS.DataPipeline.DescribeObjects

type Rep DescribeObjectsResponse = D1 (MetaData "DescribeObjectsResponse" "Network.AWS.DataPipeline.DescribeObjects" "amazonka-datapipeline-1.6.1-3JyTLPZzwy0KRZE2VQaeKm" False) (C1 (MetaCons "DescribeObjectsResponse'" PrefixI True) ((S1 (MetaSel (Just "_dorsHasMoreResults") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 (MetaSel (Just "_dorsMarker") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 (MetaSel (Just "_dorsResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Int) :*: S1 (MetaSel (Just "_dorsPipelineObjects") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 [PipelineObject]))))

Response Lenses

dorsHasMoreResults :: Lens' DescribeObjectsResponse (Maybe Bool) Source #

Indicates whether there are more results to return.

dorsMarker :: Lens' DescribeObjectsResponse (Maybe Text) Source #

The starting point for the next page of results. To view the next page of results, call DescribeObjects again with this marker value. If the value is null, there are no more results.