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

Resource Orchestration Service:ALIYUN::SAG::ACLAssociation

最終更新日:Jan 16, 2025

ALIYUN::SAG::ACLAssociation は、アクセス制御リスト (ACL) を Smart Access Gateway (SAG) インスタンスに関連付けるために使用されます。

構文

{
  "Type": "ALIYUN::SAG::ACLAssociation",
  "Properties": {
    "SmartAGId": String,
    "AclId": String
  }
}

プロパティ

プロパティタイプ必須編集可能説明制約
SmartAGIdStringはいいいえACL に関連付ける SAG インスタンスの ID。なし
AclIdStringはいいいえACL の ID。なし

レスポンスパラメーター

Fn::GetAtt

なし

JSON 形式

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
  "AclId": {
   "Type": "String",
   "Description": "アクセス制御 ID。" // Access control ID.
  },
  "SmartAGId": {
   "Type": "String",
   "Description": "アクセス制御をバインドする必要があるインテリジェントゲートウェイインスタンス。" // An intelligent gateway instance that needs to bind access control.
  }
 },
 "Resources": {
  "ACLAssociation": {
   "Type": "ALIYUN::SAG::ACLAssociation",
   "Properties": {
    "AclId": {
     "Ref": "AclId"
    },
    "SmartAGId": {
     "Ref": "SmartAGId"
    }
   }
  }
 },
 "Outputs": {}
}

YAML 形式

ROSTemplateFormatVersion: '2015-09-01'
Parameters:
 AclId:
  Type: String
  Description: アクセス制御 ID。 // Access control ID.
 SmartAGId:
  Type: String
  Description: アクセス制御をバインドする必要があるインテリジェントゲートウェイインスタンス。 // An intelligent gateway instance that needs to bind access control.
Resources:
 ACLAssociation:
  Type: 'ALIYUN::SAG::ACLAssociation'
  Properties:
   AclId:
    Ref: AclId
   SmartAGId:
    Ref: SmartAGId
Outputs: {}