Interface DeprecateWorkflowTypeRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<DeprecateWorkflowTypeRequest.Builder,DeprecateWorkflowTypeRequest>,SdkBuilder<DeprecateWorkflowTypeRequest.Builder,DeprecateWorkflowTypeRequest>,SdkPojo,SdkRequest.Builder,SwfRequest.Builder
- Enclosing class:
- DeprecateWorkflowTypeRequest
public static interface DeprecateWorkflowTypeRequest.Builder extends SwfRequest.Builder, SdkPojo, CopyableBuilder<DeprecateWorkflowTypeRequest.Builder,DeprecateWorkflowTypeRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DeprecateWorkflowTypeRequest.Builderdomain(String domain)The name of the domain in which the workflow type is registered.DeprecateWorkflowTypeRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)DeprecateWorkflowTypeRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)default DeprecateWorkflowTypeRequest.BuilderworkflowType(Consumer<WorkflowType.Builder> workflowType)The workflow type to deprecate.DeprecateWorkflowTypeRequest.BuilderworkflowType(WorkflowType workflowType)The workflow type to deprecate.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.services.swf.model.SwfRequest.Builder
build
-
-
-
-
Method Detail
-
domain
DeprecateWorkflowTypeRequest.Builder domain(String domain)
The name of the domain in which the workflow type is registered.
- Parameters:
domain- The name of the domain in which the workflow type is registered.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
workflowType
DeprecateWorkflowTypeRequest.Builder workflowType(WorkflowType workflowType)
The workflow type to deprecate.
- Parameters:
workflowType- The workflow type to deprecate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
workflowType
default DeprecateWorkflowTypeRequest.Builder workflowType(Consumer<WorkflowType.Builder> workflowType)
The workflow type to deprecate.
This is a convenience method that creates an instance of theWorkflowType.Builderavoiding the need to create one manually viaWorkflowType.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toworkflowType(WorkflowType).- Parameters:
workflowType- a consumer that will call methods onWorkflowType.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
workflowType(WorkflowType)
-
overrideConfiguration
DeprecateWorkflowTypeRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
DeprecateWorkflowTypeRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-