| Copyright | (c) 2013-2018 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | None |
| Language | Haskell2010 |
Network.AWS.CloudFormation.DescribeStackEvents
Description
Returns all stack related events for a specified stack in reverse chronological order. For more information about a stack's event history, go to Stacks in the AWS CloudFormation User Guide.
This operation returns paginated results.
Synopsis
- describeStackEvents :: DescribeStackEvents
- data DescribeStackEvents
- dseNextToken :: Lens' DescribeStackEvents (Maybe Text)
- dseStackName :: Lens' DescribeStackEvents (Maybe Text)
- describeStackEventsResponse :: Int -> DescribeStackEventsResponse
- data DescribeStackEventsResponse
- dsersNextToken :: Lens' DescribeStackEventsResponse (Maybe Text)
- dsersStackEvents :: Lens' DescribeStackEventsResponse [StackEvent]
- dsersResponseStatus :: Lens' DescribeStackEventsResponse Int
Creating a Request
describeStackEvents :: DescribeStackEvents Source #
Creates a value of DescribeStackEvents with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
dseNextToken- A string that identifies the next page of events that you want to retrieve.dseStackName- The name or the unique stack ID that is associated with the stack, which are not always interchangeable: * Running stacks: You can specify either the stack's name or its unique stack ID. * Deleted stacks: You must specify the unique stack ID. Default: There is no default value.
data DescribeStackEvents Source #
The input for DescribeStackEvents action.
See: describeStackEvents smart constructor.
Instances
Request Lenses
dseNextToken :: Lens' DescribeStackEvents (Maybe Text) Source #
A string that identifies the next page of events that you want to retrieve.
dseStackName :: Lens' DescribeStackEvents (Maybe Text) Source #
The name or the unique stack ID that is associated with the stack, which are not always interchangeable: * Running stacks: You can specify either the stack's name or its unique stack ID. * Deleted stacks: You must specify the unique stack ID. Default: There is no default value.
Destructuring the Response
describeStackEventsResponse Source #
Arguments
| :: Int | |
| -> DescribeStackEventsResponse |
Creates a value of DescribeStackEventsResponse with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
dsersNextToken- If the output exceeds 1 MB in size, a string that identifies the next page of events. If no additional page exists, this value is null.dsersStackEvents- A list ofStackEventsstructures.dsersResponseStatus- -- | The response status code.
data DescribeStackEventsResponse Source #
The output for a DescribeStackEvents action.
See: describeStackEventsResponse smart constructor.
Instances
Response Lenses
dsersNextToken :: Lens' DescribeStackEventsResponse (Maybe Text) Source #
If the output exceeds 1 MB in size, a string that identifies the next page of events. If no additional page exists, this value is null.
dsersStackEvents :: Lens' DescribeStackEventsResponse [StackEvent] Source #
A list of StackEvents structures.
dsersResponseStatus :: Lens' DescribeStackEventsResponse Int Source #
- - | The response status code.