| Column Name | Column Data Type |
domain Required Input Column
The name of the domain in which this workflow type is registered. | VARCHAR |
workflow_type Required Input Column
The workflow type to describe. | STRUCT( "name" VARCHAR, "version" VARCHAR ) |
Show child fields- workflow_type.name
The name of the workflow type. The combination of workflow type name and version must be unique with in a domain.
- workflow_type.version
The version of the workflow type. The combination of workflow type name and version must be unique with in a domain.
|
_aws_profile Input Column
The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( "type" VARCHAR, "name" VARCHAR, "account_id" VARCHAR, "via_profile_name" VARCHAR, "assumed_role_arn" VARCHAR, "organization" STRUCT( "account_name" VARCHAR, "id" VARCHAR, "tags" STRUCT( "key" VARCHAR, "value" VARCHAR )[], "master_account" STRUCT( "id" VARCHAR, "email" VARCHAR ), "parents" STRUCT( "type" VARCHAR, "id" VARCHAR, "name" VARCHAR, "tags" STRUCT( "key" VARCHAR, "value" VARCHAR )[] )[] ) ) |
Show child fields- _aws_profile.account_id
The AWS account id
- _aws_profile.assumed_role_arn
The ARN of the assumed role
- _aws_profile.name
The unique name of the profile.
- _aws_profile.organization
Information about this profile's membership in the AWS organization. Show child fields- _aws_profile.organization.account_name
The name of account speciifed by the organization
- _aws_profile.organization.id
The organization id
- _aws_profile.organization.master_account
Show child fields- _aws_profile.organization.master_account.email
The organization master account email address
- _aws_profile.organization.master_account.id
The organization master account id
- _aws_profile.organization.parents[]
Show child fields- _aws_profile.organization.parents[].id
The id of the parent
- _aws_profile.organization.parents[].name
The name of the parent
- _aws_profile.organization.parents[].tags[]
Show child fields- _aws_profile.organization.parents[].tags[].key
- _aws_profile.organization.parents[].tags[].value
- _aws_profile.organization.parents[].type
The type of parent can be an organization unit or a root
- _aws_profile.organization.tags[]
Show child fields- _aws_profile.organization.tags[].key
- _aws_profile.organization.tags[].value
- _aws_profile.type
The type of profile, either 'credentials' or 'assumed_role'
- _aws_profile.via_profile_name
This IAM role for this profile is assumed by first utilizing another profile with this name to obtain credentials.
|
_aws_region Input Column
The AWS region to use. | VARCHAR |
configuration
Configuration settings of the workflow type registered through RegisterWorkflowType | STRUCT( "default_task_start_to_close_timeout" VARCHAR, "default_execution_start_to_close_timeout" VARCHAR, "default_task_list" STRUCT( "name" VARCHAR ), "default_task_priority" VARCHAR, "default_child_policy" VARCHAR, "default_lambda_role" VARCHAR ) |
Show child fields- configuration.default_child_policy
The default policy to use for the child workflow executions when a workflow execution of this type is terminated, by calling the TerminateWorkflowExecution action explicitly or due to an expired timeout. This default can be overridden when starting a workflow execution using the StartWorkflowExecution action or the StartChildWorkflowExecution Decision. The supported child policies are: -
TERMINATE – The child executions are terminated. -
REQUEST_CANCEL – A request to cancel is attempted for each child execution by recording a WorkflowExecutionCancelRequested event in its history. It is up to the decider to take appropriate actions when it receives an execution history with this event. -
ABANDON – No action is taken. The child executions continue to run.
- configuration.default_execution_start_to_close_timeout
The default maximum duration, specified when registering the workflow type, for executions of this workflow type. This default can be overridden when starting a workflow execution using the StartWorkflowExecution action or the StartChildWorkflowExecution Decision. The duration is specified in seconds, an integer greater than or equal to 0. You can use NONE to specify unlimited duration.
- configuration.default_lambda_role
The default IAM role attached to this workflow type. Executions of this workflow type need IAM roles to invoke Lambda functions. If you don't specify an IAM role when starting this workflow type, the default Lambda role is attached to the execution. For more information, see https://docs.aws.amazon.com/amazonswf/latest/developerguide/lambda-task.html in the Amazon SWF Developer Guide.
- configuration.default_task_list
The default task list, specified when registering the workflow type, for decisions tasks scheduled for workflow executions of this type. This default can be overridden when starting a workflow execution using the StartWorkflowExecution action or the StartChildWorkflowExecution Decision. Show child fields- configuration.default_task_list.name
The name of the task list.
- configuration.default_task_priority
The default task priority, specified when registering the workflow type, for all decision tasks of this workflow type. This default can be overridden when starting a workflow execution using the StartWorkflowExecution action or the StartChildWorkflowExecution decision. Valid values are integers that range from Java's Integer.MIN_VALUE (-2147483648) to Integer.MAX_VALUE (2147483647). Higher numbers indicate higher priority. For more information about setting task priority, see Setting Task Priority in the Amazon SWF Developer Guide.
- configuration.default_task_start_to_close_timeout
The default maximum duration, specified when registering the workflow type, that a decision task for executions of this workflow type might take before returning completion or failure. If the task doesn'tdo close in the specified time then the task is automatically timed out and rescheduled. If the decider eventually reports a completion or failure, it is ignored. This default can be overridden when starting a workflow execution using the StartWorkflowExecution action or the StartChildWorkflowExecution Decision. The duration is specified in seconds, an integer greater than or equal to 0. You can use NONE to specify unlimited duration.
|
type_info
General information about the workflow type. The status of the workflow type (returned in the WorkflowTypeInfo structure) can be one of the following. -
REGISTERED – The type is registered and available. Workers supporting this type should be running. -
DEPRECATED – The type was deprecated using DeprecateWorkflowType, but is still in use. You should keep workers supporting this type running. You cannot create new workflow executions of this type. | STRUCT( "workflow_type" STRUCT( "name" VARCHAR, "version" VARCHAR ), "status" VARCHAR, "description" VARCHAR, "creation_date" TIMESTAMP_S, "deprecation_date" TIMESTAMP_S ) |
Show child fields- type_info.creation_date
The date when this type was registered.
- type_info.deprecation_date
If the type is in deprecated state, then it is set to the date when the type was deprecated.
- type_info.description
The description of the type registered through RegisterWorkflowType.
- type_info.status
The current status of the workflow type.
- type_info.workflow_type
The workflow type this information is about. Show child fields- type_info.workflow_type.name
The name of the workflow type. The combination of workflow type name and version must be unique with in a domain.
- type_info.workflow_type.version
The version of the workflow type. The combination of workflow type name and version must be unique with in a domain.
|