Interface TagStepDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TagStepDetails.Builder,TagStepDetails>,SdkBuilder<TagStepDetails.Builder,TagStepDetails>,SdkPojo
- Enclosing class:
- TagStepDetails
public static interface TagStepDetails.Builder extends SdkPojo, CopyableBuilder<TagStepDetails.Builder,TagStepDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TagStepDetails.Buildername(String name)The name of the step, used as an identifier.TagStepDetails.BuildersourceFileLocation(String sourceFileLocation)Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file for the workflow.TagStepDetails.Buildertags(Collection<S3Tag> tags)Array that contains from 1 to 10 key/value pairs.TagStepDetails.Buildertags(Consumer<S3Tag.Builder>... tags)Array that contains from 1 to 10 key/value pairs.TagStepDetails.Buildertags(S3Tag... tags)Array that contains from 1 to 10 key/value pairs.-
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
-
-
-
-
Method Detail
-
name
TagStepDetails.Builder name(String name)
The name of the step, used as an identifier.
- Parameters:
name- The name of the step, used as an identifier.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
TagStepDetails.Builder tags(Collection<S3Tag> tags)
Array that contains from 1 to 10 key/value pairs.
- Parameters:
tags- Array that contains from 1 to 10 key/value pairs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
TagStepDetails.Builder tags(S3Tag... tags)
Array that contains from 1 to 10 key/value pairs.
- Parameters:
tags- Array that contains from 1 to 10 key/value pairs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
TagStepDetails.Builder tags(Consumer<S3Tag.Builder>... tags)
Array that contains from 1 to 10 key/value pairs.
This is a convenience method that creates an instance of theS3Tag.Builderavoiding the need to create one manually viaS3Tag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onS3Tag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
sourceFileLocation
TagStepDetails.Builder sourceFileLocation(String sourceFileLocation)
Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file for the workflow.
-
To use the previous file as the input, enter
${previous.file}. In this case, this workflow step uses the output file from the previous workflow step as input. This is the default value. -
To use the originally uploaded file location as input for this step, enter
${original.file}.
- Parameters:
sourceFileLocation- Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file for the workflow.-
To use the previous file as the input, enter
${previous.file}. In this case, this workflow step uses the output file from the previous workflow step as input. This is the default value. -
To use the originally uploaded file location as input for this step, enter
${original.file}.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-