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 |
Describes the default certificate and the certificate list for the specified HTTPS or TLS listener.
If the default certificate is also in the certificate list, it appears
twice in the results (once with IsDefault
set to true and once with
IsDefault
set to false).
For more information, see SSL certificates in the Application Load Balancers Guide or Server certificates in the Network Load Balancers Guide.
This operation returns paginated results.
Synopsis
- data DescribeListenerCertificates = DescribeListenerCertificates' {}
- newDescribeListenerCertificates :: Text -> DescribeListenerCertificates
- describeListenerCertificates_marker :: Lens' DescribeListenerCertificates (Maybe Text)
- describeListenerCertificates_pageSize :: Lens' DescribeListenerCertificates (Maybe Natural)
- describeListenerCertificates_listenerArn :: Lens' DescribeListenerCertificates Text
- data DescribeListenerCertificatesResponse = DescribeListenerCertificatesResponse' {
- certificates :: Maybe [Certificate]
- nextMarker :: Maybe Text
- httpStatus :: Int
- newDescribeListenerCertificatesResponse :: Int -> DescribeListenerCertificatesResponse
- describeListenerCertificatesResponse_certificates :: Lens' DescribeListenerCertificatesResponse (Maybe [Certificate])
- describeListenerCertificatesResponse_nextMarker :: Lens' DescribeListenerCertificatesResponse (Maybe Text)
- describeListenerCertificatesResponse_httpStatus :: Lens' DescribeListenerCertificatesResponse Int
Creating a Request
data DescribeListenerCertificates Source #
See: newDescribeListenerCertificates
smart constructor.
Instances
newDescribeListenerCertificates Source #
Create a value of DescribeListenerCertificates
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:DescribeListenerCertificates'
, describeListenerCertificates_marker
- The marker for the next set of results. (You received this marker from a
previous call.)
$sel:pageSize:DescribeListenerCertificates'
, describeListenerCertificates_pageSize
- The maximum number of results to return with this call.
$sel:listenerArn:DescribeListenerCertificates'
, describeListenerCertificates_listenerArn
- The Amazon Resource Names (ARN) of the listener.
Request Lenses
describeListenerCertificates_marker :: Lens' DescribeListenerCertificates (Maybe Text) Source #
The marker for the next set of results. (You received this marker from a previous call.)
describeListenerCertificates_pageSize :: Lens' DescribeListenerCertificates (Maybe Natural) Source #
The maximum number of results to return with this call.
describeListenerCertificates_listenerArn :: Lens' DescribeListenerCertificates Text Source #
The Amazon Resource Names (ARN) of the listener.
Destructuring the Response
data DescribeListenerCertificatesResponse Source #
See: newDescribeListenerCertificatesResponse
smart constructor.
DescribeListenerCertificatesResponse' | |
|
Instances
newDescribeListenerCertificatesResponse Source #
Create a value of DescribeListenerCertificatesResponse
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:certificates:DescribeListenerCertificatesResponse'
, describeListenerCertificatesResponse_certificates
- Information about the certificates.
$sel:nextMarker:DescribeListenerCertificatesResponse'
, describeListenerCertificatesResponse_nextMarker
- If there are additional results, this is the marker for the next set of
results. Otherwise, this is null.
$sel:httpStatus:DescribeListenerCertificatesResponse'
, describeListenerCertificatesResponse_httpStatus
- The response's http status code.
Response Lenses
describeListenerCertificatesResponse_certificates :: Lens' DescribeListenerCertificatesResponse (Maybe [Certificate]) Source #
Information about the certificates.
describeListenerCertificatesResponse_nextMarker :: Lens' DescribeListenerCertificatesResponse (Maybe Text) Source #
If there are additional results, this is the marker for the next set of results. Otherwise, this is null.
describeListenerCertificatesResponse_httpStatus :: Lens' DescribeListenerCertificatesResponse Int Source #
The response's http status code.