Safe Haskell | None |
---|---|
Language | Haskell2010 |
Returns all stack related events for a specified stack. For more information about a stack's event history, go to Stacks in the AWS CloudFormation User Guide.
You can list events for stacks that have failed to create or have been deleted by specifying the unique stack identifier (stack ID).
http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeStackEvents.html
- data DescribeStackEvents
- describeStackEvents :: DescribeStackEvents
- dseNextToken :: Lens' DescribeStackEvents (Maybe Text)
- dseStackName :: Lens' DescribeStackEvents (Maybe Text)
- data DescribeStackEventsResponse
- describeStackEventsResponse :: DescribeStackEventsResponse
- dserNextToken :: Lens' DescribeStackEventsResponse (Maybe Text)
- dserStackEvents :: Lens' DescribeStackEventsResponse [StackEvent]
Request
data DescribeStackEvents Source
Request constructor
describeStackEvents :: DescribeStackEvents Source
DescribeStackEvents
constructor.
The fields accessible through corresponding lenses are:
Request lenses
dseNextToken :: Lens' DescribeStackEvents (Maybe Text) Source
String that identifies the start of the next list of events, if there is one.
Default: There is no default value.
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.
Response
Response constructor
describeStackEventsResponse :: DescribeStackEventsResponse Source
DescribeStackEventsResponse
constructor.
The fields accessible through corresponding lenses are:
Response lenses
dserNextToken :: Lens' DescribeStackEventsResponse (Maybe Text) Source
String that identifies the start of the next list of events, if there is one.
dserStackEvents :: Lens' DescribeStackEventsResponse [StackEvent] Source
A list of StackEvents
structures.