amazonka-ssm-1.6.1: Amazon Simple Systems Manager (SSM) 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.SSM.DescribeAutomationExecutions

Contents

Description

Provides details about all active and terminated Automation executions.

Synopsis

Creating a Request

describeAutomationExecutions :: DescribeAutomationExecutions Source #

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

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

  • daeFilters - Filters used to limit the scope of executions that are requested.
  • daeNextToken - The token for the next set of items to return. (You received this token from a previous call.)
  • daeMaxResults - The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.

data DescribeAutomationExecutions Source #

See: describeAutomationExecutions smart constructor.

Instances
Eq DescribeAutomationExecutions Source # 
Instance details

Defined in Network.AWS.SSM.DescribeAutomationExecutions

Data DescribeAutomationExecutions Source # 
Instance details

Defined in Network.AWS.SSM.DescribeAutomationExecutions

Methods

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

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

toConstr :: DescribeAutomationExecutions -> Constr #

dataTypeOf :: DescribeAutomationExecutions -> DataType #

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

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

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

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

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

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

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

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

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

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

Read DescribeAutomationExecutions Source # 
Instance details

Defined in Network.AWS.SSM.DescribeAutomationExecutions

Show DescribeAutomationExecutions Source # 
Instance details

Defined in Network.AWS.SSM.DescribeAutomationExecutions

Generic DescribeAutomationExecutions Source # 
Instance details

Defined in Network.AWS.SSM.DescribeAutomationExecutions

Associated Types

type Rep DescribeAutomationExecutions :: Type -> Type #

Hashable DescribeAutomationExecutions Source # 
Instance details

Defined in Network.AWS.SSM.DescribeAutomationExecutions

ToJSON DescribeAutomationExecutions Source # 
Instance details

Defined in Network.AWS.SSM.DescribeAutomationExecutions

AWSRequest DescribeAutomationExecutions Source # 
Instance details

Defined in Network.AWS.SSM.DescribeAutomationExecutions

Associated Types

type Rs DescribeAutomationExecutions :: Type #

ToHeaders DescribeAutomationExecutions Source # 
Instance details

Defined in Network.AWS.SSM.DescribeAutomationExecutions

ToPath DescribeAutomationExecutions Source # 
Instance details

Defined in Network.AWS.SSM.DescribeAutomationExecutions

ToQuery DescribeAutomationExecutions Source # 
Instance details

Defined in Network.AWS.SSM.DescribeAutomationExecutions

NFData DescribeAutomationExecutions Source # 
Instance details

Defined in Network.AWS.SSM.DescribeAutomationExecutions

type Rep DescribeAutomationExecutions Source # 
Instance details

Defined in Network.AWS.SSM.DescribeAutomationExecutions

type Rep DescribeAutomationExecutions = D1 (MetaData "DescribeAutomationExecutions" "Network.AWS.SSM.DescribeAutomationExecutions" "amazonka-ssm-1.6.1-7PbnocxNW5qAr7pEvzAy6Q" False) (C1 (MetaCons "DescribeAutomationExecutions'" PrefixI True) (S1 (MetaSel (Just "_daeFilters") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (List1 AutomationExecutionFilter))) :*: (S1 (MetaSel (Just "_daeNextToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_daeMaxResults") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Nat)))))
type Rs DescribeAutomationExecutions Source # 
Instance details

Defined in Network.AWS.SSM.DescribeAutomationExecutions

Request Lenses

daeFilters :: Lens' DescribeAutomationExecutions (Maybe (NonEmpty AutomationExecutionFilter)) Source #

Filters used to limit the scope of executions that are requested.

daeNextToken :: Lens' DescribeAutomationExecutions (Maybe Text) Source #

The token for the next set of items to return. (You received this token from a previous call.)

daeMaxResults :: Lens' DescribeAutomationExecutions (Maybe Natural) Source #

The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.

Destructuring the Response

describeAutomationExecutionsResponse Source #

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

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

  • daersNextToken - The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.
  • daersAutomationExecutionMetadataList - The list of details about each automation execution which has occurred which matches the filter specification, if any.
  • daersResponseStatus - -- | The response status code.

data DescribeAutomationExecutionsResponse Source #

See: describeAutomationExecutionsResponse smart constructor.

Instances
Eq DescribeAutomationExecutionsResponse Source # 
Instance details

Defined in Network.AWS.SSM.DescribeAutomationExecutions

Data DescribeAutomationExecutionsResponse Source # 
Instance details

Defined in Network.AWS.SSM.DescribeAutomationExecutions

Methods

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

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

toConstr :: DescribeAutomationExecutionsResponse -> Constr #

dataTypeOf :: DescribeAutomationExecutionsResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Read DescribeAutomationExecutionsResponse Source # 
Instance details

Defined in Network.AWS.SSM.DescribeAutomationExecutions

Show DescribeAutomationExecutionsResponse Source # 
Instance details

Defined in Network.AWS.SSM.DescribeAutomationExecutions

Generic DescribeAutomationExecutionsResponse Source # 
Instance details

Defined in Network.AWS.SSM.DescribeAutomationExecutions

NFData DescribeAutomationExecutionsResponse Source # 
Instance details

Defined in Network.AWS.SSM.DescribeAutomationExecutions

type Rep DescribeAutomationExecutionsResponse Source # 
Instance details

Defined in Network.AWS.SSM.DescribeAutomationExecutions

type Rep DescribeAutomationExecutionsResponse = D1 (MetaData "DescribeAutomationExecutionsResponse" "Network.AWS.SSM.DescribeAutomationExecutions" "amazonka-ssm-1.6.1-7PbnocxNW5qAr7pEvzAy6Q" False) (C1 (MetaCons "DescribeAutomationExecutionsResponse'" PrefixI True) (S1 (MetaSel (Just "_daersNextToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_daersAutomationExecutionMetadataList") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [AutomationExecutionMetadata])) :*: S1 (MetaSel (Just "_daersResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Int))))

Response Lenses

daersNextToken :: Lens' DescribeAutomationExecutionsResponse (Maybe Text) Source #

The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.

daersAutomationExecutionMetadataList :: Lens' DescribeAutomationExecutionsResponse [AutomationExecutionMetadata] Source #

The list of details about each automation execution which has occurred which matches the filter specification, if any.