나는 cloudformation 템플릿에 EFS로 볼륨 ID를 전달할 때이 작동하지 않는 이유를 알아내는 데 문제 :EFS FileSystem ID를 cloudformation 템플릿에 올바르게 전달하는 방법은 무엇입니까?
Parameters:
EFSFileSystem:
Description: EFS file system to mount
Type: AWS::EFS::FileSystem::Id
이 작동 중 하나를하지 않습니다
는Parameters:
EFSFileSystem:
Description: EFS file system to mount
Type: AWS::EFS::FileSystem
나는 오류 :
parameter type AWS::EFS::FileSystem::Id for parameter name EFSFileSystem does not exist
그러나 이것은 ID를 전달하지 (FS-XXXXXXX)
Parameters:
EFSFileSystem:
Description: EFS file system to mount
Type: String
유형을 AWS :: EFS :: FileSystem :: Id로 설정하면 안됩니까?