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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataIntegration.FileConfigurationPropertystatic final classAn implementation forCfnDataIntegration.FileConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFolders
Identifiers for the source folders to pull all files from recursively.- See Also:
-
getFilters
Restrictions for what files should be pulled from the source.- See Also:
-
builder
-