| 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 |
Amazonka.AppConfig.ListExtensions
Description
Lists all custom and Amazon Web Services-authored AppConfig extensions in the account. For more information about extensions, see Working with AppConfig extensions in the AppConfig User Guide.
Synopsis
- data ListExtensions = ListExtensions' {}
- newListExtensions :: ListExtensions
- listExtensions_maxResults :: Lens' ListExtensions (Maybe Natural)
- listExtensions_name :: Lens' ListExtensions (Maybe Text)
- listExtensions_nextToken :: Lens' ListExtensions (Maybe Text)
- data ListExtensionsResponse = ListExtensionsResponse' {
- items :: Maybe [ExtensionSummary]
- nextToken :: Maybe Text
- httpStatus :: Int
- newListExtensionsResponse :: Int -> ListExtensionsResponse
- listExtensionsResponse_items :: Lens' ListExtensionsResponse (Maybe [ExtensionSummary])
- listExtensionsResponse_nextToken :: Lens' ListExtensionsResponse (Maybe Text)
- listExtensionsResponse_httpStatus :: Lens' ListExtensionsResponse Int
Creating a Request
data ListExtensions Source #
See: newListExtensions smart constructor.
Constructors
| ListExtensions' | |
Fields
| |
Instances
newListExtensions :: ListExtensions Source #
Create a value of ListExtensions 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:
$sel:maxResults:ListExtensions', listExtensions_maxResults - The maximum number of items to return for this call. The call also
returns a token that you can specify in a subsequent call to get the
next set of results.
ListExtensions, listExtensions_name - The extension name.
ListExtensions, listExtensions_nextToken - A token to start the list. Use this token to get the next set of
results.
Request Lenses
listExtensions_maxResults :: Lens' ListExtensions (Maybe Natural) Source #
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
listExtensions_name :: Lens' ListExtensions (Maybe Text) Source #
The extension name.
listExtensions_nextToken :: Lens' ListExtensions (Maybe Text) Source #
A token to start the list. Use this token to get the next set of results.
Destructuring the Response
data ListExtensionsResponse Source #
See: newListExtensionsResponse smart constructor.
Constructors
| ListExtensionsResponse' | |
Fields
| |
Instances
newListExtensionsResponse Source #
Create a value of ListExtensionsResponse 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:
$sel:items:ListExtensionsResponse', listExtensionsResponse_items - The list of available extensions. The list includes Amazon Web
Services-authored and user-created extensions.
ListExtensions, listExtensionsResponse_nextToken - The token for the next set of items to return. Use this token to get the
next set of results.
$sel:httpStatus:ListExtensionsResponse', listExtensionsResponse_httpStatus - The response's http status code.
Response Lenses
listExtensionsResponse_items :: Lens' ListExtensionsResponse (Maybe [ExtensionSummary]) Source #
The list of available extensions. The list includes Amazon Web Services-authored and user-created extensions.
listExtensionsResponse_nextToken :: Lens' ListExtensionsResponse (Maybe Text) Source #
The token for the next set of items to return. Use this token to get the next set of results.
listExtensionsResponse_httpStatus :: Lens' ListExtensionsResponse Int Source #
The response's http status code.