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.APIGateway.GenerateClientCertificate
Description
Generates a ClientCertificate
resource.
- generateClientCertificate :: GenerateClientCertificate
- data GenerateClientCertificate
- gccDescription :: Lens' GenerateClientCertificate (Maybe Text)
- clientCertificate :: ClientCertificate
- data ClientCertificate
- ccPemEncodedCertificate :: Lens' ClientCertificate (Maybe Text)
- ccClientCertificateId :: Lens' ClientCertificate (Maybe Text)
- ccCreatedDate :: Lens' ClientCertificate (Maybe UTCTime)
- ccExpirationDate :: Lens' ClientCertificate (Maybe UTCTime)
- ccDescription :: Lens' ClientCertificate (Maybe Text)
Creating a Request
generateClientCertificate :: GenerateClientCertificate #
Creates a value of GenerateClientCertificate
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
gccDescription
- The description of theClientCertificate
.
data GenerateClientCertificate #
A request to generate a ClientCertificate
resource.
See: generateClientCertificate
smart constructor.
Instances
Request Lenses
gccDescription :: Lens' GenerateClientCertificate (Maybe Text) #
The description of the ClientCertificate
.
Destructuring the Response
clientCertificate :: ClientCertificate #
Creates a value of ClientCertificate
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
ccPemEncodedCertificate
- The PEM-encoded public key of the client certificate, which can be used to configure certificate authentication in the integration endpoint .ccClientCertificateId
- The identifier of the client certificate.ccCreatedDate
- The date when the client certificate was created, in ISO 8601 format .ccExpirationDate
- The date when the client certificate will expire, in ISO 8601 format .ccDescription
- The description of the client certificate.
data ClientCertificate #
Represents a client certificate used to configure client-side SSL authentication while sending requests to the integration endpoint.
Client certificates are used authenticate an API by the back-end server. To authenticate an API client (or user), use a custom Authorizer
.Use Client-Side Certificate
See: clientCertificate
smart constructor.
Response Lenses
ccPemEncodedCertificate :: Lens' ClientCertificate (Maybe Text) #
The PEM-encoded public key of the client certificate, which can be used to configure certificate authentication in the integration endpoint .
ccClientCertificateId :: Lens' ClientCertificate (Maybe Text) #
The identifier of the client certificate.
ccCreatedDate :: Lens' ClientCertificate (Maybe UTCTime) #
The date when the client certificate was created, in ISO 8601 format .
ccExpirationDate :: Lens' ClientCertificate (Maybe UTCTime) #
The date when the client certificate will expire, in ISO 8601 format .
ccDescription :: Lens' ClientCertificate (Maybe Text) #
The description of the client certificate.