Consulta informações sobre um único fluxo.
Sintaxe
{
"Type": "DATASOURCE::FNF::Flow",
"Properties": {
"FlowName": String,
"RefreshOptions": String
}
}
Propriedades
|
Propriedade |
Tipo |
Obrigatória |
Editável |
Descrição |
Restrição |
|
FlowName |
String |
Sim |
Sim |
Nome do fluxo. |
Nenhuma. |
|
RefreshOptions |
String |
Não |
Sim |
Política de atualização dos recursos de source durante a atualização da pilha. |
Valores válidos:
|
Valores de retorno
Fn::GetAtt
FlowId: ID exclusivo do fluxo.
Type: tipo do fluxo.
Description: descrição do fluxo.
FlowName: nome do fluxo.
CreateTime: hora de criação do fluxo.
Definition: definição do fluxo.
LastModifiedTime: hora da última modificação do fluxo.
RoleArn: Alibaba Cloud Resource Name (ARN) da função do Resource Access Management (RAM) usada para executar o fluxo.
Exemplos
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
FlowName:
Type: String
Description:
en: The name of the flow. The name must be unique within a region for the same Alibaba Cloud account.
Required: true
Resources:
ExtensionDataSource:
Type: DATASOURCE::FNF::Flow
Properties:
FlowName:
Ref: FlowName
Outputs:
FlowId:
Description: The unique ID of the flow.
Value:
Fn::GetAtt:
- ExtensionDataSource
- FlowId
Type:
Description: The type of the flow. Valid values are FDL or DEFAULT.
Value:
Fn::GetAtt:
- ExtensionDataSource
- Type
Description:
Description: The description of the flow.
Value:
Fn::GetAtt:
- ExtensionDataSource
- Description
FlowName:
Description: The name of the flow. The name must be unique within a region for the same Alibaba Cloud account.
Value:
Fn::GetAtt:
- ExtensionDataSource
- FlowName
CreateTime:
Description: The time when the flow was created.
Value:
Fn::GetAtt:
- ExtensionDataSource
- CreateTime
Definition:
Description: The flow definition, which follows the flow definition language (FDL) syntax standard. Considering compatibility, the system supports the two flow definition specifications.
Value:
Fn::GetAtt:
- ExtensionDataSource
- Definition
LastModifiedTime:
Description: The time when the flow was last modified.
Value:
Fn::GetAtt:
- ExtensionDataSource
- LastModifiedTime
RoleArn:
Description: The Alibaba Cloud resource name (ARN) of the authorized role on which the execution of the flow relies. During the execution of the flow, CloudFlow assumes the role to call API operations of relevant services.
Value:
Fn::GetAtt:
- ExtensionDataSource
- RoleArn
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"FlowName": {
"Type": "String",
"Description": {
"en": "The name of the flow. The name must be unique within a region for the same Alibaba Cloud account."
},
"Required": true
}
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::FNF::Flow",
"Properties": {
"FlowName": {
"Ref": "FlowName"
}
}
}
},
"Outputs": {
"FlowId": {
"Description": "The unique ID of the flow.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"FlowId"
]
}
},
"Type": {
"Description": "The type of the flow. Valid values are FDL or DEFAULT.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"Type"
]
}
},
"Description": {
"Description": "The description of the flow.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"Description"
]
}
},
"FlowName": {
"Description": "The name of the flow. The name must be unique within a region for the same Alibaba Cloud account.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"FlowName"
]
}
},
"CreateTime": {
"Description": "The time when the flow was created.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"CreateTime"
]
}
},
"Definition": {
"Description": "The flow definition, which follows the flow definition language (FDL) syntax standard. Considering compatibility, the system supports the two flow definition specifications.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"Definition"
]
}
},
"LastModifiedTime": {
"Description": "The time when the flow was last modified.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"LastModifiedTime"
]
}
},
"RoleArn": {
"Description": "The Alibaba Cloud resource name (ARN) of the authorized role on which the execution of the flow relies. During the execution of the flow, CloudFlow assumes the role to call API operations of relevant services.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"RoleArn"
]
}
}
}
}