Interface UpdateWorkflowRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateWorkflowRequest.Builder,UpdateWorkflowRequest>,GlueRequest.Builder,SdkBuilder<UpdateWorkflowRequest.Builder,UpdateWorkflowRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateWorkflowRequest
public static interface UpdateWorkflowRequest.Builder extends GlueRequest.Builder, SdkPojo, CopyableBuilder<UpdateWorkflowRequest.Builder,UpdateWorkflowRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateWorkflowRequest.BuilderdefaultRunProperties(Map<String,String> defaultRunProperties)A collection of properties to be used as part of each execution of the workflow.UpdateWorkflowRequest.Builderdescription(String description)The description of the workflow.UpdateWorkflowRequest.BuildermaxConcurrentRuns(Integer maxConcurrentRuns)You can use this parameter to prevent unwanted multiple updates to data, to control costs, or in some cases, to prevent exceeding the maximum number of concurrent runs of any of the component jobs.UpdateWorkflowRequest.Buildername(String name)Name of the workflow to be updated.UpdateWorkflowRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateWorkflowRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
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.services.glue.model.GlueRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
name
UpdateWorkflowRequest.Builder name(String name)
Name of the workflow to be updated.
- Parameters:
name- Name of the workflow to be updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
UpdateWorkflowRequest.Builder description(String description)
The description of the workflow.
- Parameters:
description- The description of the workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultRunProperties
UpdateWorkflowRequest.Builder defaultRunProperties(Map<String,String> defaultRunProperties)
A collection of properties to be used as part of each execution of the workflow.
Run properties may be logged. Do not pass plaintext secrets as properties. Retrieve secrets from a Glue Connection, Amazon Web Services Secrets Manager or other secret management mechanism if you intend to use them within the workflow run.
- Parameters:
defaultRunProperties- A collection of properties to be used as part of each execution of the workflow.Run properties may be logged. Do not pass plaintext secrets as properties. Retrieve secrets from a Glue Connection, Amazon Web Services Secrets Manager or other secret management mechanism if you intend to use them within the workflow run.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxConcurrentRuns
UpdateWorkflowRequest.Builder maxConcurrentRuns(Integer maxConcurrentRuns)
You can use this parameter to prevent unwanted multiple updates to data, to control costs, or in some cases, to prevent exceeding the maximum number of concurrent runs of any of the component jobs. If you leave this parameter blank, there is no limit to the number of concurrent workflow runs.
- Parameters:
maxConcurrentRuns- You can use this parameter to prevent unwanted multiple updates to data, to control costs, or in some cases, to prevent exceeding the maximum number of concurrent runs of any of the component jobs. If you leave this parameter blank, there is no limit to the number of concurrent workflow runs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
UpdateWorkflowRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateWorkflowRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-