SSM
Systems Manager — Parameter Store (hierarchical paths, secure strings, tiered types) and Run Command (SendCommand runs a script in an instance's container).
Quick start
import boto3
ssm = boto3.client("ssm", endpoint_url="http://localhost:4566",
region_name="us-east-1",
aws_access_key_id="test", aws_secret_access_key="test")
ssm.put_parameter(Name="/app/db", Value="jdbc:...", Type="String")
print(ssm.get_parameter(Name="/app/db")["Parameter"]["Value"])
Supported operations
16 operations exposed by this service as of MiniStack 1.5.8. Extracted directly from the handler dispatch in the source module.
AddTagsToResource
DeleteParameter
DeleteParameters
DescribeInstanceInformation
DescribeParameters
GetCommandInvocation
GetParameter
GetParameterHistory
GetParameters
GetParametersByPath
LabelParameterVersion
ListCommands
ListTagsForResource
PutParameter
RemoveTagsFromResource
SendCommand
CloudFormation
The CloudFormation engine provisions these resource types via this service:
AWS::SSM::Parameter
See CloudFormation engine for intrinsic support and lifecycle details.
Known limitations
- Run Command is supported: SendCommand runs AWS-RunShellScript in an instance's container, with GetCommandInvocation / ListCommands / DescribeInstanceInformation. Session Manager and Patch Manager are not implemented.
Source
ministack/services/ssm.py
Read the source to verify the ops list above — dispatch tables and handler functions are the ground truth.