EFS
File systems, mount targets, access points, backup / lifecycle policies.
Quick start
import boto3
efs = boto3.client("efs", endpoint_url="http://localhost:4566",
region_name="us-east-1",
aws_access_key_id="test", aws_secret_access_key="test")
fs = efs.create_file_system(CreationToken="t")
efs.create_mount_target(FileSystemId=fs["FileSystemId"], SubnetId="subnet-1")
Supported operations
24 operations exposed by this service as of MiniStack 1.4.6. Extracted directly from the handler dispatch in the source module.
CreateAccessPoint
CreateFileSystem
CreateMountTarget
CreateTags
DeleteAccessPoint
DeleteFileSystem
DeleteMountTarget
DeleteTags
DescribeAccessPoints
DescribeAccountPreferences
DescribeBackupPolicy
DescribeFileSystems
DescribeLifecycleConfiguration
DescribeMountTargets
DescribeMountTargetSecurityGroups
DescribeTags
ListTagsForResource
ModifyMountTargetSecurityGroups
PutAccountPreferences
PutBackupPolicy
PutLifecycleConfiguration
TagResource
UntagResource
UpdateFileSystem
CloudFormation
No CloudFormation resource types map to this service yet. Resources can still be created via the SDK or CLI.
Known limitations
- No POSIX filesystem is created — mount targets are metadata. The NFS server is not implemented.
Source
ministack/services/efs.py
Read the source to verify the ops list above — dispatch tables and handler functions are the ground truth.