interface FileConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppIntegrations.Mixins.CfnDataIntegrationPropsMixin.FileConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappintegrations/mixins#CfnDataIntegrationPropsMixin_FileConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.appintegrations.mixins.CfnDataIntegrationPropsMixin.FileConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_appintegrations.mixins.CfnDataIntegrationPropsMixin.FileConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appintegrations » mixins » 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 { mixins as appintegrations_mixins } from '@aws-cdk/mixins-preview/aws-appintegrations';
declare const filters: any;
const fileConfigurationProperty: appintegrations_mixins.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