すべてのプロダクト
Search
ドキュメントセンター

:ALIYUN::ECS::JoinSecurityGroup

最終更新日:Mar 19, 2020

ALIYUN::ECS::JoinSecurityGroup 型は 1 つまたは複数の ECS インスタンスを指定されたセキュリティグループに追加することができます。

構文

  1. {
  2. "Type" : "ALIYUN::ECS::JoinSecurityGroup",
  3. "Properties" : {
  4. "InstanceId" : String,
  5. "InstanceIdList" : List,
  6. "SecurityGroupId" : String
  7. }
  8. }

属性

名前必須かどうか更新の許可説明制約
SecurityGroupId string はい いいえ セキュリティグループ ID なし
InstanceId string いいえ いいえ セキュリティグループに追加する ECS インスタンスの ID なし
InstanceIdList list いいえ はい セキュリティグループに追加する ECS インスタンスのリスト なし

リターン値

Fn :: GetAtt

なし

  1. {
  2. "ROSTemplateFormatVersion" : "2015-09-01",
  3. "Resources" : {
  4. "SG": {
  5. "Type": "ALIYUN::ECS::JoinSecurityGroup",
  6. "Properties": {
  7. "SecurityGroupId": "sg-25zwc3se0",
  8. "InstanceIdList": ["i-25zskuabf", "i-25jvzsvr5"]
  9. }
  10. }
  11. }
  12. }