@@ -1370,3 +1370,95 @@ API Gateway.
13701370
13711371.. literalinclude :: ../examples/apig/list_tags.py
13721372 :lines: 16-21
1373+
1374+ SSL Certificate
1375+ ---------------
1376+
1377+ Querying SSL Certificates
1378+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
1379+
1380+ This example demonstrates how to list SSL certificates configured
1381+ in the API Gateway.
1382+
1383+ .. literalinclude :: ../examples/apig/list_ssl_cert.py
1384+ :lines: 16-26
1385+
1386+ Creating an SSL Certificate
1387+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1388+
1389+ This example demonstrates how to create a new SSL certificate.
1390+
1391+ .. literalinclude :: ../examples/apig/create_ssl_cert.py
1392+ :lines: 16-30
1393+
1394+ Binding a Domain Name with SSL Certificates
1395+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1396+
1397+ This example demonstrates how to bind one or more SSL certificates
1398+ to a domain name.
1399+
1400+ .. literalinclude :: ../examples/apig/bind_domain_to_cert.py
1401+ :lines: 16-36
1402+
1403+ Unbinding a Domain Name's SSL Certificates
1404+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1405+
1406+ This example demonstrates how to unbind SSL certificates from a
1407+ domain name.
1408+
1409+ .. literalinclude :: ../examples/apig/unbind_domain_from_cert.py
1410+ :lines: 16-28
1411+
1412+ Querying Certificate Details
1413+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1414+
1415+ This example demonstrates how to retrieve details of a specific
1416+ SSL certificate.
1417+
1418+ .. literalinclude :: ../examples/apig/get_ssl_cert.py
1419+ :lines: 16-20
1420+
1421+ Deleting an SSL Certificate
1422+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1423+
1424+ This example demonstrates how to delete an SSL certificate
1425+ from the API Gateway.
1426+
1427+ .. literalinclude :: ../examples/apig/delete_ssl_certificate.py
1428+ :lines: 16-20
1429+
1430+ Modifying an SSL Certificate
1431+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1432+
1433+ This example demonstrates how to update an existing SSL
1434+ certificate's metadata or contents.
1435+
1436+ .. literalinclude :: ../examples/apig/update_ssl_cert.py
1437+ :lines: 16-31
1438+
1439+ Binding an SSL Certificate to a Domain Name
1440+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1441+
1442+ This example demonstrates how to bind a specific SSL certificate
1443+ to a domain name.
1444+
1445+ .. literalinclude :: ../examples/apig/bind_certificates_for_domain.py
1446+ :lines: 16-29
1447+
1448+ Unbinding an SSL Certificate from a Domain Name
1449+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1450+
1451+ This example demonstrates how to unbind a specific SSL certificate
1452+ from a domain name.
1453+
1454+ .. literalinclude :: ../examples/apig/unbind_cert_from_domain.py
1455+ :lines: 16-29
1456+
1457+ Querying Domain Names of an SSL Certificate
1458+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1459+
1460+ This example demonstrates how to list all domain names associated
1461+ with a given SSL certificate.
1462+
1463+ .. literalinclude :: ../examples/apig/list_domain_for_cert.py
1464+ :lines: 16-22
0 commit comments