interface IntegrationConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnIntegrationPropsMixin.IntegrationConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnIntegrationPropsMixin_IntegrationConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnIntegrationPropsMixin.IntegrationConfigProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnIntegrationPropsMixin.IntegrationConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnIntegrationPropsMixin » IntegrationConfigProperty |
Properties associated with the integration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const integrationConfigProperty: glue_mixins.CfnIntegrationPropsMixin.IntegrationConfigProperty = {
continuousSync: false,
refreshInterval: 'refreshInterval',
sourceProperties: {
sourcePropertiesKey: 'sourceProperties',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| continuous | boolean | IResolvable | Enables continuous synchronization for on-demand data extractions from SaaS applications to AWS data services like Amazon Redshift and Amazon S3. |
| refresh | string | Specifies the frequency at which CDC (Change Data Capture) pulls or incremental loads should occur. |
| source | { [string]: string } | IResolvable | A collection of key-value pairs that specify additional properties for the integration source. |
continuousSync?
Type:
boolean | IResolvable
(optional)
Enables continuous synchronization for on-demand data extractions from SaaS applications to AWS data services like Amazon Redshift and Amazon S3.
refreshInterval?
Type:
string
(optional)
Specifies the frequency at which CDC (Change Data Capture) pulls or incremental loads should occur.
This parameter provides flexibility to align the refresh rate with your specific data update patterns, system load considerations, and performance optimization goals. Time increment can be set from 15 minutes to 8640 minutes (six days).
sourceProperties?
Type:
{ [string]: string } | IResolvable
(optional)
A collection of key-value pairs that specify additional properties for the integration source.
These properties provide configuration options that can be used to customize the behavior of the ODB source during data integration operations.

.NET
Go
Java
Python
TypeScript