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: