interface FileConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppIntegrations.CfnDataIntegrationPropsMixin.FileConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappintegrations#CfnDataIntegrationPropsMixin_FileConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appintegrations.CfnDataIntegrationPropsMixin.FileConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_appintegrations.CfnDataIntegrationPropsMixin.FileConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appintegrations » CfnDataIntegrationPropsMixin » FileConfigurationProperty |
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 { aws_appintegrations as appintegrations } from '@aws-cdk/cfn-property-mixins';
declare const filters: any;
const fileConfigurationProperty: appintegrations.CfnDataIntegrationPropsMixin.FileConfigurationProperty = {
filters: filters,
folders: ['folders'],
};
Properties
| Name | Type | Description |
|---|---|---|
| filters? | any | Restrictions for what files should be pulled from the source. |
| folders? | string[] | Identifiers for the source folders to pull all files from recursively. |
filters?
Type:
any
(optional)
Restrictions for what files should be pulled from the source.
folders?
Type:
string[]
(optional)
Identifiers for the source folders to pull all files from recursively.

.NET
Go
Java
Python
TypeScript