ALIYUN::NAS::AccessGroup は、権限グループを作成するために使用されます。
構文
{
"Type": "ALIYUN::NAS::AccessGroup",
"Properties": {
"AccessGroupType": String,
"AccessGroupName": String,
"Description": String,
"FileSystemType": String
}
}プロパティ
| Property | Type | Required | Editable | Description | Constraint |
| AccessGroupType | String | Yes | No | 権限グループのタイプ。 | 有効な値: VPC と Classic 。 |
| AccessGroupName | String | Yes | No | 権限グループの名前。 | 名前は 3 ~ 64 文字である必要があります。名前は、文字、数字、またはハイフン(-)で始まる必要があります。 |
| Description | String | No | Yes | 権限グループの説明。デフォルトでは、説明は権限グループ名と同じです。 | なし。 |
| FileSystemType | String | No | No | ファイルシステムのタイプ。 | デフォルト値: standard 。有効な値:
|
戻り値
Fn::GetAtt
AccessGroupName:権限グループの名前。
例
JSON形式{ "ROSTemplateFormatVersion": "2015-09-01", "Parameters": { }, "Resources": { "AccessGroup": { "Type": "ALIYUN::NAS::AccessGroup", "Properties": { "AccessGroupType": "Vpc", "AccessGroupName": "TestAccessGroup" } } }, "Outputs": { "AccessGroupName": { "Description": "Permission group name", // 権限グループ名 "Value": { "Fn::GetAtt": [ "AccessGroup", "AccessGroupName" ] } } } }