Copyright | (c) 2013-2016 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay@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.
- 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 theListChangeSets
response 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 #
The input for the ListChangeSets
action.
See: listChangeSets
smart constructor.
Instances
Request Lenses
lcsNextToken :: Lens' ListChangeSets (Maybe Text) #
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 #
The name or the Amazon Resource Name (ARN) of the stack for which you want to list change sets.
Destructuring the Response
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 ofChangeSetSummary
structures that provides the ID and status of each change set for the specified stack.lcsrsResponseStatus
- -- | The response status code.
data ListChangeSetsResponse #
The output for the ListChangeSets
action.
See: listChangeSetsResponse
smart constructor.
Response Lenses
lcsrsNextToken :: Lens' ListChangeSetsResponse (Maybe Text) #
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] #
A list of ChangeSetSummary
structures that provides the ID and status of each change set for the specified stack.
lcsrsResponseStatus :: Lens' ListChangeSetsResponse Int #
- - | The response status code.