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.3.14. Extracted directly from the handler dispatch in the source module.

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

CloudFormation

No CloudFormation resource types map to this service yet. Resources can still be created via the SDK or CLI.

Known limitations

  • Certificates jump straight to ISSUED — no DNS or HTTP validation is performed.
  • No real TLS material is generated; ExportCertificate returns placeholder strings.

Source

  • ministack/services/acm.py:106-166

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