ALIYUN::DFS::MountPoint类型用于创建一个挂载点。
语法
{
"Type": "ALIYUN::DFS::MountPoint",
"Properties": {
"Status": String,
"Description": String,
"VpcId": String,
"NetworkType": String,
"VSwitchId": String,
"FileSystemId": String,
"AccessGroupId": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
Status | String | 否 | 是 | 挂载点状态。 | 取值:
|
Description | String | 否 | 是 | 挂载点的描述信息。 | 无 |
VpcId | String | 是 | 否 | 专有网络ID。 | 无 |
NetworkType | String | 是 | 否 | 挂载点的网络类型。 | 取值:
|
VSwitchId | String | 是 | 否 | 交换机ID。 | 无 |
FileSystemId | String | 是 | 否 | 文件系统ID。 | 无 |
AccessGroupId | String | 是 | 是 | 权限组ID。 | 无 |
返回值
Fn::GetAtt
MountPointId:挂载点ID。
示例
JSON
格式{ "ROSTemplateFormatVersion": "2015-09-01", "Parameters": { "VpcId": { "Type": "String", "Description": "The vpc id." }, "NetworkType": { "Type": "String", "Description": "The network type of the Mount Point. Valid values: VPC.", "AllowedValues": [ "VPC" ] }, "VSwitchId": { "Type": "String", "Description": "The vswitch id." }, "FileSystemId": { "Type": "String", "Description": "The ID of the File System." }, "AccessGroupId": { "Type": "String", "Description": "The ID of the Access Group." } }, "Resources": { "MountPoint": { "Type": "ALIYUN::DFS::MountPoint", "Properties": { "VpcId": { "Ref": "VpcId" }, "NetworkType": { "Ref": "NetworkType" }, "VSwitchId": { "Ref": "VSwitchId" }, "FileSystemId": { "Ref": "FileSystemId" }, "AccessGroupId": { "Ref": "AccessGroupId" } } } }, "Outputs": { "MountPointId": { "Description": "The ID of the mount point.", "Value": { "Fn::GetAtt": [ "MountPoint", "MountPointId" ] } } } }