@Stability(value=Stable)
public static interface CfnWorkflow.TagStepDetailsProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnWorkflow.TagStepDetailsProperty.Builder
A builder for
CfnWorkflow.TagStepDetailsProperty |
static class |
CfnWorkflow.TagStepDetailsProperty.Jsii$Proxy
An implementation for
CfnWorkflow.TagStepDetailsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnWorkflow.TagStepDetailsProperty.Builder |
builder() |
default String |
getName()
The name of the step, used as an identifier.
|
default String |
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.
|
default List<CfnWorkflow.S3TagProperty> |
getTags()
Array that contains from 1 to 10 key/value pairs.
|
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default String getSourceFileLocation()
${previous.file} . In this case, this workflow step uses the output file from the previous workflow step as input. This is the default value.${original.file} .@Stability(value=Stable) @Nullable default List<CfnWorkflow.S3TagProperty> getTags()
@Stability(value=Stable) static CfnWorkflow.TagStepDetailsProperty.Builder builder()
Copyright © 2023. All rights reserved.