Interface ListWorkflowsItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ListWorkflowsItem.Builder,ListWorkflowsItem>,SdkBuilder<ListWorkflowsItem.Builder,ListWorkflowsItem>,SdkPojo
- Enclosing class:
- ListWorkflowsItem
public static interface ListWorkflowsItem.Builder extends SdkPojo, CopyableBuilder<ListWorkflowsItem.Builder,ListWorkflowsItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListWorkflowsItem.BuildercreatedAt(Instant createdAt)Creation timestamp for workflow.ListWorkflowsItem.BuilderlastUpdatedAt(Instant lastUpdatedAt)Last updated timestamp for workflow.ListWorkflowsItem.Builderstatus(String status)Status of workflow execution.ListWorkflowsItem.Builderstatus(Status status)Status of workflow execution.ListWorkflowsItem.BuilderstatusDescription(String statusDescription)Description for workflow execution status.ListWorkflowsItem.BuilderworkflowId(String workflowId)Unique identifier for the workflow.ListWorkflowsItem.BuilderworkflowType(String workflowType)The type of workflow.ListWorkflowsItem.BuilderworkflowType(WorkflowType workflowType)The type of workflow.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
workflowType
ListWorkflowsItem.Builder workflowType(String workflowType)
The type of workflow. The only supported value is APPFLOW_INTEGRATION.
- Parameters:
workflowType- The type of workflow. The only supported value is APPFLOW_INTEGRATION.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WorkflowType,WorkflowType
-
workflowType
ListWorkflowsItem.Builder workflowType(WorkflowType workflowType)
The type of workflow. The only supported value is APPFLOW_INTEGRATION.
- Parameters:
workflowType- The type of workflow. The only supported value is APPFLOW_INTEGRATION.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WorkflowType,WorkflowType
-
workflowId
ListWorkflowsItem.Builder workflowId(String workflowId)
Unique identifier for the workflow.
- Parameters:
workflowId- Unique identifier for the workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
ListWorkflowsItem.Builder status(String status)
Status of workflow execution.
-
status
ListWorkflowsItem.Builder status(Status status)
Status of workflow execution.
-
statusDescription
ListWorkflowsItem.Builder statusDescription(String statusDescription)
Description for workflow execution status.
- Parameters:
statusDescription- Description for workflow execution status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAt
ListWorkflowsItem.Builder createdAt(Instant createdAt)
Creation timestamp for workflow.
- Parameters:
createdAt- Creation timestamp for workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedAt
ListWorkflowsItem.Builder lastUpdatedAt(Instant lastUpdatedAt)
Last updated timestamp for workflow.
- Parameters:
lastUpdatedAt- Last updated timestamp for workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-