Interface CfnFlow.PrefixConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFlow.PrefixConfigProperty.Jsii$Proxy
Enclosing class:
CfnFlow

@Stability(Stable) public static interface CfnFlow.PrefixConfigProperty extends software.amazon.jsii.JsiiSerializable
Specifies elements that Amazon AppFlow includes in the file and folder names in the flow destination.

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.appflow.*;
 PrefixConfigProperty prefixConfigProperty = PrefixConfigProperty.builder()
         .pathPrefixHierarchy(List.of("pathPrefixHierarchy"))
         .prefixFormat("prefixFormat")
         .prefixType("prefixType")
         .build();
 

See Also: