listWorkflows

abstract suspend fun listWorkflows(input: ListWorkflowsRequest = ListWorkflowsRequest { }): 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")
}