DATASOURCE::OTS::Tables類型用於擷取當前執行個體下已建立的所有表的表名。
文法
{
"Type": "DATASOURCE::OTS::Tables",
"Properties": {
"InstanceName": String,
"TableName": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
InstanceName | String | 是 | 是 | 執行個體名稱。 | 無 |
TableName | String | 否 | 是 | 表名。 | 無 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
返回資料(Fn::GetAtt)
TableNames:表名列表。
Tables:表格詳情列表。
屬性名稱 | 類型 | 描述 | 約束 |
TableNames | List | 表名列表。 | 無 |
Tables | List | 表格詳情列表。 | 無 |
TableName | String | 表名。 | 無 |
樣本
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"InstanceName": {
"Type": "String",
"Description": "The name of the instance to which the table belongs."
}
},
"Resources": {
"Tables": {
"Type": "DATASOURCE::OTS::Tables",
"Properties": {
"InstanceName": {
"Ref": "InstanceName"
}
}
}
},
"Outputs": {
"TableNames": {
"Description": "The list of table names.",
"Value": {
"Fn::GetAtt": [
"Tables",
"TableNames"
]
}
},
"Tables": {
"Description": "The list of tables.",
"Value": {
"Fn::GetAtt": [
"Tables",
"Tables"
]
}
}
}
}
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
InstanceName:
Type: String
Description: The name of the instance to which the table belongs.
Resources:
Tables:
Type: DATASOURCE::OTS::Tables
Properties:
InstanceName:
Ref: InstanceName
Outputs:
TableNames:
Description: The list of table names.
Value:
Fn::GetAtt:
- Tables
- TableNames
Tables:
Description: The list of tables.
Value:
Fn::GetAtt:
- Tables
- Tables