amazonka-stepfunctions-1.4.5: Amazon Step Functions SDK.

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

Network.AWS.StepFunctions.ListActivities

Contents

Description

Lists the existing activities. The results may be split into multiple pages. To retrieve subsequent pages, make the call again using the nextToken returned by the previous call.

Synopsis

Creating a Request

listActivities :: ListActivities Source #

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

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

  • laNextToken - If a nextToken was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in nextToken . Keep all other arguments unchanged. The configured maxResults determines how many results can be returned in a single call.
  • laMaxResults - The maximum number of results that will be returned per call. nextToken can be used to obtain further pages of results. The default is 100 and the maximum allowed page size is 1000. This is an upper limit only; the actual number of results returned per call may be fewer than the specified maximum.

data ListActivities Source #

See: listActivities smart constructor.

Instances

Eq ListActivities Source # 
Data ListActivities Source # 

Methods

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

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

toConstr :: ListActivities -> Constr #

dataTypeOf :: ListActivities -> DataType #

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

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

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

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

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

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

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

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

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

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

Read ListActivities Source # 
Show ListActivities Source # 
Generic ListActivities Source # 

Associated Types

type Rep ListActivities :: * -> * #

Hashable ListActivities Source # 
ToJSON ListActivities Source # 
NFData ListActivities Source # 

Methods

rnf :: ListActivities -> () #

AWSRequest ListActivities Source # 
ToPath ListActivities Source # 
ToHeaders ListActivities Source # 
ToQuery ListActivities Source # 
type Rep ListActivities Source # 
type Rep ListActivities = D1 (MetaData "ListActivities" "Network.AWS.StepFunctions.ListActivities" "amazonka-stepfunctions-1.4.5-WXy4AxO2hM72RNEOsME5O" False) (C1 (MetaCons "ListActivities'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_laNextToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_laMaxResults") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Nat)))))
type Rs ListActivities Source # 

Request Lenses

laNextToken :: Lens' ListActivities (Maybe Text) Source #

If a nextToken was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in nextToken . Keep all other arguments unchanged. The configured maxResults determines how many results can be returned in a single call.

laMaxResults :: Lens' ListActivities (Maybe Natural) Source #

The maximum number of results that will be returned per call. nextToken can be used to obtain further pages of results. The default is 100 and the maximum allowed page size is 1000. This is an upper limit only; the actual number of results returned per call may be fewer than the specified maximum.

Destructuring the Response

listActivitiesResponse Source #

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

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

  • larsNextToken - If a nextToken is returned, there are more results available. To retrieve the next page of results, make the call again using the returned token in nextToken . Keep all other arguments unchanged. The configured maxResults determines how many results can be returned in a single call.
  • larsResponseStatus - -- | The response status code.
  • larsActivities - The list of activities.

data ListActivitiesResponse Source #

See: listActivitiesResponse smart constructor.

Instances

Eq ListActivitiesResponse Source # 
Data ListActivitiesResponse Source # 

Methods

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

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

toConstr :: ListActivitiesResponse -> Constr #

dataTypeOf :: ListActivitiesResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Read ListActivitiesResponse Source # 
Show ListActivitiesResponse Source # 
Generic ListActivitiesResponse Source # 
NFData ListActivitiesResponse Source # 

Methods

rnf :: ListActivitiesResponse -> () #

type Rep ListActivitiesResponse Source # 
type Rep ListActivitiesResponse = D1 (MetaData "ListActivitiesResponse" "Network.AWS.StepFunctions.ListActivities" "amazonka-stepfunctions-1.4.5-WXy4AxO2hM72RNEOsME5O" False) (C1 (MetaCons "ListActivitiesResponse'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_larsNextToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_larsResponseStatus") NoSourceUnpackedness SourceStrict DecidedUnpack) (Rec0 Int)) (S1 (MetaSel (Just Symbol "_larsActivities") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 [ActivityListItem])))))

Response Lenses

larsNextToken :: Lens' ListActivitiesResponse (Maybe Text) Source #

If a nextToken is returned, there are more results available. To retrieve the next page of results, make the call again using the returned token in nextToken . Keep all other arguments unchanged. The configured maxResults determines how many results can be returned in a single call.

larsResponseStatus :: Lens' ListActivitiesResponse Int Source #

  • - | The response status code.