DATASOURCE::VOD::EditingProjects类型用于查询云剪辑工程的基础信息。
语法
{
"Type": "DATASOURCE::VOD::EditingProjects",
"Properties": {
"Title": String,
"RefreshOptions": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
Title | String | 否 | 是 | 云剪辑工程标题。 | 无 |
RefreshOptions | String | 否 | 是 | 当资源栈更新时,数据源资源的刷新策略。 | 有效值:
|
返回值
Fn::GetAtt
EditingProjects:在线编辑项目的详情列表。
EditingProjectIds:在线编辑项目的ID列表。
属性名称 | 类型 | 描述 | 约束 |
EditingProjectIds | List | 在线编辑项目的ID列表。 | 无 |
EditingProjects | List | 在线编辑项目的详情列表。 | 无 |
ModifiedTime | String | 上次修改在线编辑项目的时间。 | 无 |
RegionId | String | 云剪辑工程的地域ID。 | 无 |
Title | String | 云剪辑工程标题。 | 无 |
EditingProjectId | String | 在线编辑项目的名称。 | 无 |
Status | String | 云剪辑工程的状态, | 无 |
示例
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
Title:
Description: The title of the online editing project.
Type: String
Resources:
ExtensionDataSource:
Properties:
Title:
Ref: Title
Type: DATASOURCE::VOD::EditingProjects
Outputs:
EditingProjectIds:
Description: The list of editing project IDs.
Value:
Fn::GetAtt:
- ExtensionDataSource
- EditingProjectIds
EditingProjects:
Description: The list of editing projects.
Value:
Fn::GetAtt:
- ExtensionDataSource
- EditingProjects
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"Title": {
"Type": "String",
"Description": "The title of the online editing project."
}
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::VOD::EditingProjects",
"Properties": {
"Title": {
"Ref": "Title"
}
}
}
},
"Outputs": {
"EditingProjects": {
"Description": "The list of editing projects.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"EditingProjects"
]
}
},
"EditingProjectIds": {
"Description": "The list of editing project IDs.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"EditingProjectIds"
]
}
}
}
}