interface CfnDataIntegrationProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppIntegrations.CfnDataIntegrationProps |
Java | software.amazon.awscdk.services.appintegrations.CfnDataIntegrationProps |
Python | aws_cdk.aws_appintegrations.CfnDataIntegrationProps |
TypeScript | @aws-cdk/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 * as appintegrations from '@aws-cdk/aws-appintegrations';
declare const filters: any;
declare const objectConfiguration: any;
const cfnDataIntegrationProps: appintegrations.CfnDataIntegrationProps = {
kmsKey: 'kmsKey',
name: 'name',
scheduleConfig: {
scheduleExpression: 'scheduleExpression',
// the properties below are optional
firstExecutionFrom: 'firstExecutionFrom',
object: 'object',
},
sourceUri: 'sourceUri',
// the properties below are optional
description: 'description',
fileConfiguration: {
folders: ['folders'],
// the properties below are optional
filters: filters,
},
objectConfiguration: objectConfiguration,
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
kms | string | The KMS key for the DataIntegration. |
name | string | The name of the DataIntegration. |
schedule | Schedule | IResolvable | The name of the data and how often it should be pulled from the source. |
source | string | The URI of the data source. |
description? | string | A description of the DataIntegration. |
file | IResolvable | File | AWS::AppIntegrations::DataIntegration.FileConfiguration . |
object | any | AWS::AppIntegrations::DataIntegration.ObjectConfiguration . |
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.
scheduleConfig
Type:
Schedule
|
IResolvable
The name of the data and how often it should be pulled from the source.
sourceUri
Type:
string
The URI of the data source.
description?
Type:
string
(optional)
A description of the DataIntegration.
fileConfiguration?
Type:
IResolvable
|
File
(optional)
AWS::AppIntegrations::DataIntegration.FileConfiguration
.
objectConfiguration?
Type:
any
(optional)
AWS::AppIntegrations::DataIntegration.ObjectConfiguration
.
tags?
Type:
Cfn
[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .