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