ALIYUN::DFS::AccessGroup は、権限グループを作成するために使用されます。
構文
{
"Type": "ALIYUN::DFS::AccessGroup",
"Properties": {
"Description": String,
"NetworkType": String,
"AccessGroupName": String
}
}プロパティ
| Property | タイプ | 必須 | 編集可能 | 説明 | 制約 |
| Description | String | いいえ | はい | 権限グループの説明。 | なし。 |
| NetworkType | String | いいえ | いいえ | 権限グループのタイプ。 | 有効な値:
|
| AccessGroupName | String | いいえ | はい | 権限グループの名前。 | なし。 |
戻り値
Fn::GetAtt
AccessGroupId: 権限グループの ID。
例
JSON形式{ "ROSTemplateFormatVersion": "2015-09-01", "Parameters": { "AccessGroupName": { "Type": "String", "Description": "アクセスグループの名前。命名規則は次のとおりです。\n値には 6 ~ 100 文字が含まれます。\nグローバルに一意であり、空の文字列にすることはできません。", // Translated comment "MinLength": 6, "MaxLength": 100 } }, "Resources": { "AccessGroup": { "Type": "ALIYUN::DFS::AccessGroup", "Properties": { "AccessGroupName": { "Ref": "AccessGroupName" } } } }, "Outputs": { "AccessGroupId": { "Description": "access_group の ID。", // Translated comment "Value": { "Fn::GetAtt": [ "AccessGroup", "AccessGroupId" ] } } } }