ALIYUN::ApiGateway::StageConfig类型用于配置API分组中测试、预发、线上环境变量。
语法
{
"Type": "ALIYUN::ApiGateway::StageConfig",
"Properties": {
"Variables": Map,
"GroupId": String,
"StageName": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
GroupId | String | 是 | 是 | API分组ID | 无 |
StageName | String | 是 | 是 | 需要设置变量的环境名称 | 取值:
|
Variables | Map | 是 | 是 | 环境变量的定义 | 采用自定义 |
返回值
Fn::GetAtt
无。
示例
说明
请您根据实际情况更改脱敏的参数取值,例如GroupId的Default取值。
YAML
格式
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
Variables:
Default:
env: test
Type: Json
GroupId:
Default: c22139c9e5e04d32b90a*******
Type: String
Description: Test ApiGateway StageConfig
Resources:
StageConfig:
Type: 'ALIYUN::ApiGateway::StageConfig'
Properties:
Variables:
Ref: Variables
GroupId:
Ref: GroupId
StageName: TEST
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Description": "Test ApiGateway StageConfig",
"Parameters": {
"Variables": {
"Type": "Json",
"Default": {
"env": "test"
}
},
"GroupId": {
"Type": "String",
"Default": "c22139c9e5e04d32b90a*******"
}
},
"Resources": {
"StageConfig": {
"Type": "ALIYUN::ApiGateway::StageConfig",
"Properties": {
"Variables": {
"Ref": "Variables"
},
"GroupId": {
"Ref": "GroupId"
},
"StageName": "TEST"
}
}
}
}
文档内容是否对您有帮助?