| 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.APIGateway.UpdateClientCertificate
Description
Changes information about an ClientCertificate resource.
Synopsis
- data UpdateClientCertificate = UpdateClientCertificate' {}
- newUpdateClientCertificate :: Text -> UpdateClientCertificate
- updateClientCertificate_patchOperations :: Lens' UpdateClientCertificate (Maybe [PatchOperation])
- updateClientCertificate_clientCertificateId :: Lens' UpdateClientCertificate Text
- data ClientCertificate = ClientCertificate' {}
- newClientCertificate :: ClientCertificate
- clientCertificate_clientCertificateId :: Lens' ClientCertificate (Maybe Text)
- clientCertificate_createdDate :: Lens' ClientCertificate (Maybe UTCTime)
- clientCertificate_description :: Lens' ClientCertificate (Maybe Text)
- clientCertificate_expirationDate :: Lens' ClientCertificate (Maybe UTCTime)
- clientCertificate_pemEncodedCertificate :: Lens' ClientCertificate (Maybe Text)
- clientCertificate_tags :: Lens' ClientCertificate (Maybe (HashMap Text Text))
Creating a Request
data UpdateClientCertificate Source #
A request to change information about an ClientCertificate resource.
See: newUpdateClientCertificate smart constructor.
Constructors
| UpdateClientCertificate' | |
Fields
| |
Instances
newUpdateClientCertificate Source #
Arguments
| :: Text | |
| -> UpdateClientCertificate |
Create a value of UpdateClientCertificate 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:patchOperations:UpdateClientCertificate', updateClientCertificate_patchOperations - For more information about supported patch operations, see
Patch Operations.
UpdateClientCertificate, updateClientCertificate_clientCertificateId - The identifier of the ClientCertificate resource to be updated.
Request Lenses
updateClientCertificate_patchOperations :: Lens' UpdateClientCertificate (Maybe [PatchOperation]) Source #
For more information about supported patch operations, see Patch Operations.
updateClientCertificate_clientCertificateId :: Lens' UpdateClientCertificate Text Source #
The identifier of the ClientCertificate resource to be updated.
Destructuring the Response
data ClientCertificate Source #
Represents a client certificate used to configure client-side SSL authentication while sending requests to the integration endpoint.
See: newClientCertificate smart constructor.
Constructors
| ClientCertificate' | |
Fields
| |
Instances
newClientCertificate :: ClientCertificate Source #
Create a value of ClientCertificate 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:clientCertificateId:ClientCertificate', clientCertificate_clientCertificateId - The identifier of the client certificate.
$sel:createdDate:ClientCertificate', clientCertificate_createdDate - The timestamp when the client certificate was created.
$sel:description:ClientCertificate', clientCertificate_description - The description of the client certificate.
$sel:expirationDate:ClientCertificate', clientCertificate_expirationDate - The timestamp when the client certificate will expire.
$sel:pemEncodedCertificate:ClientCertificate', clientCertificate_pemEncodedCertificate - The PEM-encoded public key of the client certificate, which can be used
to configure certificate authentication in the integration endpoint .
$sel:tags:ClientCertificate', clientCertificate_tags - The collection of tags. Each tag element is associated with a given
resource.
Response Lenses
clientCertificate_clientCertificateId :: Lens' ClientCertificate (Maybe Text) Source #
The identifier of the client certificate.
clientCertificate_createdDate :: Lens' ClientCertificate (Maybe UTCTime) Source #
The timestamp when the client certificate was created.
clientCertificate_description :: Lens' ClientCertificate (Maybe Text) Source #
The description of the client certificate.
clientCertificate_expirationDate :: Lens' ClientCertificate (Maybe UTCTime) Source #
The timestamp when the client certificate will expire.
clientCertificate_pemEncodedCertificate :: Lens' ClientCertificate (Maybe Text) Source #
The PEM-encoded public key of the client certificate, which can be used to configure certificate authentication in the integration endpoint .
clientCertificate_tags :: Lens' ClientCertificate (Maybe (HashMap Text Text)) Source #
The collection of tags. Each tag element is associated with a given resource.