DATASOURCE::FNF::Flows类型用于批量查询流程信息。
返回值
Fn::GetAtt
- FlowNames:流程名称列表。
- Flows:流程详情列表。
属性名称 | 类型 | 描述 | 约束 |
---|---|---|---|
FlowNames | List | 流程名称列表。 | 无 |
Flows | List | 流程详情列表。 | 无 |
Definition | String | 流程定义。 | 遵循FDL语法标准。 |
Description | String | 流程描述。 | 无 |
FlowName | String | 流程名称。 | 无 |
RoleArn | String | 流程执行所需资源描述符信息。 | 无 |
FlowId | String | 流程的唯一ID。 | 无 |
LastModifiedTime | String | 流程最后更改时间。 | 无 |
Type | String | 流程类型。 | 无 |
CreateTime | String | 流程创建时间。 | 无 |
示例
JSON
格式{ "ROSTemplateFormatVersion": "2015-09-01", "Resources": { "ExtensionDataSource": { "Type": "DATASOURCE::FNF::Flows", "Properties": {} } }, "Outputs": { "FlowNames": { "Description": "The list of flow names.", "Value": { "Fn::GetAtt": [ "ExtensionDataSource", "FlowNames" ] } }, "Flows": { "Description": "The details about flows.", "Value": { "Fn::GetAtt": [ "ExtensionDataSource", "Flows" ] } } } }