Interface StartWorkflowRunRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CodeCatalystRequest.Builder,CopyableBuilder<StartWorkflowRunRequest.Builder,StartWorkflowRunRequest>,SdkBuilder<StartWorkflowRunRequest.Builder,StartWorkflowRunRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- StartWorkflowRunRequest
public static interface StartWorkflowRunRequest.Builder extends CodeCatalystRequest.Builder, SdkPojo, CopyableBuilder<StartWorkflowRunRequest.Builder,StartWorkflowRunRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StartWorkflowRunRequest.BuilderclientToken(String clientToken)A user-specified idempotency token.StartWorkflowRunRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)StartWorkflowRunRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)StartWorkflowRunRequest.BuilderprojectName(String projectName)The name of the project in the space.StartWorkflowRunRequest.BuilderspaceName(String spaceName)The name of the space.StartWorkflowRunRequest.BuilderworkflowId(String workflowId)The system-generated unique ID of the workflow.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.codecatalyst.model.CodeCatalystRequest.Builder
build
-
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
-
spaceName
StartWorkflowRunRequest.Builder spaceName(String spaceName)
The name of the space.
- Parameters:
spaceName- The name of the space.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
projectName
StartWorkflowRunRequest.Builder projectName(String projectName)
The name of the project in the space.
- Parameters:
projectName- The name of the project in the space.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
workflowId
StartWorkflowRunRequest.Builder workflowId(String workflowId)
The system-generated unique ID of the workflow. To retrieve a list of workflow IDs, use ListWorkflows.
- Parameters:
workflowId- The system-generated unique ID of the workflow. To retrieve a list of workflow IDs, use ListWorkflows.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientToken
StartWorkflowRunRequest.Builder clientToken(String clientToken)
A user-specified idempotency token. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.
- Parameters:
clientToken- A user-specified idempotency token. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
StartWorkflowRunRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
StartWorkflowRunRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-