Interface CfnWorkflow.S3TagProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkflow.S3TagProperty.Jsii$Proxy
- Enclosing class:
CfnWorkflow
@Stability(Stable)
public static interface CfnWorkflow.S3TagProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the key-value pair that are assigned to a file during the execution of a Tagging step.
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.*; S3TagProperty s3TagProperty = S3TagProperty.builder() .key("key") .value("value") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnWorkflow.S3TagProperty
static final class
An implementation forCfnWorkflow.S3TagProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The name assigned to the tag that you create.- See Also:
-
getValue
The value that corresponds to the key.- See Also:
-
builder
- Returns:
- a
CfnWorkflow.S3TagProperty.Builder
ofCfnWorkflow.S3TagProperty
-