ALIYUN::ApiGateway::Instance is used to create a dedicated instance.
Syntax
{
"Type": "ALIYUN::ApiGateway::Instance",
"Properties": {
"InstanceName": String,
"DeletionForce": Boolean,
"InstanceSpec": String,
"HttpsPolicy": String,
"ZoneId": String,
"PricingCycle": String,
"ChargeType": String,
"Duration": Number,
"AutoPay": Boolean,
"Tags": List
}
}
Properties
Property | Type | Required | Editable | Description | Constraint |
HttpsPolicy | String | Yes | No | The HTTPS security policy. | Valid values:
For more information, see Configure an HTTPS security policy. |
InstanceName | String | Yes | No | The instance name. | The name must be 1 to 50 characters in length and can contain letters, digits, and special characters. Special characters include |
InstanceSpec | String | Yes | No | The instance type. | None. |
ZoneId | String | Yes | No | The zone ID. | None. |
AutoPay | Boolean | No | No | Specifies whether to enable auto-renewal. | Valid values:
|
ChargeType | String | No | No | The billing method. | Valid values:
|
DeletionForce | Boolean | No | No | Specifies whether to forcibly delete the instance. | Valid values:
|
Duration | Number | No | No | The billing cycle of the instance. | Valid values:
|
PricingCycle | String | No | No | The unit of the subscription duration for the instance. | Valid values:
|
Tags | List | No | Yes | The tags of the instance. | You can add up to 20 tags to the instance. For more information, see Tags properties. |
Tags syntax
"Tags": [
{
"Key": String,
"Value": String
}
]
Tags properties
Property | Type | Required | Editable | Description | Constraint |
Key | String | Yes | No | The tag key. | The tag key must be 1 to 128 characters in length and cannot contain |
Value | String | No | No | The tag value. | The tag value can be up to 128 characters in length and cannot contain |
Return values
Fn::GetAtt
InstanceType: the instance type.
InstanceId: the instance ID.
VpcEgressAddress: the outbound IP address in virtual private clouds (VPCs).
InternetEgressAddress: the outbound public IP address.
EgressIpv6Enable: indicates whether outbound IPv6 traffic is supported.
VpcIntranetEnable: indicates whether VPCs are supported.
SupportIpv6: indicates whether IPv6 traffic is supported.
VpcSlbIntranetEnable: indicates whether internal-facing Server Load Balancer (SLB) instances that can be accessed from VPCs are supported.
Examples
YAML
format
Parameters:
InstanceName:
Type: String
Description: Instance name
ZoneId:
Type: String
AssociationProperty: ZoneId
ROSTemplateFormatVersion: '2015-09-01'
Outputs:
EgressIpv6Enable:
Description: Whether enable egress IPv6.
Value:
Fn::GetAtt:
- Instance
- EgressIpv6Enable
VpcEgressAddress:
Description: VPC network egress address.
Value:
Fn::GetAtt:
- Instance
- VpcEgressAddress
InternetEgressAddress:
Description: Internet egress dddress.
Value:
Fn::GetAtt:
- Instance
- InternetEgressAddress
InstanceId:
Description: Instance ID.
Value:
Fn::GetAtt:
- Instance
- InstanceId
VpcIntranetEnable:
Description: Whether enable VPC intranet.
Value:
Fn::GetAtt:
- Instance
- VpcIntranetEnable
SupportIpv6:
Description: Whether support IPv6.
Value:
Fn::GetAtt:
- Instance
- SupportIpv6
InstanceType:
Description: Instance type.
Value:
Fn::GetAtt:
- Instance
- InstanceType
VpcSlbIntranetEnable:
Description: Whether enable VPC SLB intranet.
Value:
Fn::GetAtt:
- Instance
- VpcSlbIntranetEnable
Resources:
Instance:
Type: ALIYUN::ApiGateway::Instance
Properties:
InstanceName: TestInstance
InstanceSpec: api.s1.small
HttpsPolicy: HTTPS2_TLS1_0
ZoneId:
Ref: ZoneId
JSON
format
{
"Parameters": {
"InstanceName": {
"Type": "String",
"Description": "Instance name"
},
"ZoneId": {
"Type": "String",
"AssociationProperty": "ZoneId"
}
},
"ROSTemplateFormatVersion": "2015-09-01",
"Outputs": {
"EgressIpv6Enable": {
"Description": "Whether enable egress IPv6.",
"Value": {
"Fn::GetAtt": [
"Instance",
"EgressIpv6Enable"
]
}
},
"VpcEgressAddress": {
"Description": "VPC network egress address.",
"Value": {
"Fn::GetAtt": [
"Instance",
"VpcEgressAddress"
]
}
},
"InternetEgressAddress": {
"Description": "Internet egress dddress.",
"Value": {
"Fn::GetAtt": [
"Instance",
"InternetEgressAddress"
]
}
},
"InstanceId": {
"Description": "Instance ID.",
"Value": {
"Fn::GetAtt": [
"Instance",
"InstanceId"
]
}
},
"VpcIntranetEnable": {
"Description": "Whether enable VPC intranet.",
"Value": {
"Fn::GetAtt": [
"Instance",
"VpcIntranetEnable"
]
}
},
"SupportIpv6": {
"Description": "Whether support IPv6.",
"Value": {
"Fn::GetAtt": [
"Instance",
"SupportIpv6"
]
}
},
"InstanceType": {
"Description": "Instance type.",
"Value": {
"Fn::GetAtt": [
"Instance",
"InstanceType"
]
}
},
"VpcSlbIntranetEnable": {
"Description": "Whether enable VPC SLB intranet.",
"Value": {
"Fn::GetAtt": [
"Instance",
"VpcSlbIntranetEnable"
]
}
}
},
"Resources": {
"Instance": {
"Type": "ALIYUN::ApiGateway::Instance",
"Properties": {
"InstanceName": "TestInstance",
"InstanceSpec": "api.s1.small",
"HttpsPolicy": "HTTPS2_TLS1_0",
"ZoneId": {
"Ref": "ZoneId"
}
}
}
}
}