interface CfnDataIntegrationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppIntegrations.Mixins.CfnDataIntegrationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappintegrations/mixins#CfnDataIntegrationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.appintegrations.mixins.CfnDataIntegrationMixinProps |
Python | aws_cdk.mixins_preview.aws_appintegrations.mixins.CfnDataIntegrationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_appintegrations » mixins » CfnDataIntegrationMixinProps |
Properties for CfnDataIntegrationPropsMixin.
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;
declare const objectConfiguration: any;
const cfnDataIntegrationMixinProps: appintegrations_mixins.CfnDataIntegrationMixinProps = {
description: 'description',
fileConfiguration: {
filters: filters,
folders: ['folders'],
},
kmsKey: 'kmsKey',
name: 'name',
objectConfiguration: objectConfiguration,
scheduleConfig: {
firstExecutionFrom: 'firstExecutionFrom',
object: 'object',
scheduleExpression: 'scheduleExpression',
},
sourceUri: 'sourceUri',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the DataIntegration. |
| file | IResolvable | File | The configuration for what files should be pulled from the source. |
| kms | string | The KMS key for the DataIntegration. |
| name? | string | The name of the DataIntegration. |
| object | any | The configuration for what data should be pulled from the source. |
| schedule | IResolvable | Schedule | The name of the data and how often it should be pulled from the source. |
| source | string | The URI of the data source. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
description?
Type:
string
(optional)
A description of the DataIntegration.
fileConfiguration?
Type:
IResolvable | File
(optional)
The configuration for what files should be pulled from the source.
kmsKey?
Type:
string
(optional)
The KMS key for the DataIntegration.
name?
Type:
string
(optional)
The name of the DataIntegration.
objectConfiguration?
Type:
any
(optional)
The configuration for what data should be pulled from the source.
scheduleConfig?
Type:
IResolvable | Schedule
(optional)
The name of the data and how often it should be pulled from the source.
sourceUri?
Type:
string
(optional)
The URI of the data source.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .

.NET
Go
Java
Python
TypeScript