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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIntegration.IntegrationConfigPropertystatic final classAn implementation forCfnIntegration.IntegrationConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectEnables continuous synchronization for on-demand data extractions.default StringSpecifies the frequency at which CDC (Change Data Capture) pulls or incremental loads should occur.default ObjectA collection of key-value pairs that specify additional properties for the integration source.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContinuousSync
Enables continuous synchronization for on-demand data extractions.Returns union: either
BooleanorIResolvable- See Also:
-
getRefreshInterval
Specifies the frequency at which CDC (Change Data Capture) pulls or incremental loads should occur.- See Also:
-
getSourceProperties
A collection of key-value pairs that specify additional properties for the integration source.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
builder
-