全部產品
Search
文件中心

:ALIYUN::ApiGateway::StageConfig

更新時間:Jun 15, 2024

ALIYUN::ApiGateway::StageConfig類型用於配置API分組中測試、預發、線上環境變數。

文法

{
  "Type": "ALIYUN::ApiGateway::StageConfig",
  "Properties": {
    "Variables": Map,
    "GroupId": String,
    "StageName": String
  }
}

屬性

屬性名稱

類型

必須

允許更新

描述

約束

GroupId

String

API分組ID

StageName

String

需要設定變數的環境名稱

取值:

  • TEST

  • PRE

  • RELEASE

Variables

Map

環境變數的定義

採用自訂key-pair格式。最多支援設定50個環境變數。

傳回值

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