| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.SSM.DescribeAutomationStepExecutions
Description
Information about all active and terminated step executions in an Automation workflow.
This operation returns paginated results.
Synopsis
- data DescribeAutomationStepExecutions = DescribeAutomationStepExecutions' {}
- newDescribeAutomationStepExecutions :: Text -> DescribeAutomationStepExecutions
- describeAutomationStepExecutions_filters :: Lens' DescribeAutomationStepExecutions (Maybe (NonEmpty StepExecutionFilter))
- describeAutomationStepExecutions_maxResults :: Lens' DescribeAutomationStepExecutions (Maybe Natural)
- describeAutomationStepExecutions_nextToken :: Lens' DescribeAutomationStepExecutions (Maybe Text)
- describeAutomationStepExecutions_reverseOrder :: Lens' DescribeAutomationStepExecutions (Maybe Bool)
- describeAutomationStepExecutions_automationExecutionId :: Lens' DescribeAutomationStepExecutions Text
- data DescribeAutomationStepExecutionsResponse = DescribeAutomationStepExecutionsResponse' {
- nextToken :: Maybe Text
- stepExecutions :: Maybe [StepExecution]
- httpStatus :: Int
- newDescribeAutomationStepExecutionsResponse :: Int -> DescribeAutomationStepExecutionsResponse
- describeAutomationStepExecutionsResponse_nextToken :: Lens' DescribeAutomationStepExecutionsResponse (Maybe Text)
- describeAutomationStepExecutionsResponse_stepExecutions :: Lens' DescribeAutomationStepExecutionsResponse (Maybe [StepExecution])
- describeAutomationStepExecutionsResponse_httpStatus :: Lens' DescribeAutomationStepExecutionsResponse Int
Creating a Request
data DescribeAutomationStepExecutions Source #
See: newDescribeAutomationStepExecutions smart constructor.
Constructors
| DescribeAutomationStepExecutions' | |
Fields
| |
Instances
newDescribeAutomationStepExecutions Source #
Create a value of DescribeAutomationStepExecutions 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:
DescribeAutomationStepExecutions, describeAutomationStepExecutions_filters - One or more filters to limit the number of step executions returned by
the request.
$sel:maxResults:DescribeAutomationStepExecutions', describeAutomationStepExecutions_maxResults - 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.
DescribeAutomationStepExecutions, describeAutomationStepExecutions_nextToken - The token for the next set of items to return. (You received this token
from a previous call.)
$sel:reverseOrder:DescribeAutomationStepExecutions', describeAutomationStepExecutions_reverseOrder - Indicates whether to list step executions in reverse order by start
time. The default value is 'false'.
DescribeAutomationStepExecutions, describeAutomationStepExecutions_automationExecutionId - The Automation execution ID for which you want step execution
descriptions.
Request Lenses
describeAutomationStepExecutions_filters :: Lens' DescribeAutomationStepExecutions (Maybe (NonEmpty StepExecutionFilter)) Source #
One or more filters to limit the number of step executions returned by the request.
describeAutomationStepExecutions_maxResults :: Lens' DescribeAutomationStepExecutions (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.
describeAutomationStepExecutions_nextToken :: Lens' DescribeAutomationStepExecutions (Maybe Text) Source #
The token for the next set of items to return. (You received this token from a previous call.)
describeAutomationStepExecutions_reverseOrder :: Lens' DescribeAutomationStepExecutions (Maybe Bool) Source #
Indicates whether to list step executions in reverse order by start time. The default value is 'false'.
describeAutomationStepExecutions_automationExecutionId :: Lens' DescribeAutomationStepExecutions Text Source #
The Automation execution ID for which you want step execution descriptions.
Destructuring the Response
data DescribeAutomationStepExecutionsResponse Source #
See: newDescribeAutomationStepExecutionsResponse smart constructor.
Constructors
| DescribeAutomationStepExecutionsResponse' | |
Fields
| |
Instances
newDescribeAutomationStepExecutionsResponse Source #
Arguments
| :: Int | |
| -> DescribeAutomationStepExecutionsResponse |
Create a value of DescribeAutomationStepExecutionsResponse 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:
DescribeAutomationStepExecutions, describeAutomationStepExecutionsResponse_nextToken - The token to use when requesting the next set of items. If there are no
additional items to return, the string is empty.
DescribeAutomationStepExecutionsResponse, describeAutomationStepExecutionsResponse_stepExecutions - A list of details about the current state of all steps that make up an
execution.
$sel:httpStatus:DescribeAutomationStepExecutionsResponse', describeAutomationStepExecutionsResponse_httpStatus - The response's http status code.
Response Lenses
describeAutomationStepExecutionsResponse_nextToken :: Lens' DescribeAutomationStepExecutionsResponse (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.
describeAutomationStepExecutionsResponse_stepExecutions :: Lens' DescribeAutomationStepExecutionsResponse (Maybe [StepExecution]) Source #
A list of details about the current state of all steps that make up an execution.
describeAutomationStepExecutionsResponse_httpStatus :: Lens' DescribeAutomationStepExecutionsResponse Int Source #
The response's http status code.