File size: 470 Bytes
643c00a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
**To get a list of client certificates**

Command::

  aws apigateway get-client-certificates

Output::

  {
      "items": [
          {
              "pemEncodedCertificate": "-----BEGIN CERTIFICATE----- <certificate content> -----END CERTIFICATE-----", 
              "clientCertificateId": "a1b2c3", 
              "expirationDate": 1483556561, 
              "description": "My Client Certificate", 
              "createdDate": 1452020561
          }
      ]
  }