Interface CfnWorkflow.TagStepDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkflow.TagStepDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnWorkflow
@Stability(Stable)
public static interface CfnWorkflow.TagStepDetailsProperty
extends software.amazon.jsii.JsiiSerializable
Details for a step that creates one or more tags.
You specify one or more tags. Each tag contains a key-value pair.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.transfer.*;
TagStepDetailsProperty tagStepDetailsProperty = TagStepDetailsProperty.builder()
.name("name")
.sourceFileLocation("sourceFileLocation")
.tags(List.of(S3TagProperty.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkflow.TagStepDetailsPropertystatic final classAn implementation forCfnWorkflow.TagStepDetailsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetName()The name of the step, used as an identifier.default StringSpecifies 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.default List<CfnWorkflow.S3TagProperty>getTags()Array that contains from 1 to 10 key/value pairs.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the step, used as an identifier.- See Also:
-
getSourceFileLocation
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}.
- See Also:
- To use the previous file as the input, enter
-
getTags
Array that contains from 1 to 10 key/value pairs.- See Also:
-
builder
-