DATASOURCE::FNF::Flows is used to query multiple flows at a time.
Return values
Fn::GetAtt
- FlowNames: the names of the flows.
- Flows: details of the flows.
Property | Type | Description | Constraint |
FlowNames | List | The names of the flows. | None. |
Flows | List | Details of the flows. | None. |
Definition | String | The definition of the flow. | The definition follows the Flow Definition Language (FDL) syntax. |
Description | String | The description of the flow. | None. |
FlowName | String | The name of the flow. | None. |
RoleArn | String | The Alibaba Cloud Resource Name (ARN) of the RAM role. | None. |
FlowId | String | The unique ID of the flow. | None. |
LastModifiedTime | String | The time when the flow was last modified. | None. |
Type | String | The type of the flow. | None. |
CreateTime | String | The time when the flow was created. | None. |
Examples
JSON
format{ "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" ] } } } }