Interface CfnIntegration.IntegrationConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnIntegration.IntegrationConfigProperty.Jsii$Proxy
Enclosing class:
CfnIntegration

@Stability(Stable) public static interface CfnIntegration.IntegrationConfigProperty extends software.amazon.jsii.JsiiSerializable
The configuration settings for the integration.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.glue.*;
 IntegrationConfigProperty integrationConfigProperty = IntegrationConfigProperty.builder()
         .continuousSync(false)
         .refreshInterval("refreshInterval")
         .sourceProperties(Map.of(
                 "sourcePropertiesKey", "sourceProperties"))
         .build();
 

See Also: