文法
{
"Type": "DATASOURCE::ApiGateway::Apps",
"Properties": {
"AppOwner": String,
"AppId": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
AppOwner | String | 否 | 是 | App擁有者的阿里雲帳號ID。 | 無 |
AppId | String | 否 | 是 | App的唯一標識。 | 無 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值: |
返回資料(Fn::GetAtt)
AppIds:應用ID列表。
Apps:應用詳情列表。
屬性名稱 | 類型 | 描述 | 約束 |
AppIds | List | 應用ID列表。 | 無 |
Apps | List | 應用詳情列表。 | 無 |
AppName | String | App名稱。 | 無 |
AppId | String | App編號。 | 無 |
Description | String | App描述資訊。 | 無 |
樣本
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"AppId": {
"Type": "String",
"Description": "Unique ID of the app."
}
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::ApiGateway::Apps",
"Properties": {
"AppId": {
"Ref": "AppId"
}
}
}
},
"Outputs": {
"Apps": {
"Description": "The information about ApiGateway apps.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"Apps"
]
}
},
"AppIds": {
"Description": "The list of The ApiGateway app ids.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"AppIds"
]
}
}
}
}
YAML
格式
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
AppId:
Type: String
Description: Unique ID of the app.
Resources:
ExtensionDataSource:
Type: DATASOURCE::ApiGateway::Apps
Properties:
AppId:
Ref: AppId
Outputs:
Apps:
Description: The information about ApiGateway apps.
Value:
Fn::GetAtt:
- ExtensionDataSource
- Apps
AppIds:
Description: The list of The ApiGateway app ids.
Value:
Fn::GetAtt:
- ExtensionDataSource
- AppIds