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 | はい | いいえ | 仮想プライベートクラウド (VPC) の ID。 | なし。 |
| NetworkType | String | はい | いいえ | マウントターゲットのネットワークタイプ。 | 有効な値:
|
| VSwitchId | String | はい | いいえ | vSwitch の ID。 | なし。 |
| FileSystemId | String | はい | いいえ | ファイルシステムの ID。 | なし。 |
| AccessGroupId | String | はい | はい | 権限グループの ID。 | なし。 |
戻り値
Fn::GetAtt
MountPointId: マウントターゲットの ID。
例
JSON形式{ "ROSTemplateFormatVersion": "2015-09-01", "Parameters": { "VpcId": { "Type": "String", "Description": "The vpc id." // vpc ID }, "NetworkType": { "Type": "String", "Description": "The network type of the Mount Point. Valid values: VPC.", // マウントポイントのネットワークタイプ。有効な値:VPC。 "AllowedValues": [ "VPC" ] }, "VSwitchId": { "Type": "String", "Description": "The vswitch id." // vswitch ID }, "FileSystemId": { "Type": "String", "Description": "The ID of the File System." // ファイルシステムのID }, "AccessGroupId": { "Type": "String", "Description": "The ID of the Access Group." // アクセスグループのID } }, "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.", // マウントポイントのID "Value": { "Fn::GetAtt": [ "MountPoint", "MountPointId" ] } } } }