GetFunctionFileSystemConfig.fromMap constructor
Implementation
factory GetFunctionFileSystemConfig.fromMap(Map<String, dynamic> map) {
return GetFunctionFileSystemConfig(
arn: pulumi.Input.fromValue(map['arn'] as String),
localMountPath: pulumi.Input.fromValue(map['localMountPath'] as String),
);
}