DATASOURCE::POLARDB::ParameterGroups類型用於查看目標地區的參數模板列表。
文法
{
"Type": "DATASOURCE::POLARDB::ParameterGroups",
"Properties": {
"DbVersion": String,
"DbType": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
DbVersion | String | 否 | 是 | 資料庫引擎類型。 | 當前僅支援MySQL類型。 |
DbType | String | 否 | 是 | 資料庫引擎版本號碼。 | 取值:
|
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
傳回值
Fn::GetAtt
ParameterGroups:參數模板列表。
ParameterGroupIds:參數模板ID列表。
屬性名稱 | 類型 | 描述 | 約束 |
ParameterGroupIds | List | 參數模板ID列表。 | 無 |
ParameterGroups | List | 參數模板列表。 | 無 |
DbType | String | 資料庫引擎類型。 | 無 |
ParameterGroupId | String | 參數模板ID。 | 無 |
ParameterCounts | Number | 參數模板內的參數數量。 | 無 |
DbVersion | String | 資料庫引擎版本號碼。 | 無 |
ParameterGroupDesc | String | 參數模板描述。 | 無 |
ParameterGroupType | String | 參數模板類型。 | 取值:
|
ForceRestart | String | 應用該參數模板是否需要重啟叢集。 | 取值:
|
ParameterGroupName | String | 參數模板名稱。 | 無 |
CreateTime | String | 參數模板建立時間。 | 格式為 |
樣本
ROSTemplateFormatVersion: '2015-09-01'
Parameters: {}
Resources:
ExtensionDataSource:
Type: DATASOURCE::POLARDB::ParameterGroups
Properties:
DbVersion: '5.7'
DbType: MySQL
Outputs:
ParameterGroups:
Description: The list of parameter groups.
Value:
Fn::GetAtt:
- ExtensionDataSource
- ParameterGroups
ParameterGroupIds:
Description: The list of parameter group IDs.
Value:
Fn::GetAtt:
- ExtensionDataSource
- ParameterGroupIds
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::POLARDB::ParameterGroups",
"Properties": {
"DbVersion": "5.7",
"DbType": "MySQL"
}
}
},
"Outputs": {
"ParameterGroups": {
"Description": "The list of parameter groups.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"ParameterGroups"
]
}
},
"ParameterGroupIds": {
"Description": "The list of parameter group IDs.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"ParameterGroupIds"
]
}
}
}
}