Interface CfnIntegrationPropsMixin.IntegrationConfigProperty

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

@Stability(Stable) public static interface CfnIntegrationPropsMixin.IntegrationConfigProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.glue.*;
 IntegrationConfigProperty integrationConfigProperty = IntegrationConfigProperty.builder()
         .continuousSync(false)
         .refreshInterval("refreshInterval")
         .sourceProperties(Map.of(
                 "sourcePropertiesKey", "sourceProperties"))
         .build();
 

See Also: