ALIYUN::GA::BasicIpSet类型用于创建基础型全球加速实例的加速地域。
语法
{
"Type": "ALIYUN::GA::BasicIpSet",
"Properties": {
"AcceleratorId": String,
"AccelerateRegionId": String,
"Bandwidth": Integer,
"IspType": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
AcceleratorId | String | 是 | 否 | 基础型全球加速实例ID。 | 无 |
AccelerateRegionId | String | 否 | 否 | 要加速的地域ID。 | 您可以通过调用ListAvailableBusiRegions接口获取指定的全球加速实例可用的加速地域。 |
Bandwidth | Integer | 否 | 否 | 加速地域带宽。 | 单位:Mbps。 加速地域支持分配的最小带宽为2Mbps。 |
IspType | String | 否 | 否 | 加速地域公网线路类型。 | 取值:
如果您是单线带宽的白名单用户,您还可以选择以下类型:
说明
|
返回值
Fn::GetAtt
IpSetId:基础型全球加速实例的加速地域实例ID。
示例
说明
请您根据实际情况更改脱敏的参数取值,例如AcceleratorId。
YAML
格式
ROSTemplateFormatVersion: '2015-09-01'
Parameters: {}
Resources:
ExtensionResource:
Type: ALIYUN::GA::BasicIpSet
Properties:
IspType: BGP
Bandwidth: 2
AcceleratorId: ga-bp17frjjh0udz4qz****
Outputs:
IpSetId:
Description: The ID of the acceleration region.
Value:
Fn::GetAtt:
- ExtensionResource
- IpSetId
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
},
"Resources": {
"ExtensionResource": {
"Type": "ALIYUN::GA::BasicIpSet",
"Properties": {
"IspType": "BGP",
"Bandwidth": 2,
"AcceleratorId": "ga-bp17frjjh0udz4qz****"
}
}
},
"Outputs": {
"IpSetId": {
"Description": "The ID of the acceleration region.",
"Value": {
"Fn::GetAtt": [
"ExtensionResource",
"IpSetId"
]
}
}
}
}