DocsAWS 101BlogServices

Transfer Family

Transfer Family — servers, users, SSH keys, connectors, accesses.

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

Quick start

import boto3
tf = boto3.client("transfer", endpoint_url="http://localhost:4566",
                  region_name="us-east-1",
                  aws_access_key_id="test", aws_secret_access_key="test")
tf.create_server(Protocols=["SFTP"], IdentityProviderType="SERVICE_MANAGED")

Supported operations

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

CreateServer CreateUser DeleteServer DeleteSshPublicKey DeleteUser DescribeServer DescribeUser ImportSshPublicKey ListServers ListUsers

CloudFormation

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

Known limitations

  • No SFTP/FTPS listener is actually bound — servers are metadata.

Source

  • ministack/services/transfer.py:121-181

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