interface CfnDataIntegrationProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppIntegrations.CfnDataIntegrationProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsappintegrations#CfnDataIntegrationProps |
![]() | software.amazon.awscdk.services.appintegrations.CfnDataIntegrationProps |
![]() | aws_cdk.aws_appintegrations.CfnDataIntegrationProps |
![]() | aws-cdk-lib » aws_appintegrations » CfnDataIntegrationProps |
Properties for defining a CfnDataIntegration
.
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-lib';
declare const filters: any;
declare const objectConfiguration: any;
const cfnDataIntegrationProps: appintegrations.CfnDataIntegrationProps = {
kmsKey: 'kmsKey',
name: 'name',
sourceUri: 'sourceUri',
// the properties below are optional
description: 'description',
fileConfiguration: {
folders: ['folders'],
// the properties below are optional
filters: filters,
},
objectConfiguration: objectConfiguration,
scheduleConfig: {
scheduleExpression: 'scheduleExpression',
// the properties below are optional
firstExecutionFrom: 'firstExecutionFrom',
object: 'object',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
kms | string | The KMS key for the DataIntegration. |
name | string | The name of the DataIntegration. |
source | string | The URI of the data source. |
description? | string | A description of the DataIntegration. |
file | IResolvable | File | The configuration for what files should be pulled from the source. |
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. |
tags? | Cfn [] | An array of key-value pairs to apply to this resource. |
kmsKey
Type:
string
The KMS key for the DataIntegration.
name
Type:
string
The name of the DataIntegration.
sourceUri
Type:
string
The URI of the data source.
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.
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.
tags?
Type:
Cfn
[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .