Interface CfnDataIntegration.IFileConfigurationProperty
The configuration for what files should be pulled from the source.
Namespace: Amazon.CDK.AWS.AppIntegrations
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDataIntegration.IFileConfigurationProperty
Syntax (vb)
Public Interface CfnDataIntegration.IFileConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppIntegrations;
var filters;
var fileConfigurationProperty = new FileConfigurationProperty {
Folders = new [] { "folders" },
// the properties below are optional
Filters = filters
};
Synopsis
Properties
| Filters | Restrictions for what files should be pulled from the source. |
| Folders | Identifiers for the source folders to pull all files from recursively. |
Properties
Filters
Restrictions for what files should be pulled from the source.
object? Filters { get; }
Property Value
Remarks
Folders
Identifiers for the source folders to pull all files from recursively.
string[] Folders { get; }
Property Value
string[]