| Copyright | (c) 2013-2021 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 |
Amazonka.Lambda.ListCodeSigningConfigs
Description
Returns a list of
code signing configurations.
A request returns up to 10,000 configurations per call. You can use the
MaxItems parameter to return fewer configurations per call.
This operation returns paginated results.
Synopsis
- data ListCodeSigningConfigs = ListCodeSigningConfigs' {}
- newListCodeSigningConfigs :: ListCodeSigningConfigs
- listCodeSigningConfigs_marker :: Lens' ListCodeSigningConfigs (Maybe Text)
- listCodeSigningConfigs_maxItems :: Lens' ListCodeSigningConfigs (Maybe Natural)
- data ListCodeSigningConfigsResponse = ListCodeSigningConfigsResponse' {}
- newListCodeSigningConfigsResponse :: Int -> ListCodeSigningConfigsResponse
- listCodeSigningConfigsResponse_codeSigningConfigs :: Lens' ListCodeSigningConfigsResponse (Maybe [CodeSigningConfig])
- listCodeSigningConfigsResponse_nextMarker :: Lens' ListCodeSigningConfigsResponse (Maybe Text)
- listCodeSigningConfigsResponse_httpStatus :: Lens' ListCodeSigningConfigsResponse Int
Creating a Request
data ListCodeSigningConfigs Source #
See: newListCodeSigningConfigs smart constructor.
Constructors
| ListCodeSigningConfigs' | |
Instances
newListCodeSigningConfigs :: ListCodeSigningConfigs Source #
Create a value of ListCodeSigningConfigs 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:marker:ListCodeSigningConfigs', listCodeSigningConfigs_marker - Specify the pagination token that's returned by a previous request to
retrieve the next page of results.
$sel:maxItems:ListCodeSigningConfigs', listCodeSigningConfigs_maxItems - Maximum number of items to return.
Request Lenses
listCodeSigningConfigs_marker :: Lens' ListCodeSigningConfigs (Maybe Text) Source #
Specify the pagination token that's returned by a previous request to retrieve the next page of results.
listCodeSigningConfigs_maxItems :: Lens' ListCodeSigningConfigs (Maybe Natural) Source #
Maximum number of items to return.
Destructuring the Response
data ListCodeSigningConfigsResponse Source #
See: newListCodeSigningConfigsResponse smart constructor.
Constructors
| ListCodeSigningConfigsResponse' | |
Fields
| |
Instances
newListCodeSigningConfigsResponse Source #
Create a value of ListCodeSigningConfigsResponse 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:codeSigningConfigs:ListCodeSigningConfigsResponse', listCodeSigningConfigsResponse_codeSigningConfigs - The code signing configurations
$sel:nextMarker:ListCodeSigningConfigsResponse', listCodeSigningConfigsResponse_nextMarker - The pagination token that's included if more results are available.
$sel:httpStatus:ListCodeSigningConfigsResponse', listCodeSigningConfigsResponse_httpStatus - The response's http status code.
Response Lenses
listCodeSigningConfigsResponse_codeSigningConfigs :: Lens' ListCodeSigningConfigsResponse (Maybe [CodeSigningConfig]) Source #
The code signing configurations
listCodeSigningConfigsResponse_nextMarker :: Lens' ListCodeSigningConfigsResponse (Maybe Text) Source #
The pagination token that's included if more results are available.
listCodeSigningConfigsResponse_httpStatus :: Lens' ListCodeSigningConfigsResponse Int Source #
The response's http status code.