listWorkflows
inline suspend fun ImagebuilderClient.listWorkflows(crossinline block: ListWorkflowsRequest.Builder.() -> Unit): ListWorkflowsResponse
Lists workflow versions based on filtering parameters. To list the build versions of a specific workflow version, call ListWorkflowBuildVersions.
Samples
// The following example lists the workflow versions that you own.
val resp = imagebuilderClient.listWorkflows {
owner = Ownership.fromValue("Self")
}Content copied to clipboard