amazonka-migrationhub-1.6.1: Amazon Migration Hub 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.MigrationHub.ListCreatedArtifacts

Contents

Description

Lists the created artifacts attached to a given migration task in an update stream. This API has the following traits:

  • Gets the list of the created artifacts while migration is taking place.
  • Shows the artifacts created by the migration tool that was associated by the AssociateCreatedArtifact API.
  • Lists created artifacts in a paginated interface.
Synopsis

Creating a Request

listCreatedArtifacts Source #

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

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

  • lcaNextToken - 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 .
  • lcaMaxResults - Maximum number of results to be returned per page.
  • lcaProgressUpdateStream - The name of the ProgressUpdateStream.
  • lcaMigrationTaskName - Unique identifier that references the migration task.

data ListCreatedArtifacts Source #

See: listCreatedArtifacts smart constructor.

Instances
Eq ListCreatedArtifacts Source # 
Instance details

Defined in Network.AWS.MigrationHub.ListCreatedArtifacts

Data ListCreatedArtifacts Source # 
Instance details

Defined in Network.AWS.MigrationHub.ListCreatedArtifacts

Methods

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

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

toConstr :: ListCreatedArtifacts -> Constr #

dataTypeOf :: ListCreatedArtifacts -> DataType #

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

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

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

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

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

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

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

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

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

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

Read ListCreatedArtifacts Source # 
Instance details

Defined in Network.AWS.MigrationHub.ListCreatedArtifacts

Show ListCreatedArtifacts Source # 
Instance details

Defined in Network.AWS.MigrationHub.ListCreatedArtifacts

Generic ListCreatedArtifacts Source # 
Instance details

Defined in Network.AWS.MigrationHub.ListCreatedArtifacts

Associated Types

type Rep ListCreatedArtifacts :: Type -> Type #

Hashable ListCreatedArtifacts Source # 
Instance details

Defined in Network.AWS.MigrationHub.ListCreatedArtifacts

ToJSON ListCreatedArtifacts Source # 
Instance details

Defined in Network.AWS.MigrationHub.ListCreatedArtifacts

AWSRequest ListCreatedArtifacts Source # 
Instance details

Defined in Network.AWS.MigrationHub.ListCreatedArtifacts

Associated Types

type Rs ListCreatedArtifacts :: Type #

ToHeaders ListCreatedArtifacts Source # 
Instance details

Defined in Network.AWS.MigrationHub.ListCreatedArtifacts

ToPath ListCreatedArtifacts Source # 
Instance details

Defined in Network.AWS.MigrationHub.ListCreatedArtifacts

ToQuery ListCreatedArtifacts Source # 
Instance details

Defined in Network.AWS.MigrationHub.ListCreatedArtifacts

NFData ListCreatedArtifacts Source # 
Instance details

Defined in Network.AWS.MigrationHub.ListCreatedArtifacts

Methods

rnf :: ListCreatedArtifacts -> () #

type Rep ListCreatedArtifacts Source # 
Instance details

Defined in Network.AWS.MigrationHub.ListCreatedArtifacts

type Rep ListCreatedArtifacts = D1 (MetaData "ListCreatedArtifacts" "Network.AWS.MigrationHub.ListCreatedArtifacts" "amazonka-migrationhub-1.6.1-8CAtlWlKcvW3trCK3Vdi8l" False) (C1 (MetaCons "ListCreatedArtifacts'" PrefixI True) ((S1 (MetaSel (Just "_lcaNextToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_lcaMaxResults") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Nat))) :*: (S1 (MetaSel (Just "_lcaProgressUpdateStream") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: S1 (MetaSel (Just "_lcaMigrationTaskName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text))))
type Rs ListCreatedArtifacts Source # 
Instance details

Defined in Network.AWS.MigrationHub.ListCreatedArtifacts

Request Lenses

lcaNextToken :: Lens' ListCreatedArtifacts (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 .

lcaMaxResults :: Lens' ListCreatedArtifacts (Maybe Natural) Source #

Maximum number of results to be returned per page.

lcaProgressUpdateStream :: Lens' ListCreatedArtifacts Text Source #

The name of the ProgressUpdateStream.

lcaMigrationTaskName :: Lens' ListCreatedArtifacts Text Source #

Unique identifier that references the migration task.

Destructuring the Response

listCreatedArtifactsResponse Source #

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

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

  • lcarsNextToken - If there are more created artifacts than the max result, return the next token to be passed to the next call as a bookmark of where to start from.
  • lcarsCreatedArtifactList - List of created artifacts up to the maximum number of results specified in the request.
  • lcarsResponseStatus - -- | The response status code.

data ListCreatedArtifactsResponse Source #

See: listCreatedArtifactsResponse smart constructor.

Instances
Eq ListCreatedArtifactsResponse Source # 
Instance details

Defined in Network.AWS.MigrationHub.ListCreatedArtifacts

Data ListCreatedArtifactsResponse Source # 
Instance details

Defined in Network.AWS.MigrationHub.ListCreatedArtifacts

Methods

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

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

toConstr :: ListCreatedArtifactsResponse -> Constr #

dataTypeOf :: ListCreatedArtifactsResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Read ListCreatedArtifactsResponse Source # 
Instance details

Defined in Network.AWS.MigrationHub.ListCreatedArtifacts

Show ListCreatedArtifactsResponse Source # 
Instance details

Defined in Network.AWS.MigrationHub.ListCreatedArtifacts

Generic ListCreatedArtifactsResponse Source # 
Instance details

Defined in Network.AWS.MigrationHub.ListCreatedArtifacts

Associated Types

type Rep ListCreatedArtifactsResponse :: Type -> Type #

NFData ListCreatedArtifactsResponse Source # 
Instance details

Defined in Network.AWS.MigrationHub.ListCreatedArtifacts

type Rep ListCreatedArtifactsResponse Source # 
Instance details

Defined in Network.AWS.MigrationHub.ListCreatedArtifacts

type Rep ListCreatedArtifactsResponse = D1 (MetaData "ListCreatedArtifactsResponse" "Network.AWS.MigrationHub.ListCreatedArtifacts" "amazonka-migrationhub-1.6.1-8CAtlWlKcvW3trCK3Vdi8l" False) (C1 (MetaCons "ListCreatedArtifactsResponse'" PrefixI True) (S1 (MetaSel (Just "_lcarsNextToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_lcarsCreatedArtifactList") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [CreatedArtifact])) :*: S1 (MetaSel (Just "_lcarsResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Int))))

Response Lenses

lcarsNextToken :: Lens' ListCreatedArtifactsResponse (Maybe Text) Source #

If there are more created artifacts than the max result, return the next token to be passed to the next call as a bookmark of where to start from.

lcarsCreatedArtifactList :: Lens' ListCreatedArtifactsResponse [CreatedArtifact] Source #

List of created artifacts up to the maximum number of results specified in the request.