Interface GetWorkflowStepsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetWorkflowStepsResponse.Builder,GetWorkflowStepsResponse>,CustomerProfilesResponse.Builder,SdkBuilder<GetWorkflowStepsResponse.Builder,GetWorkflowStepsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetWorkflowStepsResponse
public static interface GetWorkflowStepsResponse.Builder extends CustomerProfilesResponse.Builder, SdkPojo, CopyableBuilder<GetWorkflowStepsResponse.Builder,GetWorkflowStepsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetWorkflowStepsResponse.Builderitems(Collection<WorkflowStepItem> items)List containing workflow step details.GetWorkflowStepsResponse.Builderitems(Consumer<WorkflowStepItem.Builder>... items)List containing workflow step details.GetWorkflowStepsResponse.Builderitems(WorkflowStepItem... items)List containing workflow step details.GetWorkflowStepsResponse.BuildernextToken(String nextToken)If there are additional results, this is the token for the next set of results.GetWorkflowStepsResponse.BuilderworkflowId(String workflowId)Unique identifier for the workflow.GetWorkflowStepsResponse.BuilderworkflowType(String workflowType)The type of workflow.GetWorkflowStepsResponse.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.services.customerprofiles.model.CustomerProfilesResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
workflowId
GetWorkflowStepsResponse.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.
-
workflowType
GetWorkflowStepsResponse.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
GetWorkflowStepsResponse.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
-
items
GetWorkflowStepsResponse.Builder items(Collection<WorkflowStepItem> items)
List containing workflow step details.
- Parameters:
items- List containing workflow step details.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
GetWorkflowStepsResponse.Builder items(WorkflowStepItem... items)
List containing workflow step details.
- Parameters:
items- List containing workflow step details.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
GetWorkflowStepsResponse.Builder items(Consumer<WorkflowStepItem.Builder>... items)
List containing workflow step details.
This is a convenience method that creates an instance of theWorkflowStepItem.Builderavoiding the need to create one manually viaWorkflowStepItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#items(List.) - Parameters:
items- a consumer that will call methods onWorkflowStepItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
nextToken
GetWorkflowStepsResponse.Builder nextToken(String nextToken)
If there are additional results, this is the token for the next set of results.
- Parameters:
nextToken- If there are additional results, this is the token for the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-