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"
}
}
}
}