文档

ALIYUN::ECS::NetworkInterfacePermission

更新时间:

ALIYUN::ECS::NetworkInterfacePermission类型用于授权弹性网卡。

语法

{
  "Type": "ALIYUN::ECS::NetworkInterfacePermission",
  "Properties": {
    "NetworkInterfaceId": String,
    "AccountId": String,
    "Permission": String
  }
}

属性

属性名称

类型

必须

允许更新

描述

约束

NetworkInterfaceId

String

弹性网卡ID。

AccountId

String

账号ID。

Permission

String

授权。

返回值

Fn::GetAtt

  • NetworkInterfacePermissionId: 授权弹性网卡ID。

示例

YAML格式

ROSTemplateFormatVersion: '2015-09-01'
Parameters:
  NetworkInterfaceId:
    Type: String
    Description: Network interface id
  Permission:
    Type: String
    Description: the permission
    Default: InstanceAttach
Resources:
  NetworkInterfacePermission:
    Type: ALIYUN::ECS::NetworkInterfacePermission
    Properties:
      NetworkInterfaceId:
        Ref: NetworkInterfaceId
      AccountId:
        Ref: ALIYUN::AccountId
      Permission:
        Ref: Permission

JSON格式

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "NetworkInterfaceId": {
      "Type": "String",
      "Description": "Network interface id"
    },
    "Permission": {
      "Type": "String",
      "Description": "the permission",
      "Default": "InstanceAttach"
    }
  },
  "Resources": {
    "NetworkInterfacePermission": {
      "Type": "ALIYUN::ECS::NetworkInterfacePermission",
      "Properties": {
        "NetworkInterfaceId": {
          "Ref": "NetworkInterfaceId"
        },
        "AccountId": {
          "Ref": "ALIYUN::AccountId"
        },
        "Permission": {
          "Ref": "Permission"
        }
      }
    }
  }
}
  • 本页导读 (1)
文档反馈