Interface CfnDataIntegration.FileConfigurationProperty

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

@Stability(Stable) public static interface CfnDataIntegration.FileConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration for what files should be pulled from the source.

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.appintegrations.*;
 Object filters;
 FileConfigurationProperty fileConfigurationProperty = FileConfigurationProperty.builder()
         .folders(List.of("folders"))
         // the properties below are optional
         .filters(filters)
         .build();
 

See Also: