DocsAWS 101BlogServices

ACM

Certificates — requested, imported, described, renewed, tagged.

JSON-RPC (X-Amz-Target) multi-tenant 12 operations

Quick start

import boto3
acm = boto3.client("acm", endpoint_url="http://localhost:4566",
                   region_name="us-east-1",
                   aws_access_key_id="test", aws_secret_access_key="test")
cert = acm.request_certificate(DomainName="example.com")
print(cert["CertificateArn"])

Supported operations

12 operations exposed by this service as of MiniStack 1.4.21. Extracted directly from the handler dispatch in the source module.

AddTagsToCertificate DeleteCertificate DescribeCertificate GetCertificate ImportCertificate ListCertificates ListTagsForCertificate RemoveTagsFromCertificate RenewCertificate RequestCertificate ResendValidationEmail UpdateCertificateOptions

CloudFormation

The CloudFormation engine provisions these resource types via this service:

AWS::CertificateManager::Certificate

See CloudFormation engine for intrinsic support and lifecycle details.

Known limitations

  • Certificates jump straight to ISSUED — no DNS or HTTP validation is performed.
  • No real TLS material is generated — GetCertificate returns a synthetic placeholder PEM.

Source

  • ministack/services/acm.py

Read the source to verify the ops list above — dispatch tables and handler functions are the ground truth.