| 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.ListChangeSets
Description
Returns the ID and status of each active change set for a stack. For example, AWS CloudFormation lists change sets that are in the CREATE_IN_PROGRESS or CREATE_PENDING state.
Synopsis
- listChangeSets :: Text -> ListChangeSets
- data ListChangeSets
- lcsNextToken :: Lens' ListChangeSets (Maybe Text)
- lcsStackName :: Lens' ListChangeSets Text
- listChangeSetsResponse :: Int -> ListChangeSetsResponse
- data ListChangeSetsResponse
- lcsrsNextToken :: Lens' ListChangeSetsResponse (Maybe Text)
- lcsrsSummaries :: Lens' ListChangeSetsResponse [ChangeSetSummary]
- lcsrsResponseStatus :: Lens' ListChangeSetsResponse Int
Creating a Request
Arguments
| :: Text | |
| -> ListChangeSets |
Creates a value of ListChangeSets with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
lcsNextToken- A string (provided by theListChangeSetsresponse output) that identifies the next page of change sets that you want to retrieve.lcsStackName- The name or the Amazon Resource Name (ARN) of the stack for which you want to list change sets.
data ListChangeSets Source #
The input for the ListChangeSets action.
See: listChangeSets smart constructor.
Instances
Request Lenses
lcsNextToken :: Lens' ListChangeSets (Maybe Text) Source #
A string (provided by the ListChangeSets response output) that identifies the next page of change sets that you want to retrieve.
lcsStackName :: Lens' ListChangeSets Text Source #
The name or the Amazon Resource Name (ARN) of the stack for which you want to list change sets.
Destructuring the Response
listChangeSetsResponse Source #
Arguments
| :: Int | |
| -> ListChangeSetsResponse |
Creates a value of ListChangeSetsResponse with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
lcsrsNextToken- If the output exceeds 1 MB, a string that identifies the next page of change sets. If there is no additional page, this value is null.lcsrsSummaries- A list ofChangeSetSummarystructures that provides the ID and status of each change set for the specified stack.lcsrsResponseStatus- -- | The response status code.
data ListChangeSetsResponse Source #
The output for the ListChangeSets action.
See: listChangeSetsResponse smart constructor.
Instances
Response Lenses
lcsrsNextToken :: Lens' ListChangeSetsResponse (Maybe Text) Source #
If the output exceeds 1 MB, a string that identifies the next page of change sets. If there is no additional page, this value is null.
lcsrsSummaries :: Lens' ListChangeSetsResponse [ChangeSetSummary] Source #
A list of ChangeSetSummary structures that provides the ID and status of each change set for the specified stack.
lcsrsResponseStatus :: Lens' ListChangeSetsResponse Int Source #
- - | The response status code.