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 |
Returns the summary information for stacks whose status matches the specified StackStatusFilter. Summary information for stacks that have been deleted is kept for 90 days after the stack is deleted. If no StackStatusFilter is specified, summary information for all stacks is returned (including existing stacks and stacks that have been deleted).
This operation returns paginated results.
Synopsis
- data ListStacks = ListStacks' {}
- newListStacks :: ListStacks
- listStacks_nextToken :: Lens' ListStacks (Maybe Text)
- listStacks_stackStatusFilter :: Lens' ListStacks (Maybe [StackStatus])
- data ListStacksResponse = ListStacksResponse' {
- nextToken :: Maybe Text
- stackSummaries :: Maybe [StackSummary]
- httpStatus :: Int
- newListStacksResponse :: Int -> ListStacksResponse
- listStacksResponse_nextToken :: Lens' ListStacksResponse (Maybe Text)
- listStacksResponse_stackSummaries :: Lens' ListStacksResponse (Maybe [StackSummary])
- listStacksResponse_httpStatus :: Lens' ListStacksResponse Int
Creating a Request
data ListStacks Source #
The input for ListStacks action.
See: newListStacks
smart constructor.
ListStacks' | |
|
Instances
newListStacks :: ListStacks Source #
Create a value of ListStacks
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:
ListStacks
, listStacks_nextToken
- A string that identifies the next page of stacks that you want to
retrieve.
$sel:stackStatusFilter:ListStacks'
, listStacks_stackStatusFilter
- Stack status to use as a filter. Specify one or more stack status codes
to list only stacks with the specified status codes. For a complete list
of stack status codes, see the StackStatus
parameter of the Stack data
type.
Request Lenses
listStacks_nextToken :: Lens' ListStacks (Maybe Text) Source #
A string that identifies the next page of stacks that you want to retrieve.
listStacks_stackStatusFilter :: Lens' ListStacks (Maybe [StackStatus]) Source #
Stack status to use as a filter. Specify one or more stack status codes
to list only stacks with the specified status codes. For a complete list
of stack status codes, see the StackStatus
parameter of the Stack data
type.
Destructuring the Response
data ListStacksResponse Source #
The output for ListStacks action.
See: newListStacksResponse
smart constructor.
ListStacksResponse' | |
|
Instances
newListStacksResponse Source #
Create a value of ListStacksResponse
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:
ListStacks
, listStacksResponse_nextToken
- If the output exceeds 1 MB in size, a string that identifies the next
page of stacks. If no additional page exists, this value is null.
$sel:stackSummaries:ListStacksResponse'
, listStacksResponse_stackSummaries
- A list of StackSummary
structures containing information about the
specified stacks.
$sel:httpStatus:ListStacksResponse'
, listStacksResponse_httpStatus
- The response's http status code.
Response Lenses
listStacksResponse_nextToken :: Lens' ListStacksResponse (Maybe Text) Source #
If the output exceeds 1 MB in size, a string that identifies the next page of stacks. If no additional page exists, this value is null.
listStacksResponse_stackSummaries :: Lens' ListStacksResponse (Maybe [StackSummary]) Source #
A list of StackSummary
structures containing information about the
specified stacks.
listStacksResponse_httpStatus :: Lens' ListStacksResponse Int Source #
The response's http status code.